/* Self Love Page Styles - Dark Romance Theme */
:root {
    --rose-primary: #d63384;
    --rose-secondary: #8b2635;
    --rose-accent: #4a1a2a;
    --rose-light: #6b293a;
    --rose-dark: #2d0a15;
    --pink-gradient: linear-gradient(135deg, #8b2635, #d63384);
    --soft-pink: #3a1722;
    --warm-white: #1a0f12;
    --text-dark: #f8e8eb;
    --text-medium: #d1b3ba;
    --text-light: #ffffff;
    --shadow-rose: rgba(214, 51, 132, 0.4);
    --shadow-soft: rgba(214, 51, 132, 0.2);
    --bg-dark: #0d0609;
    --bg-medium: #1a0f12;
    --bg-card: #2d1a21;
    --border-love: #4a2635;
    --accent-gold: #d4af37;
    --deep-burgundy: #5d1a2a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 50%, var(--deep-burgundy) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 6, 9, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-love);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--rose-primary);
}

.cart-link {
    position: relative;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.cart-link:hover {
    color: var(--rose-primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--rose-primary);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 50%, var(--deep-burgundy) 100%);
}

.rose-petals {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(214, 51, 132, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 38, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 26, 42, 0.25) 0%, transparent 50%);
    animation: floatPetals 20s ease-in-out infinite;
}

.heart-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart-particles::before,
.heart-particles::after {
    content: '💖';
    position: absolute;
    font-size: 1.5rem;
    animation: floatHearts 15s ease-in-out infinite;
    opacity: 0.3;
}

.heart-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.heart-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

@keyframes floatHearts {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.6; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-info {
    display: flex;
    flex-direction: column;
    order: 2;
}

.product-image-container {
    order: 1;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 0.5rem;
    background: var(--pink-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
    box-shadow: 0 4px 15px var(--shadow-rose);
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px var(--shadow-rose);
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-light);
    text-shadow: 2px 2px 8px var(--shadow-rose);
    background: linear-gradient(45deg, var(--text-light), var(--rose-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-primary);
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

.product-description {
    margin-bottom: 2rem;
}

.main-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

.add-to-cart-btn {
    background: var(--pink-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px var(--shadow-rose);
    display: flex;
    align-items: center;
    align-self: center;
    width: fit-content;
    gap: 0.5rem;
}

.add-to-cart-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-rose);
}

.add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.trust-item i {
    color: var(--rose-primary);
}

/* Product Image */
.product-image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-rose);
    background: var(--pink-gradient);
    padding: 20px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: var(--pink-gradient);
    opacity: 0.3;
    filter: blur(20px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart {
    position: absolute;
    font-size: 2rem;
    animation: floatAroundImage 20s ease-in-out infinite;
}

.heart-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.heart-2 {
    top: 70%;
    right: 10%;
    animation-delay: 7s;
}

.heart-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 14s;
}

@keyframes floatAroundImage {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(90deg); }
    50% { transform: translate(0, -30px) rotate(180deg); }
    75% { transform: translate(-20px, -15px) rotate(270deg); }
}

/* Details Section */
.details-section {
    padding: 80px 0;
    background: var(--bg-medium);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-soft);
    border: 1px solid var(--border-love);
    transition: all 0.3s ease;
    border: 1px solid var(--rose-accent);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-rose);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.detail-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Ingredients Section */
.ingredients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-medium) 100%);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px var(--shadow-rose);
}

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

.ingredient-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-soft);
    border: 1px solid var(--border-love);
    transition: all 0.3s ease;
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-rose);
}

.ingredient-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.ingredient-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Ritual Section */
.ritual-section {
    padding: 80px 0;
    background: var(--bg-medium);
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.ritual-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-soft);
    border: 1px solid var(--border-love);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-rose);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--pink-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-content p {
    color: var(--text-medium);
    line-height: 1.6;
    text-align: center;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--pink-gradient);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: white;
    color: var(--rose-primary);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--rose-secondary);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--rose-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .image-frame {
        width: 300px;
        height: 300px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .details-grid,
    .ingredients-grid,
    .ritual-steps {
        grid-template-columns: 1fr;
    }
}

/* Loading states */
.product-title:empty::before {
    content: "Loading...";
    color: #999;
}

.price-amount:empty::before {
    content: "€0.00";
    color: #999;
}

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

.detail-card,
.ingredient-item,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* In cart state for buttons */
.add-to-cart-btn.in-cart {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.add-to-cart-btn.in-cart:hover {
    background: linear-gradient(135deg, #218838, #1e7e73);
}

/* Dark Romance Theme Enhancements */
.product-title {
    background: linear-gradient(45deg, var(--text-light), var(--rose-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-rose);
    border-color: var(--rose-primary);
}

.ingredient-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-rose);
    border-color: var(--rose-primary);
}

/* Romantic glow effects */
.heart-particles::before,
.heart-particles::after {
    filter: drop-shadow(0 0 5px var(--rose-primary));
}

/* Enhanced button glow */
.add-to-cart-btn {
    box-shadow: 0 4px 15px var(--shadow-rose);
}

.add-to-cart-btn:hover {
    box-shadow: 0 8px 25px var(--shadow-rose);
}

/* Subtle background texture for cards */
.detail-card,
.ingredient-item,
.step {
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(214, 51, 132, 0.05) 0%, transparent 50%);
}
