/* ========================================
   STYLE.CSS - Main Stylesheet
   ======================================== */

/* ========== PREVENT OVERFLOW ========== */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    -webkit-tap-highlight-color: transparent;
}

a, button, .product-card, input, textarea, select {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

a:focus-visible, button:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 2px;
}

/* ========== RESET & BASE ========== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #111111;
    background: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== LOADER ========== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    animation: fadeOutLoader 0.5s ease 1.2s forwards;
}

@keyframes fadeOutLoader {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: none;
    }
}

#loader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #E5E5E5;
    border-top-color: #D4AF37;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #D4AF37;
    margin: 10px auto 0;
    border-radius: 2px;
}

.section {
    padding: 60px 0;
    overflow: hidden;
}

.section:first-of-type {
    padding-top: 40px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #111111;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #111111;
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 24px;
    font-size: 0.8rem;
    border-radius: 30px;
}

/* ========== NAVIGATION ========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: #111111;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

#navbar.scrolled {
    background: #111111;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    padding: 12px 0;
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: all 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icons a:hover {
    color: #D4AF37;
}

.nav-svg-icon {
    width: 21px;
    height: 21px;
    display: block;
}

.user-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.nav-user-avatar,
.nav-user-initial {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.nav-user-avatar {
    display: block;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, .65);
}

.nav-user-initial {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #F2DA8D, #B68B20);
    color: #111;
    font-size: .82rem;
    font-weight: 700;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .12);
}

.notification-icon[hidden] { display: none; }

.navbar-notification-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    border: 2px solid #111;
    border-radius: 999px;
    background: #D93025;
    color: #fff;
    font-size: .58rem;
    font-weight: 700;
    line-height: 1;
    box-sizing: border-box;
}

.navbar-notification-badge[hidden] { display: none; }

.cart-count,
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #D4AF37;
    color: #111111;
    font-size: 0.6rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #111111;
    padding: 80px 30px 60px;
    transition: right 0.4s ease;
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #FFFFFF;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu ul a:hover {
    color: #D4AF37;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: calc(100vh - 80px);
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1445205170230-053b83016050?w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    margin-top: 0;
}

.hero::after {
    display: none;
}

.hero-content {
    max-width: 700px;
    padding: 20px;
    animation: fadeUp 1s ease forwards;
    position: relative;
    z-index: 2;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.hero-sub {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== CATEGORIES ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
    background: rgba(0,0,0,0.6);
}

.category-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.category-card .btn-small {
    background: #FFFFFF;
    color: #111111;
    padding: 8px 24px;
}

.category-card .btn-small:hover {
    background: #D4AF37;
    color: #FFFFFF;
}

/* ========== PRODUCT CARD ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* ========== IMAGE CAROUSEL ========== */
.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #F8F8F8;
}

.product-image .image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image .image-carousel .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    transform: scale(1.02);
}

.product-image .image-carousel .carousel-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Brand Badge */
.product-image .brand-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 5;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
}

