        :root {
            --color-primary: #007781;
            --color-secondary: #cddb28;
            --color-accent: #cddb28;
            --color-neutral-dark: #333333;
            --color-neutral-light: #f5f3e6;
            --color-white: #ffffff;
            --color-text: #333333;
            --color-text-light: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--color-text);
            background-color: var(--color-neutral-light);
            position: relative;
        }

        /* Age Verification Modal */
        .age-gate {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
        }

        .age-gate.hidden {
            display: none;
        }

        .age-gate-content {
            background: var(--color-white);
            padding: 40px;
            border-radius: 12px;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .age-gate h2 {
            color: var(--color-primary);
            font-size: 28px;
            margin-bottom: 20px;
        }

        .age-gate p {
            margin-bottom: 30px;
            font-size: 16px;
            color: var(--color-text-light);
        }

        .age-gate-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .age-gate-btn {
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .age-gate-btn.yes {
            background: var(--color-primary);
            color: var(--color-white);
        }

        .age-gate-btn.yes:hover {
            background: var(--color-secondary);
        }

        .age-gate-btn.no {
            background: #e0e0e0;
            color: var(--color-text);
        }

        .age-gate-btn.no:hover {
            background: #d0d0d0;
        }

        .age-gate-disclaimer {
            margin-top: 30px;
            font-size: 12px;
            color: var(--color-text-light);
            line-height: 1.4;
        }

        /* Navbar Styles */
        .navbar {
            background: #ffffff !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0.75rem 1rem;
        }

        .navbar-brand img {
            max-height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        .navbar-nav .nav-link {
            color: #007781 !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #cddb28 !important;
        }

        .navbar-nav .nav-link.active {
            color: #007781 !important;
            font-weight: 600;
        }

        .navbar-toggler {
            border-color: #007781;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23007781' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .dropdown-menu {
            background: #ffffff;
            border: 1px solid rgba(0, 119, 129, 0.2);
        }

        .dropdown-item {
            color: #007781 !important;
            padding: 0.5rem 1rem;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: rgba(205, 219, 40, 0.1);
            color: #cddb28 !important;
        }

        .btn-shop {
            background: #cddb28;
            color: #007781;
            padding: 10px 30px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 16px;
            letter-spacing: 0.5px;
        }

        .btn-shop:hover {
            background: #b8c423;
            color: #007781;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(205, 219, 40, 0.4);
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: #ffffff;
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
                border: 1px solid rgba(0, 119, 129, 0.2);
            }

            .btn-shop {
                margin-top: 1rem;
                display: block;
                text-align: center;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(0, 119, 129, 0.95) 0%, rgba(0, 119, 129, 0.85) 100%), url('/assets/img/hero.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--color-white);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: var(--color-white);
            color: var(--color-primary);
        }

        .btn-primary:hover {
            background: var(--color-neutral-light);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-white);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .btn-accent {
            background: var(--color-primary);
            color: var(--color-white);
        }

        .btn-accent:hover {
            background: var(--color-secondary);
        }

        /* Section Styles */
        section {
            padding: 5rem 0;
            min-height: auto;
        }

        section:not(.hero) {
            scroll-margin-top: 70px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            color: var(--color-primary);
            margin-bottom: 3rem;
            text-align: center;
            font-weight: 700;
        }

        /* Custom spacing */
        .py-section {
            padding: 5rem 0;
        }

        .feature-card {
            background: var(--color-white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        /* Image Styles */
        .hero-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .section-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .about-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .about-image-card {
            background: var(--color-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .about-image-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .about-image-card p {
            padding: 20px;
            color: var(--color-text-light);
            font-size: 14px;
            margin: 0;
        }

        .feature-card h3 {
            color: var(--color-primary);
            margin-bottom: 15px;
            font-size: 22px;
        }

        .feature-card p {
            color: var(--color-text-light);
            font-size: 15px;
        }

        /* Background sections */
        .bg-light-section {
            background: var(--color-white);
        }

        .bg-neutral-section {
            background: var(--color-neutral-light);
        }

        .location-card {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .location-card:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .location-type {
            display: inline-block;
            background: var(--color-primary);
            color: var(--color-white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
        }

        .location-card h3 {
            color: var(--color-primary);
            font-size: 28px;
            margin-bottom: 20px;
        }

        .location-info {
            margin-bottom: 15px;
        }

        .location-info strong {
            color: var(--color-text);
            display: block;
            margin-bottom: 5px;
        }

        .location-info p {
            color: var(--color-text-light);
            margin-bottom: 10px;
        }

        /* Product Categories */
        .category-filters {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .category-btn {
            padding: 0.75rem 1.5rem;
            background: var(--color-white);
            color: var(--color-text);
            border: 2px solid var(--color-primary);
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .category-btn:hover,
        .category-btn.active {
            background: var(--color-primary);
            color: var(--color-white);
        }

        /* Product Categories Grid */
        .product-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .category-box {
            background: var(--color-white);
            border-radius: 12px;
            padding: 2.5rem 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border: 2px solid transparent;
        }

        .category-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
            border-color: var(--color-primary);
        }

        .category-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .category-box h3 {
            color: var(--color-primary);
            font-size: 1.5rem;
            margin: 0;
            font-weight: 600;
        }

        /* Career Application Modal */
        .career-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            align-items: center;
            justify-content: center;
            overflow-y: auto;
            padding: 20px;
        }

        .career-modal.show {
            display: flex;
        }

        .career-modal-content {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 16px;
            max-width: 600px;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease;
            margin: auto;
        }

        .career-modal-content h2 {
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .career-form-group {
            margin-bottom: 1.25rem;
        }

        .career-form-label {
            display: block;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            font-size: 14px;
        }

        .career-form-control {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .career-form-control:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(0, 119, 129, 0.1);
        }

        .career-modal-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .career-modal-btn {
            flex: 1;
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .career-btn-submit {
            background: #cddb28;
            color: #007781;
        }

        .career-btn-submit:hover {
            background: #b8c423;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(205, 219, 40, 0.3);
        }

        .career-btn-cancel {
            background: #e0e0e0;
            color: var(--color-text);
        }

        .career-btn-cancel:hover {
            background: #d0d0d0;
        }

        .career-success-message {
            text-align: center;
            padding: 2rem;
        }

        .career-success-message h3 {
            color: var(--color-primary);
            margin-bottom: 1rem;
            font-size: 1.75rem;
        }

        .career-success-message p {
            color: var(--color-text-light);
            margin-bottom: 1.5rem;
            font-size: 16px;
        }

        .career-error-text {
            color: #dc3545;
            font-size: 14px;
            margin-top: 0.25rem;
            display: none;
        }

        .career-error-text.show {
            display: block;
        }

        @media (max-width: 768px) {
            .career-modal-content {
                padding: 2rem 1.5rem;
            }

            .career-modal-buttons {
                flex-direction: column;
            }
        }

        /* Modal Styles */
        .product-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            align-items: center;
            justify-content: center;
        }

        .product-modal.show {
            display: flex;
        }

        .modal-content-custom {
            background: var(--color-white);
            padding: 2.5rem;
            border-radius: 16px;
            max-width: 500px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            font-weight: 300;
            color: var(--color-text-light);
            cursor: pointer;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--color-neutral-light);
            color: var(--color-text);
        }

        .modal-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
			display: none;
        }

        .modal-content-custom h2 {
            color: var(--color-primary);
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .modal-content-custom p {
            color: var(--color-text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .modal-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .modal-btn {
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .modal-btn-recreational {
            background: #007781;
            color: var(--color-white);
        }

        .modal-btn-recreational:hover {
            background: #005f68;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 119, 129, 0.3);
        }

        .modal-btn-medical {
            background: #cddb28;
            color: #007781;
        }

        .modal-btn-medical:hover {
            background: #b8c423;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(205, 219, 40, 0.3);
        }

        @media (max-width: 768px) {
            .product-categories-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1.5rem;
            }

            .category-box {
                padding: 2rem 1.5rem;
            }

            .category-icon {
                font-size: 3rem;
            }

            .category-box h3 {
                font-size: 1.2rem;
            }

            .modal-content-custom {
                padding: 2rem;
            }
        }

        /* Product grid handled by Bootstrap */
        .product-wrapper {
            margin-top: 2rem;
        }

        .product-card {
            background: var(--color-white);
            border-radius: 12px;
            padding: 1.75rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .product-card h4 {
            color: var(--color-primary);
            font-size: 20px;
            margin-bottom: 15px;
        }

        .product-info {
            margin-bottom: 15px;
        }

        .product-info span {
            display: inline-block;
            background: var(--color-neutral-light);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 13px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--color-accent);
            margin-bottom: 15px;
        }

        /* Contact Form - handled by Bootstrap grid */

        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 0.2rem rgba(26, 95, 63, 0.15);
        }

        .form-label {
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 8px;
        }

        .form-message {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }

        .form-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .form-message.show {
            display: block;
        }

        /* Compliance Warnings */
        .compliance-section {
            background: #fff3cd;
            border: 2px solid #ffc107;
            border-radius: 12px;
            padding: 30px;
            margin-top: 50px;
        }

        .compliance-section h3 {
            color: #856404;
            margin-bottom: 20px;
            font-size: 22px;
        }

        .compliance-section ul {
            list-style-position: inside;
            color: #856404;
        }

        .compliance-section li {
            margin-bottom: 10px;
        }

        /* Footer */
        footer {
            background: #007781 !important;
            color: #ffffff !important;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #cddb28 0%, #007781 50%, #cddb28 100%);
        }

        .footer-logo-container {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            display: inline-block;
            margin-bottom: 15px;
        }

        footer img {
            max-width: 120px;
            height: auto;
            filter: brightness(1.1);
        }

        footer h5 {
            color: #cddb28 !important;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.25rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(205, 219, 40, 0.3);
        }

        footer p,
        footer li {
            color: #ffffff !important;
            opacity: 0.9;
            font-size: 14px;
            line-height: 1.8;
        }

        footer a {
            color: #ffffff !important;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0.9;
        }

        footer a:hover {
            color: #cddb28 !important;
            opacity: 1;
            padding-left: 5px;
        }

        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        footer ul li {
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 2rem;
            padding-top: 1.5rem;
        }

        .footer-bottom p {
            font-size: 13px;
            opacity: 0.8;
        }

        .footer-compliance {
            font-size: 11px;
            opacity: 0.7;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            footer img {
                max-width: 100px;
            }
            
            footer h5 {
                margin-top: 1.5rem;
            }
            
            footer h5:first-child {
                margin-top: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .navbar-brand img {
                max-height: 40px;
            }

            section {
                padding: 3rem 0;
            }
        }

        @media (max-width: 768px) {
            .hero {
                background-attachment: scroll;
                min-height: 80vh;
            }

            .age-gate-content {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }

            .age-gate-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .age-gate-btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .category-btn {
                font-size: 0.85rem;
                padding: 0.6rem 1.2rem;
            }
        }
		
		.age-gate-logo {
				height: 125px;
		}