
        :root {
            --primary-blue: goldenrod;
            --dark: #1a1a1a;
            --gray: #666666;
            --light-gray: #f5f5f5;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 15px;
        }
        /* ===== THORNE-STYLE TOP BAR ===== */
        .top-notice-bar {
            background: linear-gradient(90deg, #0d0d0e, #0d0d0e);
            color: var(--white);
            font-size: 0.85rem;
            padding: 10px 0;
            text-align: center;
            font-weight: 500;
        }
        
        .top-notice-bar a {
            color: var(--white);
            text-decoration: underline;
            font-weight: 600;
            margin-left: 5px;
        }
        
        /* ===== DESKTOP NAVIGATION ===== */
        .desktop-nav {
            background: var(--white);
            padding: 0;
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        .nav-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            flex-wrap: nowrap;
            align-items: center;
        }
        
        /* Logo Section */
        .logo-section {
            display: flex;
            align-items: center;
            /* gap: 20px; */
        }
        
        .brand-logo {
            /* font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
            letter-spacing: -0.5px; */
                width: 210px;
        }
        
        .brand-logo span {
            color: var(--primary-blue);
        }
        
        /* Main Navigation Links */
        .nav-links {
            display: flex;
            gap: 16px;
            list-style: none;
            margin: 0;
            padding: 0;
            white-space: nowrap;

        }
        
        .nav-link-item {
            position: relative;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 6px 0;     
        }
        
        .nav-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 0;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-blue);
        }
        
        .nav-link.active {
            color: var(--primary-blue);
            font-weight: 600;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-blue);
        }
        
        /* Right Navigation Section */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 16px;
            white-space: nowrap;
        }
        
        /* Search Box */
        .search-container {
            position: relative;
        }
        
        .search-box {
            width: 280px;
            padding: 10px 15px 10px 40px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 0.9rem;
            background: var(--light-gray);
            transition: all 0.3s ease;
        }
        
        .search-box:focus {
            outline: none;
            border-color: var(--primary-blue);
            background: var(--white);
            width: 320px;
        }
        
        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            pointer-events: none;
        }
        
        /* Navigation Icons */
        .nav-icons {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        
        .icon-btn {
            background: none;
            border: none;
            color: var(--dark);
            cursor: pointer;
            position: relative;
            padding: 5px;
            font-size: 1rem;
            transition: color 0.3s ease;
        }
        
        .icon-btn:hover {
            color: var(--primary-blue);
        }
        
        .badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--primary-blue);
            color: var(--white);
            font-size: 0.7rem;
            min-width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }
        
        /* Sign In Button */
        .btn-signin {
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 10px 24px;
            cursor: pointer;
            padding: 7px 16px;
            font-size: 0.8rem;
            border-radius: 20px;
            font-weight: 600;
            white-space: nowrap;        
            transition: background 0.3s ease, transform 0.2s ease;
        }
        
        .btn-signin:hover {
            background: #c79102;
            transform: translateY(-1px);
        }
        
        /* ===== MOBILE NAVIGATION ===== */
        .mobile-nav {
            display: none;
            background: var(--white);
            padding: 15px 20px;
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .mobile-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
        }
        
        .mobile-brand span {
            color: var(--primary-blue);
        }
        
        .mobile-controls {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .mobile-menu-btn {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--dark);
            cursor: pointer;
            padding: 5px;
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }
        
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-menu-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        .mobile-search-container {
            position: relative;
            margin: 20px 0;
        }
        
        .mobile-search-box {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 1rem;
            background: var(--light-gray);
        }
        
        .mobile-search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }
        
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 20px 0;
        }
        
        .mobile-nav-link {
            padding: 18px 0;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .mobile-nav-link:last-child {
            border-bottom: none;
        }
        
        .mobile-nav-link i {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .mobile-action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .mobile-btn {
            flex: 1;
            padding: 15px;
            border-radius: 25px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            font-size: 1rem;
        }
        
        .mobile-btn-primary {
            background: var(--primary-blue);
            color: var(--white);
            border: none;
        }
        
        .mobile-btn-secondary {
            background: var(--light-gray);
            color: var(--dark);
            border: 1px solid #ddd;
        }
        
        /* ===== HERO SECTION ===== */
        .hero-section {
            background: #0d0d0ed6;
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        /* ===== HERO PARALLAX ===== */

.hero-parallax {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(13,13,14,0.75),
        rgba(13,13,14,0.75)
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}


        /* ===== PRODUCTS ===== */
/* ===== ECOM PRODUCTS GRID ===== */

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 per row on large */
    gap: 18px;
}

.product-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 14px;
    transition: box-shadow 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.product-img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.product-desc {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 8px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 0.85rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 6px;
}

.btn-cart {
    background: #fff;
    border: 1px solid #ddd;
    padding: 5px 7px;
    font-size: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn-buy {
    background: goldenrod;
    border: none;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== HERO SLIDER (CONTENT PER SLIDE) ===== */

.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,14,0.75);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 0 20px;
}

.hero-cta {
    margin-top: 35px;
}

.btn-hero-primary {
    background: goldenrod;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}


        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .hero-tagline {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .hero-divider {
            width: 100px;
            height: 3px;
            background: var(--primary-blue);
            margin: 40px auto;
            opacity: 0.7;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 30px;
            font-weight: 400;
            line-height: 1.8;
        }
        
        /* ===== CONTENT SECTIONS ===== */
        .content-section {
            padding: 100px 20px;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 70px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .section-divider {
            width: 80px;
            height: 3px;
            background: var(--primary-blue);
            margin: 20px auto 30px;
        }
        
        .section-description {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.8;
        }
        
        /* Philosophy Section */
        .philosophy-section {
            background: var(--light-gray);
        }
        
        .philosophy-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .philosophy-text {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .philosophy-list {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 40px 0;
        }
        
        .philosophy-list h4 {
            color: var(--dark);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        
        .philosophy-list ul {
            list-style: none;
            padding: 0;
        }
        
        .philosophy-list li {
            padding: 12px 0;
            color: var(--gray);
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .philosophy-list li:last-child {
            border-bottom: none;
        }
        
        .philosophy-list li i {
            color: var(--primary-blue);
            margin-top: 4px;
        }
        
        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .value-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            border: 1px solid #e0e0e0;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 25px;
        }
        
        .value-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .value-description {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* What We Do Section */
        .services-section {
            background: var(--light-gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-left: 5px solid var(--primary-blue);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 25px;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .service-description {
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .service-list {
            list-style: none;
            padding: 0;
        }
        
        .service-list li {
            padding: 8px 0;
            color: var(--gray);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .service-list li i {
            color: var(--primary-blue);
            margin-top: 5px;
        }
        
        /* Trust Section */
        .trust-section {
            background: var(--white);
        }
        
        .trust-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .trust-badge {
            background: var(--light-gray);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            border: 2px solid var(--primary-blue);
        }
        
        .trust-badge i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 25px;
        }
        
        .trust-badge h3 {
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .trust-list {
            list-style: none;
            padding: 0;
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .trust-list li {
            padding: 15px 0;
            color: var(--gray);
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .trust-list li:last-child {
            border-bottom: none;
        }
        
        .trust-list li i {
            color: var(--primary-blue);
            margin-top: 3px;
        }
        
        /* Message Section */
        .message-section {
            background: linear-gradient(135deg, rgba(218, 165, 32, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
            padding: 100px 20px;
        }
        
        .message-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .message-quote {
            font-size: 1.8rem;
            font-style: italic;
            color: var(--dark);
            margin-bottom: 40px;
            line-height: 1.6;
            position: relative;
        }
        
        .message-quote:before {
            content: '"';
            font-size: 4rem;
            color: var(--primary-blue);
            opacity: 0.2;
            position: absolute;
            top: -20px;
            left: -30px;
            font-family: 'Inter', sans-serif;
        }
        
        .message-author {
            font-size: 1.2rem;
            color: var(--gray);
            font-weight: 600;
        }
        
        /* Vision Section */
        .vision-section {
            padding: 100px 20px;
            background: var(--white);
        }
        
        .vision-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .vision-text {
            font-size: 1.1rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        /* CTA Section */
        .cta-section {
            background: #0d0d0e;
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .cta-description {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn-cta-primary {
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            padding: 16px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-cta-primary:hover {
            background: #c79102;
            transform: translateY(-3px);
        }
        
        .btn-cta-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 16px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-cta-secondary:hover {
            background: var(--white);
            color: #0d0d0e;
            transform: translateY(-3px);
        }
        
        /* ===== FOOTER ===== */
        .main-footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 20px 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }
        
        .footer-brand {
            margin-bottom: 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .footer-tagline {
            color: var(--primary-blue);
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .footer-description {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: background 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary-blue);
        }
        
        .footer-column h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--white);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888;
            font-size: 0.9rem;
        }
        /* ===== PHILOSOPHY IMAGE LAYOUT ===== */

.philosophy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.philosophy-image img {
    width: 100%;
    border-radius: 18px;
        max-height: 500px;
        min-height: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}
/* Mobile */
@media (max-width:768px){
    .hero-slider { min-height: 85vh; }
}

/* Responsive */
@media (max-width: 992px) {
    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-image {
        order: -1; /* image upar, text niche on mobile */
    }
}

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1199px) {
            .nav-container {
                padding: 0 20px;
            }
            
            .search-box {
                width: 240px;
            }
            
            .search-box:focus {
                width: 280px;
            }
        }
        
        @media (max-width: 991px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav {
                display: block;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-tagline {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-tagline {
                font-size: 1.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-cta-primary,
            .btn-cta-secondary {
                width: 100%;
                max-width: 300px;
            }
            
            .values-grid,
            .services-grid,
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .mobile-action-buttons {
                flex-direction: column;
            }
            
            .philosophy-list {
                padding: 30px 20px;
            }
            
            .message-quote {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-section {
                padding: 80px 15px;
            }
            
            .content-section,
            .message-section,
            .vision-section,
            .cta-section {
                padding: 60px 15px;
            }
            
            .value-card,
            .service-card {
                padding: 30px 20px;
            }
            
            .mobile-controls {
                gap: 15px;
            }
        }
        
/* Mobile safety (parallax off) */
@media (max-width: 768px) {
    .hero-parallax {
        background-attachment: scroll;
    }
}
   