/* ==========================================================
   ANSEIO ÍNTIMO - Premium Layout
========================================================== */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ROOT */
:root {
    --primary: #780007;
    --primary-dark: #5E0005;
    --secondary: #F0A4A6;
    --white: #FFFFFF;
    --light: #F8F8F8;
    --gray: #EFEFEF;
    --text: #2A2A2A;
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BODY */
body {
    background: var(--white);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 3.2rem;
    letter-spacing: -1px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* CONTAINER */
.container {
    max-width: 1480px;
    margin: auto;
    padding: 0 24px;
}

/* CARDS & GENERAL */
.category-card, .product-card, .benefit-card {
    transition: var(--transition);
}

.category-card:hover, .product-card:hover, .benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(120, 0, 7, 0.1);
}

/* Collection Section */
.collection {
    padding: 80px 0;
    background: #f9f7f5;
}

.collection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.collection-text span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
}

.collection-text h2 {
    margin: 16px 0 24px;
}

.collection-text p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    color: #555;
}

.collection-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .collection-content {
        grid-template-columns: 1fr;
    }
}
