/* TrendNexa - Static Site Styles */
/* Converted from Tailwind CSS to standard CSS */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
============================================ */
:root {
    --pink-500: #ec4899;
    --pink-400: #f472b6;
    --pink-300: #f9a8d4;
    --pink-600: #db2777;
    --pink-100: #fce7f3;
    --pink-50: #fdf2f8;
    
    --black: #000000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --green-500: #22c55e;
    --green-50: #f0fdf4;
    --green-200: #bbf7d0;
    --green-700: #15803d;
    --green-800: #166534;
    
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --red-500: #ef4444;
    --red-700: #b91c1c;
    --emerald-500: #10b981;
    
    --muted-foreground: #71717a;
    --background: #ffffff;
    --foreground: #0a0a0a;
    --secondary-bg: #fdf2f8;
}

/* ============================================
   RESET & BASE STYLES
============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
============================================ */
.font-heading {
    font-family: 'Playfair Display', serif;
}

.font-body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ============================================
   LAYOUT UTILITIES
============================================ */
.section-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .section-container {
        padding: 0 3rem;
    }
}

.section-spacing {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-spacing {
        padding: 6rem 0;
    }
}

/* ============================================
   NAVIGATION
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .navbar-inner {
        height: 5rem;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pink-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--pink-600);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon-btn {
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.nav-icon-btn:hover {
    color: var(--pink-600);
}

.nav-icon-btn.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .nav-icon-btn.hidden-mobile {
        display: block;
    }
}

/* Cart Badge */
.cart-btn-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--pink-500);
    color: white;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1rem 0;
}

.mobile-nav.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.mobile-nav a:hover {
    background-color: var(--gray-50);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .logo-text {
        font-size: 1.875rem;
    }
}

.logo-text .accent {
    color: var(--pink-500);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 672px;
}

.hero-tag {
    color: var(--pink-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Trust Strip */
.trust-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 1rem 0;
}

.trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .trust-strip-inner {
        justify-content: space-between;
        gap: 2rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pink-500);
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    padding: 1rem 2rem;
}

.btn-pink {
    background-color: var(--pink-500);
    color: var(--white);
}

.btn-pink:hover {
    background-color: var(--pink-600);
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gray-800);
}

.btn-secondary {
    background-color: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* ============================================
   SHOP BY STYLE SECTION
============================================ */
.shop-by-style {
    position: relative;
    background-color: var(--white);
}

.noise-overlay {
    position: relative;
}

.noise-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    color: var(--pink-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    grid-auto-rows: 200px;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
    }
}

.bento-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.bento-item:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
}

.bento-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.bento-item.large .bento-content {
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.bento-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.bento-item.large .bento-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .bento-item.large .bento-title {
        font-size: 1.875rem;
    }
}

.bento-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-item:hover .bento-cta {
    opacity: 1;
}

.bento-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--pink-500);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   PRODUCT GRID & CARDS
============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    position: relative;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--gray-100);
    margin-bottom: 1rem;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-tags {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tag-trending {
    background-color: var(--pink-500);
    color: var(--white);
}

.tag-bestseller {
    background-color: var(--black);
    color: var(--white);
}

.tag-new {
    background-color: var(--emerald-500);
    color: var(--white);
}

.tag-limited {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background-color: var(--amber-500);
    color: var(--white);
}

.product-discount {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background-color: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

.product-actions {
    position: absolute;
    inset-x: 0;
    bottom: 0;
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: all 0.3s ease;
}

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

.product-actions .btn-add-cart {
    flex: 1;
    background-color: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.product-actions .btn-add-cart:hover {
    background-color: var(--gray-800);
}

.product-actions .btn-quick-view {
    background-color: var(--white);
    border: 1px solid var(--black);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-actions .btn-quick-view:hover {
    background-color: var(--black);
    color: var(--white);
}

.product-info {
    space-y: 0.25rem;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .product-name {
        font-size: 1rem;
    }
}

.product-card:hover .product-name {
    color: var(--pink-600);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-current {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pink-600);
}

.price-original {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

/* ============================================
   NEW ARRIVALS SECTION
============================================ */
.section-header-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header-flex {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--pink-600);
}

/* ============================================
   TRENDING COLLECTION SECTION
============================================ */
.trending-section {
    background-color: rgba(253, 242, 248, 0.3);
}

.trending-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.trending-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.trending-images .col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trending-images .col:last-child {
    padding-top: 2rem;
}

.trending-img-wrapper {
    overflow: hidden;
}

.trending-img-wrapper.tall {
    aspect-ratio: 3 / 4;
}

.trending-img-wrapper.square {
    aspect-ratio: 1;
}

.trending-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-content {
    padding-left: 0;
}

@media (min-width: 768px) {
    .trending-content {
        padding-left: 2rem;
    }
}

.trending-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-600);
    margin-bottom: 1rem;
}

.trending-tag svg {
    fill: currentColor;
}

.trending-tag span {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
}

.trending-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .trending-title {
        font-size: 3rem;
    }
}

.trending-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.trending-list {
    margin-bottom: 2rem;
}

.trending-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.trending-list .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--pink-500);
    border-radius: 50%;
}

