/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors - Elegant Teal Theme */
    --primary-gradient: linear-gradient(135deg, #082B27 0%, #0a3d38 50%, #072724 100%);
    --primary-color: #082B27;
    --primary-dark: #06201F;
    --primary-light: #0a3d38;

    /* Accent Colors */
    --accent-gold: #d4af37;
    --accent-gold-light: #f5e6a3;
    --accent-rose: #c9a227;
    --accent-magenta: #b8960f;

    /* Background Colors */
    --bg-dark: #06201F;
    --bg-darker: #041615;
    --bg-light: #f5f9f8;
    --bg-cream: #f0f7f6;
    --bg-gradient: linear-gradient(135deg, #082B27 0%, #072724 50%, #06201F 100%);

    /* Text Colors */
    --text-dark: #082B27;
    --text-light: #ffffff;
    --text-muted: #5a7a75;
    --text-gold: #d4af37;

    /* Card Colors */
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-shadow: 0 20px 60px rgba(8, 43, 39, 0.15);
    --card-hover-shadow: 0 30px 80px rgba(8, 43, 39, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Cormorant Garamond', serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.countdown-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff10"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.countdown-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
}

.countdown-content {
    max-width: 800px;
    margin: 0 auto;
}

.countdown-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-logo .logo-icon {
    font-size: 2.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.8;
    }
}

.countdown-logo .brand-name {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}

.countdown-tagline {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.countdown-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.countdown-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 25px 35px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-display);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

.countdown-separator {
    font-size: 3rem;
    color: var(--accent-gold);
    font-weight: 300;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.countdown-footer {
    margin-top: 30px;
}

.launch-date {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.countdown-decorations {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.countdown-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.countdown-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: floatUp 10s linear infinite;
    opacity: 0;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(8, 43, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light) !important;
}

.navbar-brand .brand-icon {
    margin-right: 8px;
}

.navbar-brand .logo-image {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Logo image styling */
.logo-image {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.countdown-logo .logo-image {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid var(--accent-gold);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding-top: 10px;
    min-height: 100vh;
    background: var(--bg-gradient);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(8, 43, 39, 0.5), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(7, 39, 36, 0.4), transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 150px 150px, 200px 200px, 100px 100px;
    animation: heroParticles 20s linear infinite;
}

@keyframes heroParticles {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-usps {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.usp-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.5s backwards;
}

.hero-image {
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-xl);
    z-index: 1;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--primary-gradient);
    border: none;
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a3d38 0%, #082B27 50%, #072724 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.btn-primary-custom:hover {
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(8, 43, 39, 0.4);
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 13px 33px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    border: none;
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

/* ===== SECTION STYLES ===== */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1), rgba(233, 30, 99, 0.1));
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    background: var(--bg-cream);
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    height: 350px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

.category-card.mini {
    height: 280px;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.category-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 10, 31, 0.9), transparent 60%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: var(--text-light);
    z-index: 2;
}

.category-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-count {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

/* ===== COLLECTIONS/PRODUCTS SECTION ===== */
.collections-section {
    background: var(--bg-light);
}

.filters-wrapper {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--text-light);
}

.filter-btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f0f0f0 !important;
    color: #999 !important;
    border-color: #ddd !important;
}

.filter-btn-disabled:hover {
    background: #f0f0f0 !important;
    color: #999 !important;
    transform: none;
}

.sort-wrapper .form-select {
    border-radius: var(--radius-sm);
    border: 1px solid #ddd;
    padding: 10px 15px;
}

/* Product Card */
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    transform: translateX(0);
    transition: var(--transition-normal);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.product-content {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-magenta);
    margin-bottom: 10px;
}

.product-sizes {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Color Display Swatches */
.color-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.color-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.color-swatches {
    display: flex;
    gap: 6px;
}

.color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: inline-block;
    transition: transform 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.15);
    border-color: var(--primary-color);
}

/* Product image transition for color change */
.product-image img {
    transition: filter 0.4s ease, transform var(--transition-slow);
}


.product-enquire-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.product-enquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: none;
}


/* ===== MOM & DAUGHTER SECTION ===== */
.mom-daughter-section {
    background: linear-gradient(135deg, #e8f5f3 0%, #d4edea 100%);
}

.mom-daughter-image {
    position: relative;
}

.mom-daughter-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--accent-magenta);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mom-daughter-content {
    padding-left: 30px;
}

