:root {
    --primary-color: #a40e26;
    /* Deep Red / Wine */
    --primary-hover: #800016;
    --accent-color: #d4af37;
    /* Gold */
    --text-dark: #1a1a1a;
    --text-grey: #4a4a4a;
    --bg-light: #fdf2f4;
    /* Very light pink/cream */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(164, 14, 38, 0.2);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-grey);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* --- Animations --- */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(164, 14, 38, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(164, 14, 38, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(164, 14, 38, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-fast {
    animation: pulse 1.5s infinite;
}

/* --- Promo Bar --- */
.promo-bar {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.promo-bar strong {
    color: var(--accent-color);
}

/* --- Hero Section --- */
.hero {
    padding: 60px 0;
    background: radial-gradient(circle at top right, var(--bg-light), #fff);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.badge {
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-subline {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-usps {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-grey);
}

.trust-badges img {
    height: 24px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.main-img {
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.hero-image:hover .main-img {
    transform: perspective(1000px) rotateY(-5deg);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    border: 3px solid var(--accent-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

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

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

.floating-badge span {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.floating-badge strong {
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
}

.floating-badge small {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8rem;
}

/* --- Emotional Section --- */
.emotional-section {
    padding: 100px 0;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 40px;
}

.emotional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.emotional-img img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.emotional-content .lead {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* --- Details / Features --- */
.details-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.feature-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-family: var(--font-body);
    margin-bottom: 15px;
}

/* --- Reviews --- */
.reviews-section {
    padding: 100px 0;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.review-card {
    min-width: 300px;
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.author {
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* --- Offer Section --- */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('products/misiek/misfront.jpg') center/cover fixed;
    color: #fff;
}

.offer-card {
    background: #fff;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    color: var(--text-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.offer-header {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.offer-header h2 {
    color: #fff;
    margin: 0;
    font-size: 2rem;
}

.offer-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.offer-body {
    display: flex;
    padding: 40px;
    gap: 40px;
}

.product-preview {
    flex: 1;
}

.product-preview img {
    border-radius: 10px;
}

.offer-details {
    flex: 1.5;
}

.price-box {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.offer-features {
    list-style: none;
    margin-bottom: 30px;
    font-size: 1rem;
}

.offer-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features i {
    color: var(--primary-color);
}

.secure-info {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
}

/* --- FAQ --- */
.faq-section {
    padding: 80px 0 120px;
    /* Extra padding bottom for sticky mobile cta */
    background: #fafafa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background: #fff;
    max-width: 800px;
    margin: 0 auto 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    color: var(--text-grey);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
    border-top: 1px solid #eee;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* --- Footer --- */
footer {
    background: #111;
    color: #666;
    padding: 40px 0;
    font-size: 0.8rem;
}

footer a {
    color: #888;
    margin: 0 10px;
}

footer a:hover {
    color: #fff;
}

/* --- Sticky Mobile CTA --- */
.sticky-mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    box-shadow: var(--shadow-hover);
}

/* --- Password Gatekeeper --- */
#gatekeeper-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gatekeeper-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 400px;
    width: 90%;
}

#gatekeeper-overlay input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 100%;
    margin: 20px 0;
    font-size: 1rem;
    text-align: center;
    background: var(--bg-light);
}

/* --- Responsive --- */
@media (max-width: 1024px) {

    /* Tablet Landscape / Small Desktop */
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-container {
        gap: 30px;
    }

    .emotional-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {

    /* Tablet Portrait */
    h1 {
        font-size: 2.2rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-usps {
        justify-content: center;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .floating-badge {
        right: 10%;
        left: auto;
        bottom: 20px;
        width: 100px;
        height: 100px;
        padding: 10px;
    }

    .floating-badge strong {
        font-size: 1.4rem;
    }

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

    .emotional-img {
        margin-bottom: 30px;
    }

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

    .offer-body {
        flex-direction: column;
        padding: 30px 20px;
    }

    .product-preview {
        margin-bottom: 30px;
    }

    .offer-details {
        width: 100%;
    }
}

@media (max-width: 768px) {

    /* Mobile Landscape / Large Phones */
    .sticky-mobile-cta {
        display: block;
    }

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

    .hero {
        padding: 40px 0;
    }

    .promo-bar {
        font-size: 0.8rem;
    }

    .btn-lg {
        width: 100%;
    }
}

@media (max-width: 480px) {

    /* Small Phones */
    h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-subline {
        font-size: 1rem;
    }

    .floating-badge {
        width: 80px;
        height: 80px;
        right: 0;
        bottom: 10px;
        border-width: 2px;
    }

    .floating-badge span {
        font-size: 0.5rem;
    }

    .floating-badge strong {
        font-size: 1.1rem;
    }

    .floating-badge small {
        font-size: 0.6rem;
    }

    .offer-header h2 {
        font-size: 1.5rem;
    }

    .price-box {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .new-price {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 360px) {

    /* Very Small Phones (iPhone SE 1st Gen, Galaxy Fold) */
    h1 {
        font-size: 1.5rem;
    }

    .hero-subline {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .floating-badge {
        width: 70px;
        height: 70px;
        bottom: 5px;
    }

    .floating-badge strong {
        font-size: 1rem;
    }

    .promo-bar {
        font-size: 0.75rem;
    }
}