/* ============================================
   STYLE INSPIRATION SECTION
============================================ */
.look-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .look-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.look-card {
    position: relative;
}

.look-image-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 1rem;
}

.look-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.look-card:hover .look-image-wrapper img {
    transform: scale(1.05);
}

.look-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.look-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
}

.look-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.look-items {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.look-items li {
    margin-bottom: 0.25rem;
}

.look-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.look-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
}

.look-btn {
    background-color: var(--white);
    color: var(--black);
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.look-btn:hover {
    background-color: var(--pink-500);
    color: var(--white);
}

/* ============================================
   CUSTOMER LOVE / TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    background-color: rgba(253, 242, 248, 0.3);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-card {
    background-color: var(--white);
    padding: 1.5rem;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    color: var(--pink-100);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    fill: var(--pink-500);
    color: var(--pink-500);
}

.testimonial-review {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Stats Row */
.stats-row {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-600);
}

.stat-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ============================================
   LIMITED OFFER SECTION
============================================ */
.limited-offer-section {
    padding: 4rem 0;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--pink-500);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.offer-badge svg {
    width: 1rem;
    height: 1rem;
}

.offer-badge span {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .offer-title {
        font-size: 3.75rem;
    }
}

.offer-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.offer-delivery svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pink-400);
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 1rem 1.5rem;
    min-width: 80px;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .countdown-number {
        font-size: 2.5rem;
    }
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.offer-code {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.offer-code span {
    color: var(--pink-400);
    font-weight: 600;
}

/* ============================================
   INSTAGRAM SECTION
============================================ */
.instagram-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-600);
    margin-bottom: 1rem;
}

.instagram-header svg {
    width: 1.25rem;
    height: 1.25rem;
}

.instagram-header span {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
}

.instagram-description {
    color: var(--muted-foreground);
    margin-top: 1rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

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

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.instagram-item:hover .instagram-item-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.instagram-item-overlay svg {
    width: 2rem;
    height: 2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ============================================
   HOW IT WORKS SECTION
============================================ */
.how-it-works-section {
    background-color: rgba(250, 250, 250, 0.5);
}

.steps-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

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

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--pink-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--pink-600);
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background-color: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--muted-foreground);
}

/* ============================================
   LEAD CAPTURE / NEWSLETTER SECTION
============================================ */
.lead-capture-section {
    background-color: rgba(253, 242, 248, 0.5);
}

.lead-capture-content {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.lead-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--pink-100);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.lead-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--pink-600);
}

.lead-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .lead-title {
        font-size: 3rem;
    }
}

.lead-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lead-form {
        flex-direction: row;
    }
}

.lead-form input {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--pink-500);
}

.lead-disclaimer {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 1.5rem;
}

/* Success Message */
.lead-success {
    background-color: var(--white);
    padding: 2rem;
    text-align: center;
}

.lead-success svg {
    width: 3rem;
    height: 3rem;
    color: var(--green-500);
    margin: 0 auto 1rem;
}

