﻿/* ============================================
   CHANDINI COLLECTIONS - Premium Luxury CSS
   ============================================ */

/* === CSS Variables === */
:root {
    --cream: #F8F5EF;
    --ivory: #FFFDF8;
    --gold: #C8A45D;
    --gold-light: #D4B76A;
    --gold-dark: #A88B42;
    --teal: #184A54;
    --teal-dark: #123840;
    --teal-light: #1E5A66;
    --emerald: #2D6A4F;
    --beige: #F0E6D3;
    --charcoal: #2D2D2D;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(200,164,93,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sub: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', 'Lato', sans-serif;
    --header-height: 80px;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --cream: #1a1a2e;
    --ivory: #16213e;
    --white: #1a1a2e;
    --gray-100: #1a1a2e;
    --gray-200: #2a2a3e;
    --gray-300: #3a3a4e;
    --charcoal: #e0e0e0;
    --beige: #2a2a3e;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[data-theme="dark"] body {
    background-color: #0f0f23;
    color: #e0e0e0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo img {
    height: 80px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.preloader-brand {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
}

.preloader-spinner {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.spinner-ring {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    animation: preloaderBounce 1.4s infinite ease-in-out both;
}

.spinner-ring:nth-child(1) { animation-delay: -0.32s; }
.spinner-ring:nth-child(2) { animation-delay: -0.16s; }
.spinner-ring:nth-child(3) { animation-delay: 0s; }

@keyframes preloaderBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.preloader-tagline {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-sub);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === Top Bar === */
.top-bar {
    background: var(--teal-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span, .top-bar-right > span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i, .top-bar-right > span i {
    color: var(--gold);
    font-size: 0.75rem;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.top-bar-right {
    justify-content: flex-end;
}

/* === Header === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 245, 239, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,164,93,0.15);
    transition: var(--transition);
    height: var(--header-height);
}

[data-theme="dark"] .header {
    background: rgba(15, 15, 35, 0.95);
    border-bottom-color: rgba(200,164,93,0.1);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header .navbar {
    padding: 0;
    height: var(--header-height);
    transition: var(--transition);
}

.header.scrolled .navbar {
    height: 70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .header-logo {
    height: 45px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--teal);
    font-weight: 700;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.nav-icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--charcoal);
    font-size: 1.05rem;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

[data-theme="dark"] .nav-icon-btn {
    color: #e0e0e0;
}

.nav-icon-btn:hover {
    color: var(--gold);
    background: rgba(200,164,93,0.1);
}

.badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-right: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Navigation === */
.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 8px 14px;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition);
}

[data-theme="dark"] .navbar-nav .nav-link {
    color: #d0d0d0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.highlight-link {
    color: var(--gold) !important;
    font-weight: 600 !important;
}

.highlight-link::after {
    display: none !important;
}

/* Mega Dropdown */
.mega-dropdown {
    border: none;
    border-radius: var(--radius-md);
    padding: 30px;
    min-width: 700px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(200,164,93,0.15);
    margin-top: 10px;
}

[data-theme="dark"] .mega-dropdown {
    background: #1a1a2e;
    border-color: rgba(200,164,93,0.1);
}

.dropdown-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(200,164,93,0.2);
}

.dropdown-item {
    font-size: 0.85rem;
    padding: 6px 0;
    color: var(--gray-600);
    transition: var(--transition);
}

.dropdown-item:hover {
    color: var(--gold);
    background: transparent;
    padding-left: 8px;
}

.dropdown-mega-img {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.dropdown-mega-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

[data-theme="dark"] .search-overlay {
    background: #1a1a2e;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.2rem;
    font-family: var(--font-body);
    background: transparent;
    color: var(--charcoal);
}

[data-theme="dark"] .search-input {
    color: #e0e0e0;
}

.search-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.search-close:hover {
    color: var(--gold);
}

.search-suggestions {
    margin-top: 15px;
}

.search-suggestions p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    padding: 6px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-600);
    transition: var(--transition);
}

.search-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,164,93,0.05);
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    transition: var(--transition-slow);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .mobile-menu {
    background: #0f0f23;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-logo {
    height: 45px;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--charcoal);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    padding: 10px 0;
}

