* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

:root {
    --primary: #1a1a1a;
    --accent: #c9a961;
    --light: #ffffff;
    --gray: #f8f8f8;
    --text: #2d2d2d;
    --border: #e5e5e5;
}

body {
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 6% 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle,
            rgba(201, 169, 97, 0.1) 0%,
            transparent 70%);
    border-radius: 50%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
}

.hero-img {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 3/4;
}

.hero-img:first-child {
    transform: translateY(40px);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* FEATURES */
.features {
    padding: 100px 6%;
    background: var(--light);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 25px;
    opacity: 0.8;
}

.feature h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

/* COLLECTIONS */
.collections {
    padding: 120px 6%;
    background: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

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

.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    border-radius: 2px;
    background: var(--light);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--light);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.collection-overlay h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.collection-overlay p {
    font-size: 0.9rem;
    margin-bottom: brun20px;
    opacity: 0.9;
}

.collection-link {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light);
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--light);
    transition: all 0.3s;
}

.collection-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* PRODUCTS */
.products {
    padding: 120px 6%;
    background: var(--light);
}

/* CATEGORY SECTION */
.category-section {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.category-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
}

.see-all-button {
    display: inline-block;
    padding: 6px 13px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.see-all-button:hover {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

/* Adjust products grid for consistency */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    position: relative;
    background: var(--light);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border-color: transparent;
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--light);
    color: var(--primary);
    padding: 6px 12px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 8px;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-price .original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 8px;
    font-weight: 400;
}

.quick-view {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(10px);
}

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

.quick-view:hover {
    background: var(--primary);
    color: var(--light);
}

/* TESTIMONIALS */
.testimonials {
    padding: 120px 6%;
    background: var(--gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial {
    background: var(--light);
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.testimonial:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NEWSLETTER */
.newsletter {
    padding: 100px 6%;
    background: var(--primary);
    color: var(--light);
    text-align: center;
}

.newsletter h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.newsletter p {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 18px 35px;
    background: var(--accent);
    border: none;
    color: var(--light);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #b89851;
}

/* FOOTER */
footer {
    padding: 80px 6% 40px;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-links h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s;
    font-weight: 300;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    font-weight: 300;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 4rem;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 5% 60px;
    }

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

    .hero-images {
        max-width: 100%;
        margin-bottom: 40px;
    }

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

    .newsletter-form input {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        padding: 12px 18px;
        font-size: 0.6rem;
    }

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

    .collection-overlay {
        padding: 10px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        transform: translateY(0);
        opacity: 1;
    }

    .collection-overlay h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.3rem;
        line-height: 1.2;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .collection-overlay p {
        font-size: 0.7rem;
        line-height: 1.1;
        font-weight: 300;
        margin-bottom: 4px;
        opacity: 0.9;
    }

    .collection-link {
        font-size: 0.75rem;
        letter-spacing: 2px;
        color: var(--accent);
        border-color: var(--accent);
        padding-bottom: 4px;
    }

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

    .product-info {
        padding: 10px;
        text-align: center;
    }

    .product-category {
        margin-bottom: 8px;
    }

    .product-name {
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .product-price {
        margin-bottom: 8px;
    }

    .quick-view {
        display: flex;
        opacity: 1;
        padding: 8px 13px;
        border: 0.5px solid var(--primary);
        font-size: 0.6rem;
        border-radius: 8px;
        justify-self: center;
        margin-bottom: 20px;
    }

    .see-all-button {
        opacity: 1;
        padding: none;
        font-size: 0.65rem;
        border-radius: 10px;
    }

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

    .see-all-button {
        padding: 10px 20px;
        font-size: 0.7rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}