:root {
    --primary-color: #845ec2;
    --primary-hover: #6b4c9a;
    --secondary-color: #f9f6ff; /* light purple background */
    --text-color: #4a4a4a;
    --heading-color: #2c1b4d;
    --light-text: #7a7a7a;
    --border-color: #e5d9f2;
    --background: #ffffff;
    --mark-bg: #e5d9f2;
    --cta-color: #ff9671; /* contrasting soft orange/coral for CTA */
    --cta-hover: #ff7e51;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
    /* Subtle geometric pattern in light purple */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23845ec2' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    line-height: 1.7;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Advertorial Mark */
.advertorial-mark {
    background-color: var(--mark-bg);
    color: var(--heading-color);
    text-align: center;
    padding: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(132, 94, 194, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #b39cd0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.home-btn {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    transition: color 0.3s;
}

.home-btn:hover {
    color: var(--primary-color);
}

/* Main Content */
.main-content {
    background-color: #faf5ff;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='36' viewBox='0 0 120 36'%3E%3Cpath fill='none' stroke='%23d500ff' stroke-width='2.5' opacity='0.25' d='M0,18 c15,0 15,18 30,18 c15,0 15,-18 30,-18 c15,0 15,18 30,18 c15,0 15,-18 30,-18' /%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='48' viewBox='0 0 160 48'%3E%3Cpath fill='none' stroke='%239d00ff' stroke-width='2' opacity='0.2' d='M0,24 c20,0 20,24 40,24 c20,0 20,-24 40,-24 c20,0 20,24 40,24 c20,0 20,-24 40,-24' /%3E%3C/svg%3E");
    background-position: 0 0, 20px 20px;
    padding: 50px 0;
    margin: 40px auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(132, 94, 194, 0.08);
    max-width: 900px;
}

h1 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 30px;
    color: var(--heading-color);
    text-align: center;
    font-weight: 800;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-intro strong {
    color: var(--primary-color);
}

/* Ingredients Section */
.section-title {
    font-size: 30px;
    margin: 50px 0 15px;
    color: var(--heading-color);
    text-align: center;
}

.section-subtitle {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

@media (min-width: 600px) {
    .ingredients-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ingredient-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(132, 94, 194, 0.05);
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(132, 94, 194, 0.15);
    border-color: var(--primary-color);
}

.ingredient-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.ingredient-content {
    padding: 25px;
}

.ingredient-content h3 {
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

.ingredient-content p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Editorial Text Box */
.editorial-text {
    text-align: left;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(132, 94, 194, 0.08);
    border: 1px solid var(--border-color);
}

.editorial-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f3e8ff 0%, #e5d9f2 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    box-shadow: inset 0 0 0 2px #fff, 0 10px 20px rgba(132, 94, 194, 0.1);
}

.cta-section h2 {
    margin-bottom: 25px;
    color: var(--heading-color);
    font-size: 28px;
}

.cta-section > p {
    margin-bottom: 25px;
    font-size: 17px;
    color: var(--heading-color);
    font-weight: 500;
}

.cta-section img {
    transition: transform 0.4s ease;
}

.cta-section img:hover {
    transform: scale(1.05) rotate(1deg);
}

.cta-button {
    background: linear-gradient(135deg, var(--cta-color), var(--cta-hover));
    color: white !important;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 150, 113, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    margin-top: 15px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 150, 113, 0.6);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Footer */
.site-footer {
    background-color: var(--heading-color);
    color: #b39cd0;
    padding: 60px 0 40px;
    font-size: 14px;
}

.footer-contact, .footer-links {
    margin-bottom: 35px;
    text-align: center;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact strong {
    color: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #e5d9f2;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
}

.footer-disclosures {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 35px;
    margin-top: 25px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
}

.footer-disclosures p {
    margin-bottom: 15px;
    text-align: justify;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    color: rgba(255,255,255,0.3);
}

/* Product Offer Styles */
.product-offer-wrapper {
    position: relative;
    max-width: 350px;
    width: 100%;
    margin: 30px auto 40px;
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(132, 94, 194, 0.2);
    border: 2px solid var(--border-color);
}

.product-offer-wrapper .badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: var(--cta-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 150, 113, 0.4);
    z-index: 10;
    letter-spacing: 1px;
}

.product-offer-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
}

.product-offer-wrapper:hover .product-offer-img {
    transform: scale(1.03);
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .main-content {
        padding: 30px 15px;
        margin: 20px 10px;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 24px;
        margin: 30px 0 15px;
    }

    .editorial-text {
        padding: 20px;
    }

    .cta-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 18px;
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