.mobile-nav-list li a {
    display: block;
    padding: 14px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    color: var(--gold);
    background: rgba(200,164,93,0.05);
    padding-left: 35px;
}

.mobile-nav-list li.has-sub > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-menu {
    list-style: none;
    display: none;
    background: var(--gray-100);
}

.sub-menu.active {
    display: block;
}

.sub-menu li a {
    padding: 12px 40px;
    font-size: 0.9rem;
    border-bottom-color: var(--gray-300);
}

.mobile-menu-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--gold);
    font-weight: 500;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* === Hero Section === */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24,74,84,0.85) 0%, rgba(18,56,64,0.7) 40%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 80px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-prev, .hero-next {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.hero-prev:hover, .hero-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/* === Buttons === */
.btn-luxury {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transition: var(--transition);
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200,164,93,0.4);
    color: var(--white);
}

.btn-luxury:hover::before {
    left: 0;
}

.btn-luxury span,
.btn-luxury {
    position: relative;
    z-index: 1;
}

.btn-luxury-outline {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-luxury-outline:hover {
    background: var(--white);
    color: var(--teal);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* === Marquee === */
.marquee-strip {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 12px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.marquee-content i {
    font-size: 0.65rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Section Styles === */
.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

[data-theme="dark"] .section-title {
    color: #e0e0e0;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.section-divider span {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.section-divider i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* === Categories === */
.section-categories {
    padding: 100px 0;
    background: var(--cream);
}

[data-theme="dark"] .section-categories {
    background: #0f0f23;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.category-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover .category-img img {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 15px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: var(--white);
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    transform: translateY(0);
    opacity: 1;
}

.category-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--white);
}

.btn-category {
    display: inline-block;
    padding: 6px 20px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-category:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    color: var(--white);
}

/* === Featured Products === */
.section-featured {
    padding: 100px 0;
    background: var(--white);
}

[data-theme="dark"] .section-featured {
    background: #12122a;
}

.featured-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.featured-tab {
    padding: 10px 28px;
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--gray-600);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

[data-theme="dark"] .featured-tab {
    border-color: var(--gray-700);
    color: var(--gray-500);
}

.featured-tab.active,
.featured-tab:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* === Product Card === */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-200);
}

[data-theme="dark"] .product-card {
    background: #1a1a2e;
    border-color: rgba(200,164,93,0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 2;
}

.product-badge.new {
    background: var(--emerald);
}

.product-badge.sale {
    background: #dc3545;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    color: var(--charcoal);
}

.product-action-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.product-action-btn.wishlisted {
    background: #dc3545;
    color: var(--white);
}

.product-info {
    padding: 18px;
}

.product-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

[data-theme="dark"] .product-name {
    color: #e0e0e0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.product-rating i {
    color: var(--gold);
    font-size: 0.75rem;
}

.product-rating span {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal);
}

[data-theme="dark"] .price-current {
    color: var(--gold);
}

.price-old {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.75rem;
    color: #dc3545;
    font-weight: 600;
}

.product-btns {
    display: flex;
    gap: 8px;
}

.product-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-block;
}

.product-btn.add-cart {
    background: var(--teal);
    color: var(--white);
}

.product-btn.add-cart:hover {
    background: var(--teal-light);
}

.product-btn.buy-now {
    background: var(--gold);
    color: var(--white);
}

.product-btn.buy-now:hover {
    background: var(--gold-light);
}

/* === Occasion Section === */
.section-occasion {
    padding: 100px 0;
    background: var(--cream);
}

[data-theme="dark"] .section-occasion {
    background: #0f0f23;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.occasion-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.occasion-img {
    position: relative;
    aspect-ratio: 3/2;
}

.occasion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.occasion-card:hover .occasion-img img {
    transform: scale(1.1);
}

.occasion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 25px 25px;
    background: linear-gradient(to top, rgba(24,74,84,0.95), transparent);
    color: var(--white);
    transition: var(--transition);
}