.lead-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lead-success p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.discount-code-box {
    display: inline-block;
    background-color: var(--pink-50);
    border: 2px dashed var(--pink-300);
    padding: 1rem;
}

.discount-code {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-600);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 20rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact-item a {
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--pink-400);
}

.footer-contact-item .sub-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--pink-500);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-column h3 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-payments img {
    height: 1.5rem;
    opacity: 0.6;
}

/* ============================================
   STICKY CTA (MOBILE)
============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--gray-100);
    padding: 1rem;
    z-index: 50;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.sticky-cta-info svg {
    width: 1rem;
    height: 1rem;
    color: var(--pink-500);
}

.sticky-cta-info span {
    font-weight: 500;
}

.sticky-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* ============================================
   CART SHEET / SIDEBAR
============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cart-sheet {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 28rem;
    background-color: var(--white);
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

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

.cart-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.cart-close {
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: var(--pink-600);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.cart-empty svg {
    width: 4rem;
    height: 4rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.cart-empty p {
    color: var(--muted-foreground);
}

.cart-empty .sub {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item-image {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.cart-item-price {
    color: var(--pink-600);
    font-weight: 600;
    margin-top: 0.25rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-item-controls button {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.cart-item-controls button:hover {
    background-color: var(--gray-100);
}

.cart-item-qty {
    font-size: 0.875rem;
}

.cart-item-remove {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--red-500);
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: var(--red-700);
}

.cart-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-subtotal span:first-child {
    font-weight: 500;
}

.cart-subtotal span:last-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-footer .btn {
    width: 100%;
    padding: 1rem;
}

.cart-footer .sub-text {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* ============================================
   PAGE STYLES (Shop, About, Contact, etc.)
============================================ */
.page-container {
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-description {
    color: var(--muted-foreground);
    max-width: 40rem;
    margin: 0 auto;
}

/* Filters Bar */
.filters-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

@media (min-width: 768px) {
    .filters-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--gray-300);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--black);
}

.filter-btn.active {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.sort-select {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--gray-300);
    background-color: var(--white);
}

/* Results Count */
.results-count {
    text-align: center;
    color: var(--muted-foreground);
    margin-top: 2rem;
}

/* ============================================
   ABOUT PAGE
============================================ */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
}

.about-content h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--pink-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--pink-600);
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.about-stats {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.about-stats .stats-row {
    margin-top: 0;
}

.about-stats .stat-number {
    color: var(--pink-400);
}

.about-stats .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--pink-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--pink-600);
}

.contact-item h3 {
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-item p,
.contact-item a {
    color: var(--muted-foreground);
}

.contact-item a:hover {
    color: var(--pink-600);
}

.contact-item .sub-text {
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--gray-300);
    background-color: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 8rem;
}

/* Form Success */
.form-success {
    background-color: var(--green-50);
    border: 1px solid var(--green-200);
    padding: 2rem;
    text-align: center;
}

.form-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--green-800);
}

.form-success p {
    color: var(--green-700);
}

/* ============================================
   FAQ PAGE
============================================ */
.faq-container {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--pink-600);
}

.faq-list {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted-foreground);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    display: none;
    padding: 0 1rem 1rem;
    color: var(--muted-foreground);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-cta {
    margin-top: 3rem;
    background-color: var(--pink-50);
    padding: 2rem;
    text-align: center;
}

.faq-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.faq-cta a {
    color: var(--pink-600);
    font-weight: 500;
}

.faq-cta a:hover {
    text-decoration: underline;
}

/* ============================================
   POLICY PAGES
============================================ */
.policy-container {
    max-width: 48rem;
    margin: 0 auto;
}

.policy-header {
    margin-bottom: 3rem;
}

.policy-header h1 {
    margin-bottom: 0.5rem;
}

