/* Optimized CSS - Replace the existing styles in your PHP file */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f6f0;
        }

        /* Top Banner dengan Scrolling Animation */
        .top-banner {
            background: rgba(226, 227, 209, 0.95);
            text-align: center;
            padding: 8px 0;
            font-size: 13px;
            color: #2c2c2c;
            letter-spacing: 0.5px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1002;
            overflow: hidden;
            white-space: nowrap;
        }

        .banner-scroll {
            display: inline-block;
            animation: scrollText 30s linear infinite;
            font-weight: 400;
            padding-left: 100%;
        }

        @keyframes scrollText {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-200%);
            }
        }

        .top-banner:hover .banner-scroll {
            animation-play-state: paused;
        }

        /* Header - Desktop */
        .header {
            background: transparent;
            padding: 4px 0 0;
            padding-top: 40px;
            position: fixed;
            width: 100%;
            z-index: 1005;
            top: 0;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            height: 90px;
            padding: 0 0 0;
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px 6px;
        }

        .nav-container.scrolled {
            margin-top: 40px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 500;
            letter-spacing: 4px;
            color: white;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }

        .nav-center {
            display: flex;
            gap: 45px;
            position: absolute;
            left: 53%;
            transform: translateX(-50%);
        }

        .nav-center a {
            text-decoration: none;
            color: white;
            font-weight: 300;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: opacity 0.3s;
        }

        .nav-center a:hover,
        .nav-center a.active {
            opacity: 0.7;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-icon {
            color: white;
            font-size: 16px;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .nav-icon:hover {
            opacity: 0.7;
        }

        .cart-link {
            text-decoration: none;
            color: white;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 300;
        }

        /* ============================================
        MEMBER DROPDOWN STYLES
        ============================================ */

        /* Member Dropdown Container */
        .member-dropdown-container {
            position: relative;
        }

        /* Member Info Display */
        .member-info {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .member-info:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        .member-name {
            color: white;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .member-arrow {
            font-size: 10px;
            color: white;
            transition: transform 0.3s ease;
        }

        .member-dropdown-container.active .member-arrow {
            transform: rotate(180deg);
        }

        /* Member Dropdown Menu */
        .member-dropdown {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 1000;
            overflow: hidden;
        }

        .member-dropdown-container.active .member-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Dropdown Items */
        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            color: #2c2c2c;
            text-decoration: none;
            font-size: 13px;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }

        .dropdown-item i {
            font-size: 14px;
            width: 18px;
            text-align: center;
            color: #81764B;
        }

        .dropdown-item:hover {
            background: rgba(129, 118, 75, 0.1);
            border-left-color: #81764B;
            padding-left: 22px;
        }

        .dropdown-item.logout {
            color: #e74c3c;
        }

        .dropdown-item.logout i {
            color: #e74c3c;
        }

        .dropdown-item.logout:hover {
            background: rgba(231, 76, 60, 0.1);
            border-left-color: #e74c3c;
        }

        /* Dropdown Divider */
        .dropdown-divider {
            height: 1px;
            background: rgba(0, 0, 0, 0.1);
            margin: 8px 0;
        }

        /* Header Scrolled State - Adjust Colors */
        .header.scrolled .member-info {
            background: rgba(129, 118, 75, 0.15);
            border-color: rgba(129, 118, 75, 0.3);
        }

        .header.scrolled .member-name,
        .header.scrolled .member-arrow,
        .header.scrolled .member-info .nav-icon {
            color: #2c2c2c;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .member-dropdown-container {
                display: none;
                /* Hide on mobile, will use mobile menu instead */
            }

            /* Show simple icon for mobile */
            .nav-right .member-dropdown-container {
                display: none;
            }

            .nav-right>a[href="member_register.php"] {
                display: flex !important;
            }
        }

        /* Prevent body scroll when dropdown is open */
        .member-dropdown-container.active {
            z-index: 1001;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
                url('../img/la-joie-sec.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 700px;
            margin-left: 100px;
            color: white;
        }

        .hero-title {
            font-size: 52px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 35px;
            letter-spacing: 0.5px;
            font-family: 'Montserrat', sans-serif;
        }

        .hero-img {
            z-index: -1;
        }

        .hero-btn {
            background: transparent;
            color: white;
            border: 1px solid white;
            padding: 14px 32px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 400;
        }

        .hero-btn:hover {
            background: white;
            color: #333;
        }

        .hero-nav-dots {
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .nav-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.3);
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Product Section - Exact Match dengan gambar referensi */

        .product-section {
            padding: 0;
            background: #E2E3D1;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            position: relative;
        }

        .section-header {
            text-align: left;
            /* Changed from center */
            padding: 60px 0 40px;
            background: #E2E3D1;
            position: relative;
        }

        .section-tabs {
            display: flex;
            gap: 50px;
            justify-content: flex-start;
            /* Changed from center */
            margin-bottom: 15px;
            padding-left: 60px;
            /* Add left padding to align with content */
        }

        .section-tab {
            font-size: 32px;
            font-weight: 300;
            color: #999;
            /* Inactive color */
            cursor: pointer;
            transition: color 0.3s;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
        }

        .section-tab.active {
            color: #2c2c2c;
            /* Active color */
        }

        .section-tab:hover {
            color: #2c2c2c;
        }

        /* Shop Best Sellers Button - Positioned on the right */
        .shop-best-btn {
            background: transparent;
            border: 1px solid #2c2c2c;
            padding: 12px 28px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 400;
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            font-family: 'Montserrat', sans-serif;
        }

        .shop-best-btn:hover {
            background: #2c2c2c;
            color: white;
        }

        /* Products Grid - Full Width Layout with Separators */
        .products-grid {
            max-width: none;
            width: 100%;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            padding: 0;
            background: #E2E3D1;
            border-top: 1px solid rgba(44, 44, 44, 0.15);
            /* Top border */
        }

        .product-card {
            text-align: center;
            background: #E2E3D1;
            padding: 60px 40px;
            transition: transform 0.3s;
            position: relative;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        /* Product Price Styling dengan Discount */
        .product-price {
            display: flex;
            flex-direction: column;
            gap: 4px;
            align-items: center;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
            font-family: 'Montserrat', sans-serif;
        }

        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 12px;
            font-weight: 300;
        }

        .discount-price {
            color: #e74c3c;
            font-weight: 500;
            font-size: 16px;
        }

        .regular-price {
            font-size: 14px;
            font-weight: 300;
            color: #666;
        }

        .sale-badge {
            background: #e74c3c;
            color: white;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 2px;
            letter-spacing: 0.5px;
        }

        /* Mobile responsive untuk discount pricing */
        @media (max-width: 768px) {
            .product-price {
                gap: 3px;
                margin-bottom: 20px;
            }

            .original-price {
                font-size: 11px;
            }

            .discount-price {
                font-size: 14px;
            }

            .regular-price {
                font-size: 13px;
            }

            .sale-badge {
                font-size: 8px;
                padding: 2px 6px;
            }
        }

        /* Vertical Line Separators */
        .product-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            bottom: 10%;
            width: 1px;
            background: rgba(44, 44, 44, 0.15);
            z-index: 1;
        }

        /* Product Image Container with Multiple Images Support */
        .product-image-container {
            position: relative;
            width: 200px;
            /* Fixed width for consistency */
            height: 280px;
            /* Fixed height for consistency */
            margin-bottom: 30px;
            overflow: hidden;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* Changed from cover to contain */
            background: transparent;
            /* Remove white background */
            padding: 0;
            /* Remove padding */
            box-shadow: none;
            /* Remove shadow */
            border-radius: 0;
            /* Remove border radius */
            position: absolute;
            top: 0;
            left: 0;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .product-image.secondary {
            opacity: 0;
        }

        .product-card:hover .product-image.primary {
            opacity: 0;
        }

        .product-card:hover .product-image.secondary {
            opacity: 1;
        }

        /* Image indicators for multiple images */
        .image-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 2;
        }

        .indicator-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(44, 44, 44, 0.3);
            transition: background 0.3s ease;
        }

        .indicator-dot.active {
            background: rgba(44, 44, 44, 0.7);
        }

        .product-name {
            font-size: 22px;
            /* Slightly larger */
            font-weight: 400;
            margin-bottom: 8px;
            color: #2c2c2c;
            letter-spacing: 0.5px;
            font-family: 'Montserrat', sans-serif;
        }

        /* Product Price - New element */
        .product-price {
            font-size: 14px;
            font-weight: 300;
            color: #666;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
            font-family: 'Montserrat', sans-serif;
        }

        .add-to-cart-btn {
            background: transparent;
            border: 1px solid #2c2c2c;
            padding: 12px 28px;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
            width: auto;
            min-width: 140px;
        }

        .add-to-cart-btn:hover {
            background: #2c2c2c;
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-tabs {
                padding-left: 40px;
            }

            .shop-best-btn {
                right: 40px;
            }
        }

        /* Bhumi Amsa Section */
        .bhumi-section {
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://postimg.pro/images/2025/07/28/7Pn8y3.jpg');
            background-size: cover;
            background-position: left;
            height: 50vh;
            padding: 120px 0;
            color: white;
            text-align: left;
        }

        .bhumi-content {
            max-width: 700px;
            margin-left: 100px;
            color: white;
        }

        .bhumi-title {
            font-size: 52px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
            font-family: 'Montserrat', sans-serif;
        }

        .shop-collection-btn {
            background: transparent;
            color: white;
            border: 1px solid white;
            padding: 12px 30px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            pointer: cursor;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://postimg.pro/images/2025/07/23/7LEYxf.jpg');
            background-size: cover;
            background-position: center bottom;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .about-text {
            font-size: 32px;
            font-weight: 300;
            line-height: 1.4;
            color: #ffffff;
            margin-bottom: 40px;
        }

        .about-description {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 40px;
        }

        .learn-about-btn {
            background: transparent;
            border: 1px solid #ffffff;
            padding: 12px 30px;
            font-size: 12px;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .learn-about-btn:hover {
            background: #333;
            color: white;
        }

        /* Cart Sidebar Styles - Keep existing styles */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 100vw;
            height: 100vh;
            z-index: 9999;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .cart-sidebar.active {
            visibility: visible;
            opacity: 1;
        }

        .cart-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .cart-panel {
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            height: 100vh;
            background: #E2E3D1;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            font-family: 'Montserrat', sans-serif;
        }

        .cart-sidebar.active .cart-panel {
            transform: translateX(0);
        }

        .cart-header {
            padding: 20px;
            border-bottom: 1px solid rgba(44, 44, 44, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #E2E3D1;
        }

        .cart-title {
            font-size: 16px;
            font-weight: 500;
            color: #2c2c2c;
            letter-spacing: 1px;
            margin: 0;
        }

        .cart-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #2c2c2c;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
        }

        .cart-close:hover {
            opacity: 0.7;
        }

        .cart-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-items-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cart-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            gap: 15px;
            align-items: flex-start;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .cart-item-image {
            width: 80px;
            height: 100px;
            object-fit: contain;
            border-radius: 4px;
            background: #f8f8f8;
            flex-shrink: 0;
        }

        .cart-item-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .cart-item-name {
            font-size: 14px;
            font-weight: 500;
            color: #2c2c2c;
            margin: 0;
            line-height: 1.3;
        }

        .cart-item-price {
            font-size: 12px;
            color: #666;
            margin: 0;
        }

        .cart-item-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-btn {
            width: 24px;
            height: 24px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .quantity-btn:hover {
            background: #2c2c2c;
            color: white;
            border-color: #2c2c2c;
        }

        .quantity-display {
            font-size: 12px;
            font-weight: 500;
            color: #2c2c2c;
            min-width: 20px;
            text-align: center;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: #ff6b6b;
            font-size: 12px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 500;
            transition: opacity 0.3s;
        }

        .cart-item-remove:hover {
            opacity: 0.7;
        }

        .cart-footer {
            padding: 20px;
            border-top: 1px solid rgba(44, 44, 44, 0.1);
            background: #E2E3D1;
        }

        .cart-total {
            margin-bottom: 20px;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
            color: #2c2c2c;
            letter-spacing: 0.5px;
        }

        .total-amount {
            font-weight: 600;
        }

        .checkout-btn {
            width: 100%;
            background: #B5A888;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .checkout-btn:hover {
            background: #9d9170;
            transform: translateY(-1px);
        }

        .cart-empty {
            text-align: center;
            padding: 40px 20px;
            color: #666;
        }

        .cart-empty-icon {
            font-size: 48px;
            margin-bottom: 15px;
            opacity: 0.5;
        }

        .cart-empty h3 {
            font-size: 16px;
            margin-bottom: 8px;
            color: #2c2c2c;
        }

        .cart-empty p {
            font-size: 12px;
            line-height: 1.4;
        }

        /* Notification for cart updates */
        .cart-notification {
            position: fixed;
            top: 80px;
            right: 20px;
            background: #4caf50;
            color: white;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            z-index: 10000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .cart-notification.show {
            transform: translateX(0);
        }

        .cart-notification.error {
            background: #f44336;
        }

        /* Footer Styles */
        .footer {
            background: #81764B;
            padding: 60px 0 40px;
            margin-top: auto;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 0.5fr 1fr 2fr;
            gap: 30px;
            padding: 0 60px;
            margin-bottom: 40px;
        }

        .footer-brand-section {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-brand img {
            max-width: 100%;
            height: auto;
        }

        .footer-logo {
            margin-top: 10px;
        }

        .footer-column h4 {
            font-size: 16px;
            color: #ffffff;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 25px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 10px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-weight: 100;
            padding: 5px 0;
            border-left: 3px solid transparent;
            padding-left: 2px;
        }

        .footer-links a:hover {
            color: #ffffff;
            border-left-color: #ffffff;
            padding-left: 15px;
            transform: translateX(5px);
        }

        .newsletter-section {
            display: flex;
            flex-direction: column;
        }

        .newsletter-title {
            font-size: 10px;
            font-weight: 100;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ffffff;
            line-height: 1.4;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .newsletter-input {
            padding: 12px 15px;
            border: 1px solid #ffffff;
            background: transparent;
            color: #ffffff;
            font-size: 14px;
            placeholder-color: #ffffff;
        }

        .newsletter-input::placeholder {
            color: #ffffff;
            opacity: 0.8;
        }

        .newsletter-btn {
            background: #ffffff;
            color: #81764B;
            border: none;
            padding: 12px 20px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .newsletter-btn:hover {
            background: #f0f0f0;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: flex-start;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffffff, #f0f0f0);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #81764B;
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .social-icon:hover {
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Search Modal */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .search-modal.active {
            display: flex;
        }

        .search-box {
            background: white;
            padding: 40px;
            border-radius: 8px;
            width: 90%;
            max-width: 600px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .close-search {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }

        /* Hamburger Menu - Hidden on Desktop */
        .hamburger-menu {
            display: none;
        }

        /* Mobile Menu Popup */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            background: #E2E3D1;
            border-radius: 20px;
            padding: 40px 30px;
            z-index: 9999;
            min-width: 280px;
            max-width: 320px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .mobile-menu-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(44, 44, 44, 0.1);
        }

        .mobile-menu-logo {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 2px;
            color: #2c2c2c;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 24px;
            color: #2c2c2c;
            cursor: pointer;
            padding: 5px;
            border-radius: 50%;
            transition: all 0.3s ease;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-close:hover {
            background: rgba(44, 44, 44, 0.1);
            transform: rotate(90deg);
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .mobile-menu-link {
            text-decoration: none;
            color: #2c2c2c;
            font-size: 16px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 15px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(129, 118, 75, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .mobile-menu-link:hover::before {
            left: 100%;
        }

        .mobile-menu-link:hover,
        .mobile-menu-link.active {
            background: rgba(129, 118, 75, 0.1);
            color: #81764B;
            transform: translateY(-2px);
        }

        /* RESPONSIVE - MODIFIKASI UNTUK INTEGRASI DENGAN HEADER */
        @media (max-width: 768px) {

            /* Banner tetap di atas */
            .top-banner {
                font-size: 12px;
                padding: 6px 0;
            }

            .banner-scroll {
                animation-duration: 12s;
            }

            /* Header Mobile - Lebih Compact */
            .header {
                background: rgba(226, 227, 209, 0.95);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                padding: 8px 0;
                margin-top: 30px;
                /* Space untuk banner */
                height: auto;
            }

            .header.scrolled {
                background: rgba(226, 227, 209, 0.98);
                padding: 8px 0;
                height: auto;
                margin-top: 30px;
            }

            /* Navigation Container - Lebih Rapi */
            .nav-container {
                padding: 0 20px;
                justify-content: space-between;
                align-items: center;
                min-height: 60px;
            }

            .nav-container.scrolled {
                margin-top: 0;
            }

            /* Logo styling untuk mobile */
            .nav-container>a {
                flex: 1;
                display: flex;
                justify-content: flex-start;
            }

            .nav-container>a img {
                width: 150px !important;
                height: auto !important;
            }

            /* Hide desktop navigation */
            .nav-center {
                display: none !important;
            }

            /* Navigation right section - Compact */
            .nav-right {
                gap: 12px;
                display: flex;
                align-items: center;
            }

            /* Hide search and user icons on mobile */
            .nav-right .fas.fa-search,
            .nav-right .fas.fa-user {
                display: none;
            }

            /* Cart link styling - Lebih Compact */
            .cart-link {
                font-size: 0;
                background: rgba(255, 255, 255, 0.3);
                padding: 8px 10px;
                border-radius: 8px;
                border: 1px solid rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
            }

            .cart-link:hover {
                background: rgba(255, 255, 255, 0.4);
                transform: translateY(-1px);
            }

            .cart-link .fas {
                font-size: 14px;
                color: #2c2c2c;
            }

            .cart-count {
                background: transparent;
                color: black;
                border-radius: 50%;
                width: 16px;
                height: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 9px;
                font-weight: 600;
                min-width: 16px;
            }

            /* Hamburger Menu - Show on Mobile */
            .hamburger-menu {
                display: flex;
                flex-direction: column;
                cursor: pointer;
                padding: 8px;
                background: rgba(255, 255, 255, 0.3);
                border-radius: 8px;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                transition: all 0.3s ease;
            }

            .hamburger-line {
                width: 18px;
                height: 2px;
                background-color: #2c2c2c;
                margin: 2px 0;
                transition: all 0.3s ease;
                transform-origin: center;
            }

            .hamburger-menu.active {
                background: rgba(44, 44, 44, 0.9);
            }

            .hamburger-menu.active .hamburger-line {
                background-color: white;
            }

            .hamburger-menu.active .hamburger-line:nth-child(1) {
                transform: rotate(45deg) translate(4px, 4px);
            }

            .hamburger-menu.active .hamburger-line:nth-child(2) {
                opacity: 0;
            }

            .hamburger-menu.active .hamburger-line:nth-child(3) {
                transform: rotate(-45deg) translate(4px, -4px);
            }

            /* Product container margin adjustment */
            .product-container {
                grid-template-columns: 1fr;
                margin-top: 132px;
                min-height: auto;
            }

            /* Prevent body scroll when menu is open */
            body.menu-open {
                overflow: hidden;
            }

            /* Hero Section - Adjustment for banner space */
            .hero-section {
                margin-top: 32px;
                /* Space for banner */
                height: calc(100vh - 32px);
            }

            /* Product Section - Adjustment for banner space */
            .product-section {
                margin-top: 32px;
                /* Space for banner if needed */
            }

            /* HERO SECTION MOBILE */
            .hero-section {
                height: 70vh;
                background-position: center;
                padding: 0 20px;
                display: flex;
                align-items: flex-end;
                padding-bottom: 260px;
                margin-top: 100px;
                /* 100px header + 32px banner */
            }

            .hero-content {
                margin-left: 0;
                margin-right: 0;
                text-align: left;
                max-width: 100%;
            }

            .hero-title {
                font-size: 28px;
                line-height: 1.3;
                margin-bottom: 25px;
                letter-spacing: 0.3px;
            }

            .hero-btn {
                padding: 12px 25px;
                font-size: 10px;
                letter-spacing: 1.5px;
            }

            .hero-nav-dots {
                display: none;
            }

            /* PRODUCT SECTION MOBILE */
            .product-section {
                margin-left: 0;
                margin-top: 2px;
                width: 100%;
            }

            .section-header {
                padding: 40px 20px 30px;
                text-align: center;
            }

            .section-tabs {
                justify-content: center;
                padding-left: 0;
                flex-wrap: wrap;
                gap: 30px;
                margin-bottom: 25px;
            }

            .section-tab {
                font-size: 24px;
            }

            .shop-best-btn {
                position: static;
                transform: none;
                align-self: center;
                padding: 10px 22px;
                font-size: 10px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .product-card {
                padding: 40px 30px;
                border-bottom: 1px solid rgba(44, 44, 44, 0.1);
            }

            .product-card:not(:last-child)::after {
                display: none;
            }

            .product-image-container {
                width: 180px;
                height: 240px;
                margin-bottom: 25px;
            }

            .product-name {
                font-size: 20px;
                margin-bottom: 8px;
            }

            .product-price {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .add-to-cart-btn {
                padding: 10px 24px;
                font-size: 9px;
                min-width: 130px;
            }

            /* BHUMI SECTION MOBILE */
            .bhumi-section {
                height: 40vh;
                padding: 60px 20px;
                background-position: center;
            }

            .bhumi-content {
                margin-left: 0;
                text-align: center;
                max-width: 100%;
            }

            .bhumi-title {
                font-size: 32px;
                margin-bottom: 20px;
            }

            .shop-collection-btn {
                padding: 10px 24px;
                font-size: 10px;
                letter-spacing: 1.5px;
            }

            /* COLLECTOR'S EDIT */
            .collectors-section {
                padding: 0;
                background: #f8f6f0;
                width: 100vw;
                margin-left: calc(-50vw + 50%);
                position: relative;
            }

            .collectors-header {
                text-align: left;
                padding: 60px 0 40px;
                background: #f8f6f0;
                position: relative;
            }

            .collectors-tabs {
                display: flex;
                gap: 50px;
                justify-content: flex-start;
                margin-bottom: 15px;
                padding-left: 60px;
            }

            .collectors-tab {
                font-size: 32px;
                font-weight: 300;
                color: #2c2c2c;
                cursor: default;
                font-family: 'Montserrat', sans-serif;
            }

            .shop-collectors-btn {
                background: transparent;
                border: 1px solid #2c2c2c;
                padding: 12px 28px;
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 1.5px;
                cursor: pointer;
                transition: all 0.3s;
                font-weight: 400;
                position: absolute;
                right: 60px;
                top: 50%;
                transform: translateY(-50%);
                font-family: 'Montserrat', sans-serif;
            }

            .shop-collectors-btn:hover {
                background: #2c2c2c;
                color: white;
            }

            .collectors-grid {
                max-width: none;
                width: 100%;
                margin: 0;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 0;
                padding: 0;
                background: #f8f6f0;
                border-top: 1px solid rgba(44, 44, 44, 0.15);
            }

            .collector-card {
                text-align: center;
                background: #f8f6f0;
                padding: 60px 40px;
                transition: transform 0.3s;
                position: relative;
                border: none;
                display: flex;
                flex-direction: column;
                align-items: center;
                cursor: pointer;
            }

            .collector-card:hover {
                transform: translateY(-5px);
            }

            .collector-card:not(:last-child)::after {
                content: '';
                position: absolute;
                right: 0;
                top: 10%;
                bottom: 10%;
                width: 1px;
                background: rgba(44, 44, 44, 0.15);
                z-index: 1;
            }

            .collector-image-container {
                position: relative;
                width: 200px;
                height: 280px;
                margin-bottom: 30px;
                overflow: hidden;
            }

            .collector-image {
                width: 100%;
                height: 100%;
                object-fit: contain;
                position: absolute;
                top: 0;
                left: 0;
                opacity: 1;
                transition: opacity 0.5s ease;
            }

            .collector-image.secondary {
                opacity: 0;
            }

            .collector-card:hover .collector-image.primary {
                opacity: 0;
            }

            .collector-card:hover .collector-image.secondary {
                opacity: 1;
            }

            .collector-name {
                font-size: 22px;
                font-weight: 400;
                margin-bottom: 8px;
                color: #2c2c2c;
                letter-spacing: 0.5px;
                font-family: 'Montserrat', sans-serif;
            }

            .collector-price {
                display: flex;
                flex-direction: column;
                gap: 4px;
                align-items: center;
                margin-bottom: 25px;
                letter-spacing: 0.5px;
                font-family: 'Montserrat', sans-serif;
            }

            /* Badge khusus untuk Collector's Edit */
            /* Badge khusus untuk Collector's Edit */
            .collectors-badge {
                background: linear-gradient(135deg, #81764B, #9d9170);
                color: white;
                padding: 4px 10px;
                border-radius: 12px;
                font-size: 9px;
                font-weight: 600;
                text-transform: uppercase;
                margin-top: 6px;
                letter-spacing: 0.5px;
                display: inline-block;
            }


            /* Responsive */
            @media (max-width: 1024px) {
                .collectors-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                .collectors-tabs {
                    padding-left: 40px;
                }

                .shop-collectors-btn {
                    right: 40px;
                }
            }

            @media (max-width: 768px) {
                .collectors-section {
                    margin-left: 0;
                    margin-top: 2px;
                    width: 100%;
                }

                .collectors-header {
                    padding: 40px 20px 30px;
                    text-align: center;
                }

                .collectors-tabs {
                    justify-content: center;
                    padding-left: 0;
                    flex-wrap: wrap;
                    gap: 30px;
                    margin-bottom: 25px;
                }

                .collectors-tab {
                    font-size: 24px;
                }

                .shop-collectors-btn {
                    position: static;
                    transform: none;
                    align-self: center;
                    padding: 10px 22px;
                    font-size: 10px;
                }

                .collectors-grid {
                    grid-template-columns: 1fr;
                    gap: 0;
                }

                .collector-card {
                    padding: 40px 30px;
                    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
                }

                .collector-card:not(:last-child)::after {
                    display: none;
                }

                .collector-image-container {
                    width: 180px;
                    height: 240px;
                    margin-bottom: 25px;
                }

                .collector-name {
                    font-size: 20px;
                    margin-bottom: 8px;
                }
            }

            /* ABOUT SECTION MOBILE */
            .about-section {
                padding: 60px 20px;
            }

            .about-content {
                padding: 0 20px;
            }

            .about-text {
                font-size: 22px;
                line-height: 1.4;
                margin-bottom: 30px;
            }

            .about-description {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .learn-about-btn {
                padding: 10px 24px;
                font-size: 10px;
            }

            .cart-sidebar .cart-panel {
                width: 100% !important;
                max-width: 100% !important;
                display: grid !important;
                grid-template-rows: auto 1fr auto;
                height: 100vh;
                height: 100dvh;
            }

            .cart-header {
                padding: 20px;
                background: #E2E3D1;
                border-bottom: 1px solid rgba(44, 44, 44, 0.1);
            }

            .cart-title {
                font-size: 14px;
            }

            .cart-close {
                font-size: 20px;
                min-width: 44px;
                min-height: 44px;
            }

            .cart-content {
                overflow: auto;
                -webkit-overflow-scrolling: touch;
                padding: 20px;
            }

            .cart-item {
                padding: 15px;
                margin-bottom: 15px;
                border-radius: 12px;
            }

            .cart-item-image {
                width: 70px;
                height: 90px;
            }

            .cart-item-name {
                font-size: 13px;
                line-height: 1.3;
            }

            .cart-item-price {
                font-size: 11px;
            }

            .quantity-btn {
                width: 28px;
                height: 28px;
                font-size: 14px;
                min-width: 44px;
                min-height: 44px;
            }

            .quantity-display {
                font-size: 13px;
                min-width: 25px;
            }

            .cart-item-remove {
                font-size: 10px;
            }

            .cart-footer {
                padding: 20px;
                padding-bottom: max(20px, env(safe-area-inset-bottom));
                background: #E2E3D1;
                border-top: 1px solid rgba(44, 44, 44, 0.1);
            }

            .cart-footer::before {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                top: -15px;
                height: 15px;
                background: linear-gradient(180deg, rgba(226, 227, 209, 0), rgba(226, 227, 209, 1));
                pointer-events: none;
            }

            .total-row {
                font-size: 13px;
            }

            .checkout-btn {
                padding: 15px;
                font-size: 12px;
                border-radius: 10px;
            }

            /* FOOTER MOBILE - SAMA DENGAN PRODUCT DETAIL */
            .footer {
                padding: 40px 0 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 35px;
                padding: 0 25px;
                text-align: center;
                max-width: 100%;
            }

            .footer-brand-section {
                order: 1;
                gap: 15px;
                align-items: center;
            }

            .footer-brand img {
                max-width: 180px;
                height: auto;
            }

            .footer-logo {
                max-width: 200px;
                margin-top: 15px;
            }

            .footer-column:nth-child(2) {
                order: 2;
            }

            .footer-column:nth-child(3) {
                order: 3;
            }

            .footer-column:nth-child(4) {
                order: 4;
            }

            .footer-column h4 {
                font-size: 13px;
                margin-bottom: 20px;
                letter-spacing: 1.5px;
                padding-bottom: 8px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            }

            .footer-links {
                gap: 8px;
            }

            .footer-links a {
                font-size: 12px;
                padding: 8px 0;
                border-left: none;
                padding-left: 0;
            }

            .footer-links a:hover {
                padding-left: 0;
                transform: none;
                border-left: none;
                color: rgba(255, 255, 255, 0.8);
            }

            .newsletter-section {
                order: 5;
                margin-top: 10px;
            }

            .newsletter-title {
                font-size: 12px;
                margin-bottom: 20px;
                line-height: 1.5;
                max-width: 250px;
                margin-left: auto;
                margin-right: auto;
            }

            .newsletter-form {
                max-width: 280px;
                margin: 0 auto 25px;
                gap: 12px;
            }

            .newsletter-input {
                padding: 12px 15px;
                font-size: 12px;
                border-radius: 6px;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
            }

            .newsletter-input::placeholder {
                color: rgba(255, 255, 255, 0.7);
            }

            .newsletter-btn {
                padding: 12px 20px;
                font-size: 11px;
                border-radius: 6px;
                font-weight: 500;
            }

            .social-icons {
                justify-content: center;
                gap: 15px;
                margin-top: 25px;
            }

            .social-icon {
                width: 42px;
                height: 42px;
                font-size: 16px;
            }

            /* Search Modal - Mobile */
            .search-box {
                padding: 30px 20px;
                width: 95%;
                margin: 0 auto;
            }

            .search-input {
                padding: 12px;
                font-size: 16px;
            }

            .close-search {
                top: 15px;
                right: 15px;
                font-size: 20px;
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 15px;
                min-height: 55px;
            }

            .nav-container>a img {
                width: 130px !important;
            }

            .cart-link {
                padding: 6px 8px;
            }

            .hamburger-menu {
                padding: 6px;
            }

            .hamburger-line {
                width: 16px;
            }

            .mobile-menu-popup {
                min-width: 260px;
                max-width: 300px;
                padding: 35px 25px;
            }

            .mobile-menu-link {
                font-size: 15px;
                padding: 12px 15px;
            }
        }

        /* Desktop - Ensure hamburger is hidden */
        @media (min-width: 769px) {
            .hamburger-menu {
                display: none !important;
            }

            .nav-center {
                display: flex !important;
            }
        }

        /* iOS Safari specific fixes */
        @supports (-webkit-touch-callout: none) {
            @media (max-width: 768px) {
                .cart-panel {
                    height: 100vh;
                    height: -webkit-fill-available;
                }

                .cart-footer {
                    padding-bottom: max(20px, constant(safe-area-inset-bottom));
                    padding-bottom: max(20px, env(safe-area-inset-bottom));
                }
            }
        }