.occasion-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--white);
}

.occasion-overlay p {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 15px;
}

/* === Special Offer === */
.section-offer {
    padding: 0;
}

.offer-parallax {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24,74,84,0.92), rgba(18,56,64,0.85));
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.offer-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.offer-title span {
    color: var(--gold);
}

.offer-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

.offer-desc strong {
    color: var(--gold);
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    gap: 20px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    width: 75px;
    height: 75px;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 71px;
    backdrop-filter: blur(5px);
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.offer-images {
    position: relative;
    height: 500px;
}

.offer-img-1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: floatUp 6s ease-in-out infinite;
}

.offer-img-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: floatUp 6s ease-in-out infinite 1s;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* === Price Section === */
.section-price {
    padding: 100px 0;
    background: var(--white);
}

[data-theme="dark"] .section-price {
    background: #12122a;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.price-card {
    text-align: center;
    padding: 40px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

[data-theme="dark"] .price-card {
    background: #1a1a2e;
    border-color: rgba(200,164,93,0.1);
}

.price-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.price-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(200,164,93,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.price-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.price-card:hover .price-icon {
    background: var(--gold);
}

.price-card:hover .price-icon i {
    color: var(--white);
}

.price-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--charcoal);
}

[data-theme="dark"] .price-card h3 {
    color: #e0e0e0;
}

.price-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.price-arrow {
    color: var(--gold);
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-10px);
}

.price-card:hover .price-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* === Why Choose Us === */
.section-why {
    padding: 100px 0;
    background: var(--cream);
}