.trending-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #111, #3A2B00);
    color: #F4D66D;
    box-shadow: 0 5px 16px rgba(0,0,0,.2);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .3px;
}
.trending-badge i { color: #FF8A3D; }
.product-card:hover .trending-badge { transform: translateY(-48px); transition: transform .3s ease; }

@media (hover: none) {
    .product-card:hover .trending-badge { transform: none; }
}

/* Image Navigation Dots */
.product-image .image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-image .image-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-image .image-dots .dot.active {
    background: #D4AF37;
    transform: scale(1.3);
}

.product-image .image-dots .dot:hover {
    background: #D4AF37;
    transform: scale(1.2);
}

/* Product Actions */
.product-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 15;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-actions button {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-actions .add-cart {
    background: #111111;
    color: #FFFFFF;
    flex: 1;
    justify-content: center;
}

.product-actions .add-cart:hover {
    background: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.product-actions .wishlist-btn {
    background: #F8F8F8;
    color: #111111;
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.product-actions .wishlist-btn:hover {
    background: #E74C3C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.product-actions .quick-view {
    background: #F8F8F8;
    color: #111111;
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.product-actions .quick-view:hover {
    background: #D4AF37;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

/* Product Info */
.product-info {
    padding: 18px 20px 20px;
}

.product-info .product-brand {
    font-size: 0.75rem;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.product-info .product-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #111111;
    font-family: 'Poppins', sans-serif;
}

.product-info .product-category {
    font-size: 0.8rem;
    color: #777777;
    margin-bottom: 8px;
}

.product-info .product-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: #111111;
}

.product-info .product-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 300;
    margin-left: 8px;
    font-size: 0.9rem;
}

.product-info .product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.product-info .product-rating .stars {
    color: #D4AF37;
    display: inline-flex;
    gap: 2px;
}

.luxe-star-icon { width: 14px; height: 14px; display: inline-block; }
.luxe-rating-icons { display: inline-flex; gap: 2px; color: var(--accent); }
.about-rating-metric { display: inline-flex; align-items: center; justify-content: center; gap: 5px; }

.notification-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: min(380px, calc(100vw - 32px));
    padding: 13px 18px;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .84rem;
    font-weight: 400;
    line-height: 1.45;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
    animation: slideIn .3s ease;
}

.notification-toast-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, .14);
    color: #E2C45D;
}

.notification-toast-icon .luxe-svg-icon { width: 16px; height: 16px; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-info .product-rating .rating-count {
    color: #999;
    font-size: 0.75rem;
}

/* ========== FEATURES ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.feature p {
    color: #777777;
    font-size: 0.9rem;
}

/* ========== REVIEWS ========== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #F8F8F8;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.review-card i {
    color: #D4AF37;
    margin: 0 2px;
}

.review-card p {
    margin: 15px 0;
    font-style: italic;
    color: #555;
}

.review-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #111111;
}

/* ========== INSTAGRAM ========== */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.insta-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.insta-grid img:hover {
    transform: scale(1.03);
}

/* ========== LUXURY BANNER ========== */
.luxury-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.luxury-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.luxury-content p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* ========== NEWSLETTER ========== */
.newsletter-box {
    background: #F8F8F8;
    padding: 60px;
    border-radius: 16px;
    text-align: center;
}

.newsletter-box h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.newsletter-box p {
    color: #777777;
    margin-bottom: 25px;
}

.newsletter-box form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-box input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-box input:focus {
    outline: none;
    border-color: #D4AF37;
}

/* ========== FOOTER ========== */
footer {
    background: #111111;
    color: #FFFFFF;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-col p {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #D4AF37;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    color: #FFFFFF;
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #111111;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #D4AF37;
    transform: translateY(-3px);
}

/* ============================================================
   ========== RESPONSIVE ==========
   ============================================================ */

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .hero {
        min-height: calc(100vh - 80px);
        padding: 30px 0;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .section {
        padding: 50px 0;
    }
    .section:first-of-type {
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    #navbar {
        height: 70px;
        padding: 12px 0;
    }
    
    #navbar.scrolled {
        height: 60px;
        padding: 10px 0;
    }
    
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero {
        min-height: calc(100vh - 70px);
        padding: 20px 0;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-image {
        height: 250px;
    }
    .category-grid {
        gap: 15px;
    }
    .category-card {
        height: 250px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .review-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .insta-grid img {
        height: 150px;
    }
    .newsletter-box form {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    .social-icons {
        justify-content: center;
    }
    .section {
        padding: 40px 0;
    }
    .section:first-of-type {
        padding-top: 20px;
    }
    .newsletter-box {
        padding: 30px 20px;
    }
    .mobile-menu {
        padding-top: 70px;
    }
    .product-image .image-dots {
        bottom: 8px;
        padding: 4px 10px;
        gap: 5px;
    }
    .product-image .image-dots .dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 60px;
    }
    
    #navbar {
        height: 60px;
        padding: 10px 0;
    }
    
    #navbar.scrolled {
        height: 55px;
        padding: 8px 0;
    }
    
    .hero {
        min-height: calc(100vh - 60px);
        padding: 15px 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-sub {
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    .category-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        height: 220px;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .product-image {
        height: 200px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .review-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .review-card {
        padding: 20px;
    }
    .insta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .insta-grid img {
        height: 120px;
    }
    .luxury-content h2 {
        font-size: 2rem;
    }
    .section {
        padding: 30px 0;
    }
    .section:first-of-type {
        padding-top: 15px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .newsletter-box {
        padding: 20px 15px;
    }
    .newsletter-box h2 {
        font-size: 1.5rem;
    }
    .mobile-menu {
        padding-top: 60px;
    }
    .product-image .image-dots {
        bottom: 6px;
        padding: 3px 8px;
        gap: 4px;
    }
    .product-image .image-dots .dot {
        width: 5px;
        height: 5px;
    }
    .product-actions {
        padding: 8px 10px !important;
        gap: 4px !important;
        bottom: -45px !important;
    }
    .product-actions button {
        padding: 4px 8px !important;
        font-size: 0.6rem !important;
    }
    .product-actions .add-cart i {
        font-size: 0.6rem !important;
    }
    .product-actions .wishlist-btn,
    .product-actions .quick-view {
        width: 28px !important;
        height: 28px !important;
    }
    .product-actions .wishlist-btn i,
    .product-actions .quick-view i {
        font-size: 0.6rem !important;
    }
}

@media (max-width: 375px) {
    .hero {
        min-height: calc(100vh - 60px);
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-sub {
        font-size: 0.8rem;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .product-image {
        height: 150px;
    }
    .product-info {
        padding: 8px 10px 12px;
    }
    .product-info .product-name {
        font-size: 0.8rem;
    }
    .product-info .product-price {
        font-size: 0.9rem;
    }
    .section {
        padding: 20px 0;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .category-card {
        height: 180px;
    }
    .product-image .image-dots {
        bottom: 4px;
        padding: 2px 6px;
        gap: 3px;
    }
    .product-image .image-dots .dot {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 320px) {
    body {
        padding-top: 55px;
    }
    
    #navbar {
        height: 55px;
        padding: 8px 0;
    }
    
    .hero {
        min-height: calc(100vh - 55px);
        padding: 10px 0;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-sub {
        font-size: 0.7rem;
    }
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .product-image {
        height: 130px;
    }
    .product-info .product-name {
        font-size: 0.7rem;
    }
    .product-info .product-price {
        font-size: 0.8rem;
    }
    .section {
        padding: 15px 0;
    }
    .section-title {
        font-size: 1.1rem;
    }
}




/* ========== IMAGE CAROUSEL ========== */
.product-image .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image .carousel-container .carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
    opacity: 0;
}

.product-image .carousel-container .carousel-img.active {
    opacity: 1;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(0,0,0,0.4);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .carousel-dots {
    opacity: 1;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: #D4AF37;
    transform: scale(1.3);
}

.carousel-dots .dot:hover {
    background: #D4AF37;
}