.mom-daughter-content .section-title {
    margin-top: 15px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-list li i {
    color: var(--accent-magenta);
    font-size: 1.2rem;
}

/* ===== PLUS SIZE SECTION ===== */
.plus-size-section {
    background: linear-gradient(135deg, #e0f2f0 0%, #cce8e5 100%);
}

.plus-size-image {
    position: relative;
}

.plus-size-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
}

.plus-size-content {
    padding-right: 30px;
}

.highlight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-card {
    background: var(--card-bg);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.highlight-card i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    background: var(--bg-gradient);
}

.why-us-section .section-badge {
    background: var(--glass-bg);
    color: var(--accent-gold);
}

.why-us-section .section-title {
    color: var(--text-light);
}

.why-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--bg-cream);
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    background: var(--bg-light);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 43, 39, 0.9), rgba(7, 39, 36, 0.85), rgba(212, 175, 55, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.instagram-overlay i {
    font-size: 2rem;
    color: var(--text-light);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* ===== FOOTER CTA SECTION ===== */
.footer-cta-section {
    background: linear-gradient(135deg, #d4edea 0%, #e0f2f0 100%);
}

.cta-card {
    background: var(--card-bg);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--bg-dark);
    padding: 60px 0 10px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== 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(--text-light);
    font-size: 1.8rem;
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    animation: whatsappPulse 2s ease infinite;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--text-light);
    transform: scale(1.1);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    color: var(--text-light);
    transform: translateY(-5px);
}

/* ===== MODAL STYLES ===== */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--bg-gradient);
    border: none;
    padding: 20px 25px;
}

.modal-title {
    font-family: var(--font-display);
    color: var(--text-light);
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-body .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-magenta);
    margin-bottom: 20px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    
    .hero-title {
        font-size: 3rem;
    }

    .countdown-logo .brand-name {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 20px 25px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .mom-daughter-content,
    .plus-size-content {
        padding: 0;
        margin-top: 30px;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section{
        padding-top: 70px;
    }
    .countdown-logo .brand-name {
        font-size: 2rem;
    }

    .countdown-tagline {
        font-size: 1.5rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px 15px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .filter-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .filter-btn {
        flex-shrink: 0;
    }

    .cta-card {
        padding: 40px 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .countdown-logo {
        flex-direction: column;
        gap: 10px;
    }

    .countdown-logo .brand-name {
        font-size: 1.8rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px 10px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .hero-usps {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image {
        height: 250px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 80px;
        right: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* All elements should be visible by default */
.product-item,
.category-card,
.why-card,
.testimonial-card {
    opacity: 1;
}
/* ===== SIZE GUIDE SECTION ===== */
.size-guide-section {
    background: var(--bg-cream);
}

.size-chart-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.size-chart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.size-chart-table thead {
    background: var(--primary-gradient);
}

.size-chart-table thead th {
    color: var(--text-light);
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-chart-table thead th:first-child {
    border-radius: var(--radius-sm) 0 0 0;
}

.size-chart-table thead th:last-child {
    border-radius: 0 var(--radius-sm) 0 0;
}

.size-chart-table tbody tr {
    transition: var(--transition-fast);
}

.size-chart-table tbody tr:nth-child(even) {
    background: rgba(8, 43, 39, 0.03);
}

.size-chart-table tbody tr:hover {
    background: rgba(8, 43, 39, 0.08);
}

.size-chart-table tbody td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    color: var(--text-dark);
}

.size-chart-table tbody td:first-child {
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(8, 43, 39, 0.05);
}

.size-chart-table tbody tr:last-child td {
    border-bottom: none;
}

.size-chart-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius-sm);
}

.size-chart-table tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--radius-sm) 0;
}

.size-guide-tips {
    background: rgba(8, 43, 39, 0.03);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-gold);
}

.size-guide-tips h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.size-guide-tips h5 i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.size-guide-tips ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.size-guide-tips ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
}

.size-guide-tips ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.size-guide-tips ul li strong {
    color: var(--text-dark);
}

.size-guide-tips .text-muted {
    color: var(--text-muted) !important;
}

.size-guide-tips .text-muted i {
    margin-right: 5px;
}

/* Size Guide Responsive */
@media (max-width: 768px) {
    .size-chart-card {
        padding: 20px;
    }

    .size-chart-table thead th,
    .size-chart-table tbody td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .size-guide-tips {
        padding: 15px;
    }

    .size-guide-tips h5 {
        font-size: 1rem;
    }
}