@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-500: #ec4899;
    --pink-400: #f472b6;
    --pink-600: #db2777;
    --pink-100: #fce7f3;
    --pink-50: #fdf2f8;
    --black: #000;
    --white: #fff;
    --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;
    --green-500: #22c55e;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #111;
    background: var(--white);
}

.font-heading {
    font-family: "Playfair Display", serif;
}

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

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

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

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

.btn-primary:hover {
    background: #333;
}

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

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

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

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

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

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

/* Tags */
.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

.tag-limited {
    background: var(--amber-500);
    color: var(--white);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-transparent {
    background: transparent;
    box-shadow: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--pink-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
}

.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav {
    display: none;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

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

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

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

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

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

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

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

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
}

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

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

.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: 600px;
}

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

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.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: 500px;
}

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

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

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

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

@media (min-width: 768px) {
    .trust-items {
        justify-content: space-between;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

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

/* ==================== SECTIONS ==================== */
.section {
    padding: 4rem 0;
}

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

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

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

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600;
}

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

.section-bg-light {
    background: var(--pink-50);
}

.section-bg-muted {
    background: var(--gray-50);
}

/* ==================== SHOP BY STYLE ==================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card: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%);
}

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

.category-card.large .category-content {
    bottom: 1.5rem;
    left: 1.5rem;
}

.category-name {
    font-family: "Playfair Display", serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.category-card.large .category-name {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .category-card.large .category-name {
        font-size: 2rem;
    }
}

.category-link {
    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;
}

.category-card:hover .category-link {
    opacity: 1;
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pink-500);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
}

/* ==================== PRODUCTS GRID ==================== */
.products-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .products-header {
        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;
}

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

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

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

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

/* Product Card */
.product-card {
    position: relative;
    transition: box-shadow 0.3s;
}

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

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

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

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

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

.product-stock {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

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

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

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

.product-actions .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.625rem;
}

.product-actions .btn-icon {
    flex: none;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid var(--black);
}

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

.product-info {
    padding: 0 0.25rem;
}

.product-name {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

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

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

/* ==================== TRENDING COLLECTION ==================== */
.trending-grid {
    display: grid;
    gap: 2rem;
}

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

.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-images img {
    width: 100%;
    object-fit: cover;
}

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

.trending-images .square {
    aspect-ratio: 1;
}

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

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

.trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.trending-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.trending-text {
    color: var(--gray-500);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

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

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

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

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

.look-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

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

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

.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;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.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: var(--white);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

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

/* ==================== TESTIMONIALS ==================== */
.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: var(--white);
    padding: 1.5rem;
    position: relative;
}

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

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

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

.testimonial-text {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

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

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

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

@media (min-width: 768px) {
    .stats-grid {
        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 {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

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

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pink-500);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.offer-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.offer-subtitle svg {
    color: var(--pink-400);
}

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

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

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

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

.countdown-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 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 ==================== */
.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--pink-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

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

@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-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

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

.instagram-overlay svg {
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s;
    width: 32px;
    height: 32px;
}

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

/* ==================== HOW IT WORKS ==================== */
.steps-grid {
    display: grid;
    gap: 2rem;
}

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

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

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

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

.step-icon-circle svg {
    width: 32px;
    height: 32px;
    color: var(--pink-600);
}

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

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

.step-text {
    color: var(--gray-500);
}

/* ==================== LEAD CAPTURE ==================== */
.lead-capture {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

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

.lead-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.lead-text {
    color: var(--gray-500);
    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-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--black);
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

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

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 1rem 0 1.5rem;
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-contact svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

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

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

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

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

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.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;
    gap: 1rem;
    align-items: center;
}

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

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

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

.footer-payments img {
    height: 24px;
    opacity: 0.6;
}

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

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

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

.sticky-cta-text svg {
    color: var(--pink-500);
}

/* ==================== INNER PAGES ==================== */
.page-header {
    padding-top: 120px;
    padding-bottom: 3rem;
    text-align: center;
}

.page-title {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.page-subtitle {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Page */
.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

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

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

.shop-sort {
    margin-left: auto;
}

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

/* Product Detail */
.product-detail {
    padding-top: 100px;
    padding-bottom: 4rem;
}

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

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

.product-detail-grid {
    display: grid;
    gap: 2rem;
}

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

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

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

.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-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.product-rating .stars {
    display: flex;
    gap: 0.125rem;
}

.product-rating .stars svg {
    width: 16px;
    height: 16px;
    fill: var(--pink-500);
    color: var(--pink-500);
}

.product-rating .count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.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: 2rem;
    font-weight: 700;
    color: var(--pink-600);
}

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

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

.product-description {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.quantity-selector label {
    font-weight: 500;
}

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

.quantity-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: var(--gray-100);
}

.quantity-value {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
}

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

.product-detail-actions .btn {
    flex: 1;
}

.product-detail-actions .btn-icon {
    flex: none;
    padding: 1rem;
}

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

.product-trust-item {
    text-align: center;
}

.product-trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--pink-500);
    margin-bottom: 0.5rem;
}

.product-trust-item p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Contact Page */
.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info-title {
    font-family: "Playfair Display", serif;
    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;
    gap: 1rem;
}

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

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

.contact-item h3 {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

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

.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-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    font-family: inherit;
    font-size: 0.9375rem;
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* About Page */
.about-hero {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

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

.about-image {
    aspect-ratio: 1;
    overflow: hidden;
}

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

.about-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

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

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

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

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

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

.value-text {
    font-size: 0.875rem;
    color: var(--gray-500);
}

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

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

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

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

/* FAQ Page */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-list {
    background: 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 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    transition: transform 0.3s;
}

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

.faq-answer {
    padding: 0 1.5rem 1rem;
    color: var(--gray-500);
    display: none;
}

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

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

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

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

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

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

/* Policy Pages */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-updated {
    color: var(--gray-500);
    margin-bottom: 3rem;
}

.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(--gray-500);
    line-height: 1.8;
}

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

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

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

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

/* Track Order */
.track-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 2rem;
}

.track-result {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 2rem;
}

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

.track-header p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.track-header strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
}

.track-header .delivery strong {
    color: var(--pink-600);
}

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

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

.track-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

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

.track-step-icon svg {
    width: 20px;
    height: 20px;
}

.track-step-content {
    flex: 1;
}

.track-step-content p {
    font-weight: 500;
}

.track-step.pending .track-step-content p {
    color: var(--gray-400);
}

.track-step-content span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Size Guide */
.size-guide-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.size-icon svg {
    width: 32px;
    height: 32px;
    color: var(--pink-600);
}

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

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

.size-section > p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

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

.size-table th,
.size-table td {
    padding: 0.75rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

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

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

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

.size-tips ul {
    color: var(--gray-500);
    padding-left: 1rem;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden-mobile {
    display: none;
}

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