[data-theme="dark"] .section-why {
    background: #0f0f23;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

[data-theme="dark"] .why-card {
    background: #1a1a2e;
    border-color: rgba(200,164,93,0.1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.why-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,164,93,0.1), rgba(200,164,93,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

[data-theme="dark"] .why-card h4 {
    color: #e0e0e0;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* === Parallax Banner === */
.section-parallax {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24,74,84,0.9), rgba(200,164,93,0.85));
}

.parallax-title {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.parallax-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

/* === About Section === */
.section-about {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

[data-theme="dark"] .section-about {
    background: #12122a;
}

.about-images {
    position: relative;
    padding: 40px;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .about-img-accent {
    border-color: #1a1a2e;
}

.about-img-accent img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    line-height: 1.3;
    margin-top: 5px;
}

.about-content .section-tag {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

[data-theme="dark"] .about-stats {
    border-top-color: rgba(200,164,93,0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* === Testimonials === */
.section-testimonials {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

[data-theme="dark"] .section-testimonials {
    background: #0f0f23;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(25% - 23px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    flex-shrink: 0;
    transition: var(--transition);
}

[data-theme="dark"] .testimonial-card {
    background: #1a1a2e;
    border-color: rgba(200,164,93,0.1);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author h5 {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

[data-theme="dark"] .testimonial-author h5 {
    color: #e0e0e0;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.test-prev, .test-next {
    width: 48px;
    height: 48px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

[data-theme="dark"] .test-prev,
[data-theme="dark"] .test-next {
    background: #1a1a2e;
    border-color: rgba(200,164,93,0.2);
    color: #e0e0e0;
}

.test-prev:hover, .test-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* === Instagram === */
.section-instagram {
    padding: 80px 0 0;
    background: var(--white);
}

[data-theme="dark"] .section-instagram {
    background: #12122a;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin-top: 40px;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(200,164,93,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-overlay i {
    color: var(--white);
    font-size: 1.8rem;
}

.instagram-item:hover img {
    transform: scale(1.15);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* === Newsletter === */
.section-newsletter {
    padding: 0;
}

.newsletter-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.newsletter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24,74,84,0.93), rgba(200,164,93,0.88));
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.newsletter-subtitle {
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    font-size: 1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.newsletter-input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: transparent;
    color: var(--charcoal);
}

.newsletter-btn {
    border-radius: 0 50px 50px 0 !important;
    padding: 16px 30px !important;
}

/* === FAQ === */
.section-faq {
    padding: 100px 0;
    background: var(--cream);
}

[data-theme="dark"] .section-faq {
    background: #0f0f23;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

[data-theme="dark"] .faq-item {
    background: #1a1a2e;
    border-color: rgba(200,164,93,0.1);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: var(--transition);
}

[data-theme="dark"] .faq-question {
    color: #e0e0e0;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 0.85rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* === Contact Section === */
.section-contact {
    padding: 100px 0;
    background: var(--white);
}

[data-theme="dark"] .section-contact {
    background: #12122a;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,164,93,0.1), rgba(200,164,93,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--gold);
}

.contact-item:hover .contact-icon {
    background: var(--gold);
}

.contact-item:hover .contact-icon i {
    color: var(--white);
}

.contact-item h5 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--charcoal);
}

[data-theme="dark"] .contact-item h5 {
    color: #e0e0e0;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}

[data-theme="dark"] .contact-form label {
    color: #d0d0d0;
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--charcoal);
}

[data-theme="dark"] .contact-form .form-control {
    background: #1a1a2e;
    border-color: rgba(200,164,93,0.2);
    color: #e0e0e0;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,164,93,0.15);
    outline: none;
}

/* === Footer === */
.site-footer {
    background: var(--teal-dark);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-payments {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.footer-payments img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payments img:hover {
    opacity: 1;
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* === Quick View Modal === */
.quickview-modal .modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.quickview-modal .modal-body {
    padding: 0;
}

.quickview-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.quickview-main-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.quickview-info {
    padding: 35px;
}

.quickview-info .product-tag {
    font-size: 0.75rem;
}

.quickview-info .product-name {
    font-size: 1.5rem;
    -webkit-line-clamp: unset;
}

.quickview-info .product-desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-colors {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-colors span {
    font-size: 0.88rem;
    font-weight: 600;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-swatch.active,
.color-swatch:hover {
    border-color: var(--gold);
    transform: scale(1.1);
}

.product-qty {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-qty span {
    font-size: 0.88rem;
    font-weight: 600;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--charcoal);
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.qty-control input {
    width: 50px;
    text-align: center;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.quickview-btns {
    display: flex;
    gap: 12px;
}

.quickview-btns .btn-luxury,
.quickview-btns .btn-luxury-outline {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
}

.quickview-btns .btn-luxury-outline {
    color: var(--teal);
    border-color: var(--teal);
}

.quickview-btns .btn-luxury-outline:hover {
    background: var(--teal);
    color: var(--white);
}

/* === Animations === */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* === Responsive === */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .top-bar-left span:nth-child(2),
    .top-bar-right > span {
        display: none !important;
    }

    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        min-width: calc(50% - 15px);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .parallax-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .offer-images {
        display: none;
    }

    .navbar-collapse {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .top-bar {
        text-align: center;
    }

    .top-bar-left {
        justify-content: center;
    }

    .top-bar-right {
        justify-content: center;
    }

    .hero-section {
        height: 60vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding-left: 40px;
    }

    .hero-subtitle::before {
        width: 25px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .occasion-grid {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: calc(100% - 0px);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .parallax-title {
        font-size: 1.8rem;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

    .newsletter-btn {
        border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
    }

    .offer-title {
        font-size: 2rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-number {
        width: 60px;
        height: 60px;
        line-height: 56px;
        font-size: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .footer-payments {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .back-to-top {
        right: 80px;
        bottom: 20px;
        width: 42px;
        height: 42px;
    }

    .featured-tabs {
        gap: 5px;
    }

    .featured-tab {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 55vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

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

    .price-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quickview-btns {
        flex-direction: column;
    }
}

/* === Scrollbar Styling === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* === Selection === */
::selection {
    background: var(--gold);
    color: var(--white);
}

/* === Utility Classes === */
.gold-text { color: var(--gold); }
.teal-text { color: var(--teal); }
.mb-0 { margin-bottom: 0 !important; }
.mt-5 { margin-top: 3rem !important; }
.text-center { text-align: center; }
