@font-face {
    font-family: 'BobbyJones';
    src: url('../font/bobby-jones-condensed.otf') format('opentype');
}

@font-face {
    font-family: 'BobbyJonesCondensed';
    src: url('../font/bobby-jones-soft-regular.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    font-family: 'BobbyJonesCondensed', sans-serif; /* harus sama persis dengan nama di @font-face */
    box-sizing: border-box;
    color: #333;
}

body {
    background: white;
}

h1, h2, h3 {
    font-family: 'BobbyJones';
}



.product-name {
    font-family: 'BobbyJones';
}

.product-description {
    font-family: 'BobbyJonesCondensed';
}


 .top-banner {
     background: #f8f8f8;
     border-bottom: 1px solid #e0e0e0;
     padding: 8px 20px;
     font-size: 12px;
     overflow-x: auto;
     white-space: nowrap;
     display: flex;

     justify-content: space-between;
 }

 .vip-badge {
     background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
     color: white;
     padding: 2px 8px;
     border-radius: 3px;
     font-weight: 600;
     font-size: 10px;
     display: inline-block;
 }

 header {
     background: white;
     padding: 15px 20px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     position: sticky;
     top: 0;
     z-index: 100;
     /* max-width: 1400px; */
     margin: 0 auto;
 }

 .header-content {
     max-width: 800px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     gap: 20px;
 }

 .header-actions {
     margin-left: auto;
     display: flex;
     gap: 15px;
     align-items: center;
 }


 .logo {
     font-size: 24px;
     font-weight: 300;
     letter-spacing: 4px;
     color: #000;
     text-decoration: none;
 }

 .search-container {
     flex: 1;
     position: relative;
     max-width: 400px;
 }

 .search-input {
     width: 100%;
     padding: 12px 50px 12px 20px;
     border: 1px solid #ddd;
     border-radius: 25px;
     font-size: 14px;
 }

 .search-btn {
     position: absolute;
     right: 5px;
     top: 50%;
     transform: translateY(-50%);
     background: #ffffff;
     color: white;
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     cursor: pointer;
 }

 .header-actions {
     display: flex;
     gap: 20px;
     align-items: center;
 }

 .header-actions a {
     color: #000;
     text-decoration: none;
     font-size: 14px;
 }


 /* ==========================ASLI========================================== */

 /* .nav-content {
     max-width: 1400px;
     margin: 0 auto;
     display: flex;
     gap: 30px;
     justify-content: center;
 }

 .nav-content a {
     color: #000;
     text-decoration: none;
     font-weight: 500;
     font-size: 14px;
     text-transform: uppercase;
 } */

 /* ================================================================================ */

 /* ===============================COBA GPT============================================ */

 nav {
     background: white;
     border-bottom: 1px solid #e0e0e0;
     padding: 25px 30px;
     max-width: 800px;
     margin: 0 auto;
 }


 .nav-content {
     max-width: 1400px;
     margin: 0 auto;
     display: flex;
     gap: 30px;
     justify-content: center;
     align-items: center;
 }

 .nav-content a {
     color: #000;
     text-decoration: none;
     font-weight: 500;
     font-size: 14px;
     text-transform: uppercase;
 }

 .nav-item {
     position: relative;
 }

 .dropdown {
     position: absolute;
     top: 100%;
     left: 0;
     background: #fff;
     min-width: 180px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     display: none;
     flex-direction: column;
     padding: 10px 0;
     z-index: 100;
 }

 .dropdown a {
     padding: 8px 16px;
     font-size: 13px;
     text-transform: none;
     white-space: nowrap;
 }

 .dropdown a:hover {
     background: #f5f5f5;
 }

 .nav-item:hover .dropdown {
     display: flex;
 }

 /* ===============================COBA GPT============================================ */






 .container {
     max-width: 1800px;
     margin: 0 auto;
     padding: 20px;
 }

 .hero-section {
     margin-bottom: 30px;
 }

 .section-title {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 20px;
     text-align: center;
     justify-content: center;
 }

 .hero-slider {
     position: relative;
     overflow: hidden;
     /* border-radius: 12px; */
 }

 .hero-slides {
     display: flex;
     transition: transform 0.5s ease;
 }

 .hero-slide {
     min-width: 100%;
     position: relative;
 }

 .hero-slide img {
     width: 100%;
     height: 700px;
     object-fit: cover;
 }

 .timer-badge {
     position: absolute;
     top: 20px;
     right: 20px;
     background: rgba(0, 0, 0, 0.8);
     color: white;
     padding: 12px 20px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 600;
 }

 .slider-dots {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 8px;
 }

 .dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
 }

 .dot.active {
     background: white;
 }

 .brand-categories {
     background: white;
     padding: 30px;
     border-radius: 12px;
     margin-bottom: 30px;
 }

 .brand-scroll {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     padding: 10px 0;
     scrollbar-width: none;
 }

 .brand-scroll::-webkit-scrollbar {
     display: none;
 }

 .brand-item {
     text-align: center;
     min-width: 120px;
     cursor: pointer;
 }

 .brand-categories {
     display: flex;
     justify-content: center;
     /* tengah horizontal */
 }

 .brand-scroll {
     display: flex;
     justify-content: center;
     /* isi di tengah */
 }

 .brand-item {
     text-align: center;
     /* teks rata tengah */
 }

 .brand-circle {
     display: flex;
     align-items: center;
     /* tengah vertikal */
     justify-content: center;
     /* tengah horizontal */
     text-align: center;
 }


 .brand-circle {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     background: #f5f5f5;
     display: flex;
     align-items: center;
     justify-content: center;

     margin: 0 auto 10px;
     font-size: 14px;
     font-weight: 600;
     transition: all 0.3s;
 }

 .brand-circle:hover {
     background: #e5e5e5;
 }

 .brand-name {
     font-size: 12px;
     color: #666;
 }

 .promo-banner {
     padding-top: 20px;
     margin-bottom: 30px;
     text-align: center;
 }

 .promo-banner h2 {
     font-size: 22px;
     margin-bottom: 20px;
 }

 .promo-banner img {
     width: 100%;
     border-radius: 12px;
     cursor: pointer;
 }

 /* ===================GPT=========================================== */
 .category-card {
     position: relative;
     overflow: hidden;
 }

 /* .coming-soon .category-image {
     filter: blur(2px);
     border-radius: 20px;
     transform: scale(1.05);
 } */

 /* .coming-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    z-index: 2;
} */

 .coming-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 29px;
     /* ⬅️ naikkan overlay */
     background: rgba(0, 0, 0, 0.35);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 20px;
     z-index: 2;
 }

 .coming-overlay span {
     color: #fff;
     font-weight: 700;
     font-size: 14px;
     letter-spacing: 2px;
     padding: 6px 12px;
     border: 2px solid #fff;
     border-radius: 20px;
 }

 /* .coming-soon {
     pointer-events: none;
     border-radius: 20px;
 } */

 /* Material Categories */
 .material-section {
     background: white;
     padding: 30px;
     border-radius: 12px;
     margin-bottom: 30px;
 }

 .material-scroll {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     gap: 15px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .material-item {
     position: relative;
 }

 .material-name {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     margin-top: 0;
     /* override yang lama */
     color: #fff;
     font-size: 14px;
     font-weight: 600;
     background: rgba(0, 0, 0, 0.45);
     padding: 6px 12px;
     border-radius: 999px;
     z-index: 2;
     pointer-events: none;
 }


 .material-image {
     width: 100%;
     height: 0;
     padding-bottom: 100%;
     background-size: cover;
     background-position: center;
     border-radius: 8px;
     position: relative;
     overflow: hidden;
 }

 .material-item:hover .material-image {
     transform: scale(1.05);
 }

 /* Material Categories */
 /* .material-section {
            background: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .material-scroll {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .material-item {
            text-align: center;
            cursor: pointer;
        }

        .material-image {
            width: 100%;
            height: 0;
            padding-bottom: 100%; 
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-bottom: 8px;
            transition: transform 0.3s;
            position: relative;
        }

        .material-item:hover .material-image {
            transform: scale(1.05);
        }

        .material-name {
            font-size: 13px;
            font-weight: 500;
            color: #333;
            margin-top: 8px;
        } */
 /* 
        .material-section {
            background: white;
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .material-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding: 10px 0;
            scrollbar-width: none;
        }

        .material-scroll::-webkit-scrollbar {
            display: none;
        }

        .material-item {
            text-align: center;
            min-width: 150px;
            cursor: pointer;
        }

        .material-image {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 10px;
            transition: transform 0.3s;
        }

        .material-item:hover .material-image {
            transform: scale(1.05);
        }

        .material-name {
            font-size: 14px;
            font-weight: 500;
            color: #333;
        } */
 /* ===================GPT=========================================== */
 .social-links a {
     font-size: 20px;
     color: #000;
     margin-right: 10px;
 }

 .social-links a:hover {
     color: #555;
 }


 /* =========================footer======================== */


 /* 1=============================Produk================================ */
 .product-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 20px;
     display: grid;
     grid-template-columns: 1fr 400px;
     gap: 40px;
     background: white;
 }

 .image-gallery {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
 }

 .gallery-image {
     width: 100%;
     aspect-ratio: 3/4;
     object-fit: cover;
     border-radius: 8px;
     cursor: pointer;
 }

 .mobile-gallery {
     display: none;
     position: relative;
     overflow: hidden;
 }

 .mobile-gallery-scroll {
     display: flex;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
 }

 .mobile-gallery-scroll::-webkit-scrollbar {
     display: none;
 }

 .mobile-gallery-image {
     min-width: 100%;
     scroll-snap-align: start;
     aspect-ratio: 3/4;
     object-fit: cover;
 }

 .gallery-counter {
     position: absolute;
     bottom: 15px;
     left: 50%;
     transform: translateX(-50%);
     background: rgba(0, 0, 0, 0.7);
     color: white;
     padding: 6px 12px;
     border-radius: 20px;
     font-size: 12px;
 }

 .paling-populer-badge {
     position: absolute;
     top: 15px;
     left: 15px;
     background: #3b82f6;
     color: white;
     padding: 6px 12px;
     border-radius: 4px;
     font-size: 12px;
 }

 .product-info {
     position: sticky;
     top: 100px;
     height: fit-content;
 }

 .brand-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 10px;
 }

 .brand-name {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 16px;
     font-weight: 600;
 }

 .share-btn {
     background: none;
     border: none;
     cursor: pointer;
     font-size: 20px;
 }

 .product-title {
     font-size: 18px;
     font-weight: 400;
     margin-bottom: 15px;
 }

 .rating-section {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 20px;
 }

 .rating {
     display: flex;
     align-items: center;
     gap: 5px;
     font-size: 14px;
 }

 .price-section {
     margin-bottom: 25px;
 }

 .current-price {
     font-size: 24px;
     font-weight: 600;
     color: #e53e3e;
     margin-right: 10px;
 }

 .original-price {
     font-size: 16px;
     color: #999;
     text-decoration: line-through;
     margin-right: 10px;
 }

 .promo-box {
     background: #f0fdf4;
     border: 1px solid #86efac;
     border-radius: 8px;
     padding: 12px;
     margin-bottom: 20px;
     font-size: 13px;
 }

 .variant-section {
     margin-bottom: 25px;
 }

 .variant-title {
     font-weight: 600;
     margin-bottom: 10px;
     font-size: 14px;
 }

 .color-options {
     display: flex;
     gap: 10px;
 }

 .color-option {
     width: 60px;
     height: 60px;
     border: 2px solid #e0e0e0;
     border-radius: 8px;
     cursor: pointer;
     overflow: hidden;
 }

 .color-option.active {
     border-color: #000;
 }

 .color-option img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .size-section {
     margin-bottom: 25px;
 }

 .size-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 10px;
 }

 .baru-badge {
     background: #86efac;
     color: #065f46;
     padding: 2px 6px;
     border-radius: 3px;
     font-size: 11px;
     font-weight: 600;
     margin-left: 5px;
 }

 .size-guide {
     color: #059669;
     text-decoration: none;
     font-size: 13px;
 }

 .size-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 8px;
     margin-top: 15px;
 }

 .size-btn {
     padding: 12px;
     border: 1px solid #ddd;
     background: white;
     border-radius: 6px;
     cursor: pointer;
     font-size: 14px;
     transition: all 0.3s;
     position: relative;
 }

 .size-btn.active {
     border-color: #000;
     background: #000;
     color: white;
 }

 .size-btn.stock-low::after {
     content: 'Lagi';
     position: absolute;
     top: -8px;
     right: -8px;
     background: #000;
     color: white;
     padding: 2px 6px;
     border-radius: 3px;
     font-size: 10px;
 }

 .action-buttons {
     display: flex;
     gap: 10px;
     margin-top: 25px;
 }

 .add-to-cart {
     flex: 1;
     padding: 16px;
     background: #000;
     color: white;
     border: none;
     border-radius: 6px;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
 }

 .wishlist-large {
     width: 55px;
     height: 55px;
     border: 1px solid #ddd;
     background: white;
     border-radius: 6px;
     cursor: pointer;
     font-size: 22px;
 }

 .benefits {
     margin-top: 25px;
     padding-top: 25px;
     border-top: 1px solid #e0e0e0;
 }

 .benefit-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 15px;
     margin-top: 15px;
 }

 .benefit-item {
     background: #f9fafb;
     padding: 15px;
     border-radius: 8px;
     text-align: center;
 }

 .accordion-item {
     border-top: 1px solid #e0e0e0;
     margin-top: 20px;
 }

 .accordion-header {
     display: flex;
     justify-content: space-between;
     padding: 20px 0;
     cursor: pointer;
     font-weight: 600;
 }

 .accordion-content {
     padding-bottom: 20px;
     display: none;
 }

 .accordion-content.active {
     display: block;
 }

 .detail-row {
     display: flex;
     padding: 12px 0;
     border-bottom: 1px solid #f0f0f0;
 }

 .detail-label {
     width: 150px;
     color: #666;
     font-size: 14px;
 }

 .mobile-tabs {
     display: none;
     background: white;
     border-bottom: 2px solid #e0e0e0;
     position: sticky;
     top: 61px;
     z-index: 90;
     overflow-x: auto;
 }

 .mobile-tabs-scroll {
     display: flex;
 }

 .mobile-tab {
     padding: 15px 20px;
     border-bottom: 2px solid transparent;
     white-space: nowrap;
     color: #666;
     text-decoration: none;
     font-size: 14px;
 }

 .mobile-tab.active {
     color: #000;
     font-weight: 600;
     border-bottom-color: #000;
 }

 .mobile-bottom-bar {
     display: none;
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     background: white;
     border-top: 1px solid #e0e0e0;
     padding: 12px 20px;
     z-index: 100;
 }

 .mobile-bottom-actions {
     display: flex;
     gap: 12px;
 }

 .mobile-cart-btn {
     flex: 1;
     padding: 14px;
     background: #000;
     color: white;
     border: none;
     border-radius: 6px;
     font-size: 15px;
     font-weight: 600;
 }

 .mobile-wishlist-btn {
     width: 50px;
     height: 50px;
     border: 1px solid #ddd;
     background: white;
     border-radius: 6px;
     font-size: 20px;
 }

 .info-single {
     display: block;
     width: 100%;
     font-size: 14px;
     line-height: 1.7;
     color: #444;
 }


 .action-buttons {
     display: flex;
     gap: 12px;
 }

 /* BUTTON DASAR */
 .brand-btn {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;

     padding: 12px;
     border-radius: 10px;
     background: #000;
     color: #fff;

     font-size: 14px;
     font-weight: 600;
     text-decoration: none;

     transition: background-color 0.25s ease;
 }

 /* Shopee → ORANGE SAAT HOVER */
 .brand-btn.shopee:hover {
     background-color: #ee4d2d;
 }

 /* WhatsApp → HIJAU SAAT HOVER */
 .brand-btn.wa:hover {
     background-color: #25D366;
 }

 /* Cursor tangan */
 .brand-btn:hover {
     cursor: pointer;
 }


 /* 2=============================Produk================================ */


 
 footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    /* max-width: 1400px; */
    margin: 0 auto;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* ✅ Ubah dari "2fr 1fr 1fr 1fr" jadi "2fr 1fr 1fr" */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #d4af37, #f4e5c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    color: #b0b0b0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #808080;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #808080;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}



 /* ==========================footer========================  */


 .category-section {
     background: white;
     padding: 30px;
     /* border-radius: 12px; */
     margin-bottom: 30px;
 }

 .category-grid {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 20px;
 }

 .category-card {
     text-align: center;
     cursor: pointer;
     transition: transform 0.3s;
 }

 .category-card:hover {
     transform: translateY(-5px);
 }

 .category-image {
     width: 100%;
     aspect-ratio: 1;
     object-fit: cover;
     /* border-radius: 12px; */
     background: #f5f5f5;
 }

 .category-name {
     margin-top: 10px;
     font-size: 14px;
     font-weight: 500;
 }







 /* ===========================Produk==============================  */

 .product-section {
     background: white;
     padding: 30px;
     border-radius: 12px;
     margin-bottom: 30px;
     overflow: hidden;
     /* ⬅ tambahkan ini */
 }

 .section-title {
     margin-bottom: 20px;
     font-size: 20px;
     font-weight: 600;
 }

 .product-scroll {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     overflow-y: hidden;
     /* ⬅ tambahkan ini */
     padding: 10px 0 20px 0;
     /* ⬅ tambah padding bawah */
     scrollbar-width: thin;
     /* ⬅ ubah dari none untuk debugging */
     scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
     /* ⬅ scrollbar halus */

     /* Smooth scrolling */
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
     /* ⬅ untuk mobile */
 }

 /* Scrollbar styling untuk Chrome/Safari */
 .product-scroll::-webkit-scrollbar {
     height: 6px;
     /* ⬅ ubah dari display:none */
 }

 .product-scroll::-webkit-scrollbar-track {
     background: transparent;
 }

 .product-scroll::-webkit-scrollbar-thumb {
     background: rgba(0, 0, 0, 0.2);
     border-radius: 10px;
 }

 .product-scroll::-webkit-scrollbar-thumb:hover {
     background: rgba(0, 0, 0, 0.3);
 }

 .product-card {
     min-width: 250px;
     max-width: 250px;
     /* ⬅ PENTING: tambahkan ini */
     flex-shrink: 0;
     /* ⬅ PENTING: mencegah card menyusut */
     background: white;
     border-radius: 12px;
     /* ⬅ lebih rounded */
     overflow: hidden;
     cursor: pointer;
     transition: all 0.3s ease;
     border: 1px solid #e8e8e8;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
     /* ⬅ shadow lembut */
 }

 .product-card:hover {
     transform: translateY(-4px);
     /* ⬅ efek angkat */
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
     border-color: #d0d0d0;
 }

 .product-image {
     width: 100%;
     height: 280px;
     /* ⬅ sesuaikan tinggi */
     object-fit: cover;
     background: #f9f9f9;
     transition: transform 0.3s ease;
 }

 .product-card:hover .product-image {
     transform: scale(1.05);
     /* ⬅ zoom sedikit saat hover */
 }

 .product-info {
     padding: 16px;
 }

 .product-brand {
     font-size: 12px;
     color: #888;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 8px;
     font-weight: 500;
 }

 .product-title {
     font-size: 14px;
     line-height: 1.4;
     margin-bottom: 12px;
     height: 40px;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     color: #333;
 }

 .product-price {
     font-size: 18px;
     font-weight: 700;
     color: #d63031;
     /* ⬅ warna merah lebih elegan */
 }

 .add-to-cart-btn {
     width: 100%;
     padding: 12px;
     margin-top: 14px;
     border: 2px solid #000;
     background: #000;
     /* ⬅ HITAM solid */
     color: white;
     /* ⬅ text putih */
     border-radius: 8px;
     cursor: pointer;
     font-size: 13px;
     font-weight: 600;
     transition: all 0.3s ease;
     letter-spacing: 0.3px;
 }

 .add-to-cart-btn:hover {
     background: white;
     /* ⬅ jadi PUTIH */
     color: #000;
     /* ⬅ text jadi HITAM */
     border-color: #000;
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .add-to-cart-btn:active {
     transform: translateY(0);
 }

 /*  ===========================Produk==============================  */





 /* Style Guide Section */
 .style-guide-section {
     background: white;
     padding: 40px 30px;
     border-radius: 12px;
     margin-bottom: 30px;
 }

 .style-guide-title {
     text-align: center;
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 15px;
 }

 .style-guide-subtitle {
     text-align: center;
     font-size: 16px;
     color: #666;
     margin-bottom: 40px;
 }

 .style-categories-grid {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     gap: 15px;
     margin-bottom: 50px;
 }

 .style-category-item {
     position: relative;
     cursor: pointer;
     /* border-radius: 12px; */
     overflow: hidden;
     height: 200px;
 }

 .style-category-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .style-category-label {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     color: white;
     padding: 15px;
     font-size: 16px;
     font-weight: 600;
 }

 .material-title {
     text-align: center;
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 25px;
 }

 .material-grid {
     display: grid;
     grid-template-columns: repeat(6, 1fr);
     gap: 15px;
 }

 .material-item {
     position: relative;
     cursor: pointer;
     border-radius: 12px;
     overflow: hidden;
     height: 180px;
 }

 .material-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .material-label {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     color: white;
     padding: 15px;
     font-size: 16px;
     font-weight: 600;
 }

 /* =========================== ASLI ===============================  */
 .mobile-category-pills {
     display: none;
     background: white;
     padding: 15px;
     overflow-x: auto;
     white-space: nowrap;
     position: sticky;
     top: 68px;
     z-index: 90;
     border-bottom: 1px solid #e0e0e0;
 }

 /* =========================== ASLI ===============================  */


 /* LATEST JOURNAL */
 .journal-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-top: 30px;
 }

 .journal-card {
     background-color: #fafafa;
     overflow: hidden;
     cursor: pointer;
     transition: transform 0.3s;
     border-radius: 2px;
 }

 .journal-card:hover {
     transform: translateY(-5px);
 }

 .journal-image {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .journal-content {
     padding: 20px;
 }

 .journal-title {
     font-size: 14px;
     font-weight: 600;
     margin-bottom: 10px;
     color: #2c2c2c;
 }

 .journal-description {
     font-size: 12px;
     color: #666;
     line-height: 1.6;
 }



 /* =========================== GPT ===============================  */
 .mobile-dropdown {
     display: inline-block;
     position: relative;
 }

 .mobile-dropdown-menu {
     display: none;
     background: #fff;
     border-radius: 8px;
     margin-top: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }

 .mobile-dropdown-menu a {
     display: block;
     padding: 10px 15px;
     font-size: 13px;
     color: #000;
     text-decoration: none;
 }

 .mobile-dropdown-menu a:hover {
     background: #f2f2f2;
 }

 /* =========================== GPT ===============================  */
 .category-pill {
     display: inline-block;
     padding: 8px 20px;
     background: #f5f5f5;
     /* border-radius: 20px; */
     margin-right: 10px;
     font-size: 13px;
     color: #333;
     text-decoration: none;
 }

 .category-pill.active {
     background: #000;
     color: white;
 }

 .mobile-nav {
     display: none;
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     background: white;
     border-top: 1px solid #e0e0e0;
     padding: 10px 0;
     z-index: 100;
 }

 .mobile-nav-content {
     display: flex;
     justify-content: space-around;
 }

 .mobile-nav-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 4px;
     color: #666;
     text-decoration: none;
     font-size: 11px;
 }

 .mobile-nav-item.active {
     color: #000;
     font-weight: 600;
 }

 .scroll-top {
     position: fixed;
     bottom: 80px;
     right: 20px;
     width: 50px;
     height: 50px;
     background: #333;
     color: white;
     border: none;
     border-radius: 50%;
     cursor: pointer;
     font-size: 20px;
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 99;
 }


 .breadcrumb {
     max-width: 1400px;
     margin: 0 auto;
     padding: 15px 20px;
     font-size: 13px;
     color: #666;
 }

 .breadcrumb a {
     color: #666;
     text-decoration: none;
 }







 /* =============================BATAS BATAS=============================== */










 /* =============================BATAS BATAS=============================== */

 @media (max-width: 768px) {
     .top-banner {
         font-size: 11px;
         padding: 6px 10px;
     }

     .material-section {
         padding: 15px;
     }

     /* Journal Grid - 2 kolom di mobile */
     .journal-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 15px;
     }

     .journal-image {
         height: 150px;
     }

     .journal-content {
         padding: 15px;
     }

     .journal-title {
         font-size: 13px;
     }

     .journal-description {
         font-size: 11px;
     }




     .material-scroll {
         grid-template-columns: repeat(3, 1fr);
         gap: 10px;
     }

     .material-name {
         font-size: 11px;
     }

     .header-content {
         flex-wrap: wrap;
     }

     .logo {
         font-size: 20px;
     }

     .search-container {
         order: 3;
         width: 100%;
         max-width: 100%;
         margin-top: 10px;
     }

     .header-actions span {
         display: none;
     }

     nav {
         display: none;
     }

     .mobile-category-pills {
         display: block;
     }

     .container {
         padding: 10px;
         padding-bottom: 40px;
     }

     .hero-slide img {
         height: 300px;
     }

     .timer-badge {
         font-size: 12px;
         padding: 8px 12px;
     }

     .section-title {
         font-size: 18px;
         text-align: left;
         justify-content: flex-start;
     }

     .brand-categories,
     .category-section,
     .product-section,
     .style-guide-section {
         padding: 20px 15px;
     }

     .category-grid {
         grid-template-columns: repeat(3, 1fr);
         gap: 15px;
     }

     .category-name {
         font-size: 12px;
     }

     .product-card {
         min-width: 180px;
     }

     .mobile-nav {
         display: block;
     }

     .scroll-top {
         bottom: 70px;
         right: 15px;
     }

     .style-categories-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .style-category-item {
         height: 150px;
     }

     .material-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .material-item {
         height: 120px;
     }

     .style-guide-title {
         font-size: 22px;
     }

     .material-title {
         font-size: 18px;
     }

     .product-container {
         grid-template-columns: 1fr;
         gap: 0;
         padding: 0;
         padding-bottom: 80px;
     }

     .image-gallery {
         display: none;
     }

     .mobile-gallery {
         display: block;
     }

     .mobile-tabs {
         display: block;
     }

     .product-info {
         position: static;
         padding: 20px;
     }

     .size-grid {
         grid-template-columns: repeat(4, 1fr);
     }

     .benefit-grid {
         grid-template-columns: 1fr;
     }

     .action-buttons {
         display: none;
     }

     .mobile-bottom-bar {
         display: block;
     }

     /* MOBILE */
     @media (max-width: 768px) {
         .brand-item {
             min-width: 72px;
             /* 5 item muat */
         }

         .brand-circle {
             width: 60px;
             height: 60px;
             font-size: 11px;
         }

         .brand-name {
             font-size: 10px;
             line-height: 1.2;
         }

         .brand-categories {
             padding: 15px;
         }

         nav,
         .breadcrumb {
             display: none;
         }

     }

     @media (max-width: 768px) {
         footer {
             display: none;
         }
     }
 }