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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #faf8f6;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.back-link {
    color: #8b5a7d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 400;
}

.back-link:hover {
    color: #4b134f;
}

.logo {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    background: linear-gradient(135deg, #c94b4b 0%, #4b134f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: #8b5a7d;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-links a:hover {
    color: #4b134f;
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #c94b4b;
    transition: transform 0.3s;
}

.cart-btn:hover {
    transform: scale(1.1);
}

.cart-btn svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #c94b4b;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    font-weight: 600;
}

/* Hero */
.hero {
    margin-top: 80px;
    height: 90vh;
    background: linear-gradient(135deg, rgba(201, 75, 75, 0.85) 0%, rgba(75, 19, 79, 0.9) 100%),
                url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 105, 180, 0.2) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #fff;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 0.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #fff;
    border: none;
    color: #c94b4b;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Featured Category */
.featured-category {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 4rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(201, 75, 75, 0.15);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #c94b4b;
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #4b134f;
}

.category-card p {
    color: #8b5a7d;
    font-size: 0.95rem;
    font-weight: 300;
}

/* Collection */
.collection {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 200;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.2rem;
    background: linear-gradient(135deg, #c94b4b 0%, #4b134f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 75, 75, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(201, 75, 75, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

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


.badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    color: #c94b4b;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
}

.badge.new {
    background: rgba(75, 19, 79, 0.9);
    color: #fff;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    color: #c94b4b;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: #4b134f;
    letter-spacing: 0.03rem;
}

.product-description {
    color: #8b5a7d;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.color-swatches {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.swatch:hover {
    transform: scale(1.1);
}

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

.product-price {
    font-size: 1.3rem;
    font-weight: 300;
    color: #4b134f;
}

.add-to-cart {
    background: transparent;
    color: #c94b4b;
    border: 1px solid #c94b4b;
    padding: 0.6rem 1.3rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.03rem;
}

.add-to-cart:hover {
    background: #c94b4b;
    color: #fff;
    transform: translateY(-2px);
}

/* Trending */
.trending {
    background: #fff;
    padding: 6rem 4rem;
}

.trending-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.trending-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.trending-card:hover {
    transform: translateY(-5px);
}

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

.trending-image {
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.trending-card.large .trending-image {
    min-height: 100%;
}

.trending-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: #fff;
}

.tag {
    display: inline-block;
    background: rgba(201, 75, 75, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.trending-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.trending-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.shop-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: #fff;
    color: #c94b4b;
}

/* Tips */
.tips {
    background: linear-gradient(135deg, #c94b4b 0%, #4b134f 100%);
    color: #fff;
    padding: 6rem 4rem;
}

.tips-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-number {
    font-size: 3rem;
    font-weight: 200;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.tip-card p {
    line-height: 1.7;
    font-weight: 300;
    opacity: 0.95;
}

/* Brands */
.brands {
    background: #fff;
    padding: 6rem 4rem;
}

.brands-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.brand-card {
    text-align: center;
    padding: 2rem;
}

.brand-card svg {
    width: 60px;
    height: 60px;
    color: #c94b4b;
    margin-bottom: 1.5rem;
}

.brand-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #4b134f;
    margin-bottom: 0.75rem;
}

.brand-card p {
    color: #8b5a7d;
    font-weight: 300;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: #faf8f6;
    padding: 6rem 4rem;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    color: #5a5a5a;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author strong {
    color: #4b134f;
    font-weight: 500;
}

.author span {
    color: #c94b4b;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #c94b4b 0%, #4b134f 100%);
    color: #fff;
    padding: 5rem 4rem;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.newsletter-container p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: #fff;
    color: #c94b4b;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

/* Contact */
.contact {
    background: #fff;
    padding: 6rem 4rem;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #8b5a7d;
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #4b134f;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: #c94b4b;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #c94b4b 0%, #4b134f 100%);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 2rem;
    font-weight: 300;
    font-size: 0.9rem;
}

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

@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .featured-category,
    .collection {
        padding: 0 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav-links a {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

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

    .brands,
    .testimonials,
    .newsletter,
    .contact {
        padding: 4rem 2rem;
    }

    .brands-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-container h2 {
        font-size: 2rem;
    }

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

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

    .trending-card.large {
        grid-row: span 1;
    }

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

/* Instagram Section */
.instagram-section {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, #fff5f8 0%, #faf8f6 100%);
}

.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.instagram-embed {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.instagram-embed iframe {
    display: block;
    min-height: 600px;
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 4rem 2rem;
    }

    .instagram-embed iframe {
        min-height: 500px;
    }
}
