/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #ffffff;
    padding-top: 20px;
}

/* Header Styles */
.presentation-header {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 20px 30px 20px;
}

/* Floating Order Button */
.order-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(to bottom, #ffdf60, #f6a81a);
    border: 1px solid #c98800;
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.7);
    text-transform: uppercase;
}

.order-btn:hover {
    background: linear-gradient(to bottom, #fce579, #fab739);
}

/* Typography */
.title-group {
    margin-top: 10px;
}

.eyebrow {
    color: #a81d68; /* Pinkish-purple text */
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.main-title {
    color: #000000;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}

.sub-title {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
}

/* Video Section Styles */
.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px 50px 20px;
}

.video-container {
    width: 100%;
    max-width: 800px;
    background-color: #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.video-player {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio hack */
    padding-top: 56.25%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Large Center Overlay */
.play-overlay-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background-color: rgba(50, 50, 50, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    z-index: 10;
}

.play-text {
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 15px;
}

/* White Circular Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
}

/* Black Triangle */
.play-triangle {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #000000;
    margin-left: 8px; /* Offsets triangle slightly to visually center it in the circle */
}

/* Blue Arrow */
.blue-arrow {
    position: absolute;
    right: 20px;
    bottom: 60px;
    width: 70px;
    transform: rotate(15deg);
    pointer-events: none;
}

/* Captions Bar */
.captions-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    font-size: 22px;
    z-index: 5;
}

/* Viewer Count Badge */
.viewer-count {
    margin-top: 20px;
    background-color: #333333;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.eye-icon {
    font-size: 16px;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .order-btn {
        position: static;
        margin-bottom: 20px;
        display: inline-block;
    }
    
    .main-title {
        font-size: 28px;
    }

    .sub-title {
        font-size: 18px;
    }

    .play-overlay-circle {
        width: 180px;
        height: 180px;
    }

    .play-text {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-triangle {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 18px solid #000000;
        margin-left: 5px;
    }

    .blue-arrow {
        width: 40px;
        right: 10px;
        bottom: 30px;
    }

    .captions-bar {
        font-size: 16px;
        padding: 10px 0;
    }
}
/* --- Scarcity Section --- */
.scarcity-section {
    background-color: #fce6f3; /* Light pink background */
    padding: 30px 20px;
    display: flex;
    justify-content: center;
}

.scarcity-container {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.scarcity-badge img {
    max-width: 160px;
}

.scarcity-text {
    flex: 1;
}

.scarcity-text h2 {
    color: #c9349e; /* Magenta text */
    font-size: 24px;
    margin-bottom: 10px;
}

.timer-banner {
    display: inline-block;
    background-color: #ffffcc; /* Light yellow */
    padding: 5px 10px;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    border-radius: 2px;
}

.scarcity-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}

/* --- Pricing Section --- */
.pricing-section {
    background-color: #c9349e; /* Solid Magenta Background */
    padding: 40px 20px 60px 20px;
}

.pricing-headline {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.chevron {
    color: #f7a8b8; /* Lighter pink for arrows */
}

.pricing-grid-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff9db; /* Light yellow behind all cards */
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Individual Card Styling */
.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.standard-card {
    background-color: transparent; /* Takes the yellow background from container */
    color: #000000;
}

.highlighted-card {
    background-color: #bd218b; /* Darker Magenta for the middle card */
    color: #ffffff;
    border: 3px solid #ffffff; /* White border */
    transform: scale(1.02); /* Makes the center card slightly larger */
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Card Header (Title & Price) */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.title-left {
    text-align: left;
}

.title-left h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 2px;
}

.title-left p {
    font-size: 14px;
}

.price-right {
    text-align: right;
    line-height: 1;
}

.standard-card .price-right { color: #c9349e; }
.highlighted-card .price-right { color: #ffffff; }

.dollar {
    font-size: 20px;
    font-weight: bold;
    vertical-align: top;
}

.big-price {
    font-size: 46px;
    font-weight: 900;
}

.per-bottle {
    display: block;
    font-size: 12px;
}

/* Images & Details */
.product-image {
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.product-image img {
    max-width: 100%;
    height: auto;
}

.card-details p {
    font-size: 14px;
    padding: 12px 0;
}

.card-details hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.highlighted-card .card-details hr {
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Card Footer (Checkout info) */
.card-footer {
    margin-top: auto;
    padding-top: 20px;
}

.summary-price {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
}

.strike {
    text-decoration: line-through;
    font-weight: normal;
}

.standard-card .red-text { color: #cc0000; }
.highlighted-card .white-text { color: #ffffff; }

.add-to-cart {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 15px;
    text-transform: capitalize;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.pink-btn { background-color: #c9349e; }
.pink-btn:hover { background-color: #a82782; }

.green-btn { background-color: #29b842; }
.green-btn:hover { background-color: #229936; }

.trust-badges {
    max-width: 160px;
}

/* --- Reviews Banner --- */
.reviews-banner {
    background-color: #ffffff;
    padding: 20px;
    border-bottom: 2px solid #eeeeee;
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stars-img {
    max-width: 120px;
}

.reviews-text {
    text-align: left;
}

.reviews-title {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}

.reviews-sub {
    font-size: 13px;
    color: #666;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .scarcity-container {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-grid-container {
        flex-direction: column;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

    .pricing-card {
        background-color: #fff9db;
        margin-bottom: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .highlighted-card {
        transform: scale(1);
        border: none;
    }

    .reviews-container {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews-text {
        text-align: center;
    }
}
/*edit*/
/* 1. Establish structural positioning on the body element */
body {
    position: relative;
    min-height: 100vh;
}

/* 2. Style the transparent click overlay block */
.global-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Covers everything on the standard layout layer */
    cursor: pointer;
    background-color: transparent;
}