:root {
    --bg-color: #fcf9f9;
    --text-dark: #2a2a2a;
    --text-light: #6b6b6b;
    --accent-color: #d4af37; /* Gold touch */
    --kiko-pink: #f2cdd3;
    --kiko-pink-dark: #e8a5b2;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

.background-glow {
    position: fixed;
    top: -20%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--kiko-pink) 0%, rgba(252, 249, 249, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

.product-container {
    width: 100%;
    max-width: 480px; /* Mobile focused max width */
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1a1a1a;
}

.subtitle {
    font-size: 0.7rem;
    letter-spacing: 6px;
    color: var(--text-light);
    font-weight: 500;
}

/* Product Image Placeholder */
.product-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(145deg, #ffffff, #f0e6e8);
    border-radius: 20px;
    box-shadow: 10px 15px 30px rgba(232, 165, 178, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-image-placeholder p {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(42, 42, 42, 0.1);
    transform: rotate(-15deg);
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.product-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.tagline {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.benefits {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.benefit-item {
    text-align: center;
    flex: 1;
}

.benefit-item .icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.action-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.buy-btn {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 30px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.secondary-link {
    font-size: 0.85rem;
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 500;
}

footer {
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
}

footer p {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}