.policy-header p {
    color: var(--muted-foreground);
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.policy-footer p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.policy-footer a {
    color: var(--pink-600);
}

.policy-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   TRACK ORDER PAGE
============================================ */
.track-container {
    max-width: 40rem;
    margin: 0 auto;
}

.track-form {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    padding: 2rem;
}

.track-form .form-group {
    margin-bottom: 1.5rem;
}

.track-error {
    color: var(--red-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.tracking-result {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    padding: 2rem;
}

.tracking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.tracking-header-item {
    text-align: left;
}

.tracking-header-item:last-child {
    text-align: right;
}

.tracking-header-item p:first-child {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.tracking-header-item p:last-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.tracking-header-item p.highlight {
    color: var(--pink-600);
}

.tracking-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tracking-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tracking-step-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tracking-step-icon.completed {
    background-color: var(--green-500);
}

.tracking-step-icon.pending {
    background-color: var(--gray-200);
}

.tracking-step-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.tracking-step-icon.completed svg {
    color: var(--white);
}

.tracking-step-icon.pending svg {
    color: var(--gray-400);
}

.tracking-step-info {
    flex: 1;
}

.tracking-step-info p:first-child {
    font-weight: 500;
}

.tracking-step-info.pending p:first-child {
    color: var(--gray-400);
}

.tracking-step-info p:last-child {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.tracking-step-check {
    color: var(--green-500);
}

.tracking-step-check svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ============================================
   SIZE GUIDE PAGE
============================================ */
.size-guide-container {
    max-width: 56rem;
    margin: 0 auto;
}

.size-guide-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--pink-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.size-guide-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--pink-600);
}

.size-guide-section {
    margin-bottom: 3rem;
}

.size-guide-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.size-guide-section > p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.size-table {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-collapse: collapse;
}

.size-table th,
.size-table td {
    padding: 0.75rem 1.5rem;
    text-align: left;
}

.size-table th {
    background-color: var(--gray-50);
    font-size: 0.875rem;
    font-weight: 600;
}

.size-table tr {
    border-top: 1px solid var(--gray-200);
}

.size-table tr:first-child {
    border-top: none;
}

.size-tips {
    margin-top: 3rem;
    background-color: var(--pink-50);
    padding: 2rem;
}

.size-tips h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.size-tips ul {
    color: var(--muted-foreground);
}

.size-tips li {
    margin-bottom: 0.5rem;
}

/* ============================================
   PRODUCT DETAIL PAGE
============================================ */
.product-detail-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .product-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-detail-image {
    position: relative;
    aspect-ratio: 1;
    background-color: var(--gray-100);
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-image .badge {
    position: absolute;
    top: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
}

.product-detail-image .badge-discount {
    left: 1rem;
    background-color: var(--pink-500);
    color: var(--white);
}

.product-detail-image .badge-tag {
    right: 1rem;
    background-color: var(--black);
    color: var(--white);
    text-transform: uppercase;
}

.product-detail-info {
    padding: 0;
}

.product-detail-category {
    color: var(--pink-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product-detail-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .product-detail-title {
        font-size: 2.5rem;
    }
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-detail-rating .stars {
    display: flex;
}

.product-detail-rating .stars svg {
    width: 1rem;
    height: 1rem;
    fill: var(--pink-500);
    color: var(--pink-500);
}

.product-detail-rating span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-detail-price .current {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--pink-600);
}

.product-detail-price .original {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.product-detail-stock {
    color: var(--amber-600);
    margin-bottom: 1rem;
}

.product-detail-description {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-quantity span {
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
}

.quantity-controls button {
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease;
}

.quantity-controls button:hover {
    background-color: var(--gray-100);
}

.quantity-controls .qty {
    padding: 0.5rem 1rem;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
}

.product-actions-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-actions-row .btn-add {
    flex: 1;
}

.product-actions-row .btn-wishlist {
    padding: 1rem 1.5rem;
    border: 1px solid var(--black);
}

.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.trust-badge {
    text-align: center;
}

.trust-badge svg {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto 0.5rem;
    color: var(--pink-500);
}

.trust-badge p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--black);
}

.back-link svg {
    width: 1rem;
    height: 1rem;
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

/* ============================================
   SCROLLBAR STYLES
============================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
