:root {
    --primary-black: #000000;
    --off-white: #f8f8f8;
    --sale-red: #e60023;
    --text-gray: #555;
    --border-color: #eeeeee;
    --success-green: #27ae60;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: white; color: var(--primary-black); overflow-x: hidden; }

/* Announcement Bar */
.announcement-bar {
    background: #000;
    color: white;
    padding: 10px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Header */
header {
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: #ee1b24;
    color: white;
    backdrop-filter: blur(10px);
    z-index: 1000;
}
.logo img { width: 110px; }
.nav-links { list-style: none; display: flex; gap: 25px; font-size: 14px; font-weight: 600; }
.nav-links a { text-decoration: none; color: white; transition: 0.3s; }
.nav-links a:hover { opacity: 0.6; }

/* Main Product Layout */
.product-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

/* Gallery */
.gallery-main img { width: 100%; border-radius: 4px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 15px; }
.gallery-thumbs img { width: 80px; height: 80px; object-fit: cover; border: 1px solid #ddd; cursor: pointer; border-radius: 4px; }
.gallery-thumbs img.active { border: 2px solid black; }

/* FOMO Urgency Box */
.urgency-box {
    background: #fff5f5;
    border: 1px dashed var(--sale-red);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}
.timer-row { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--sale-red); font-size: 18px; }
.stock-bar { height: 8px; background: #ddd; border-radius: 10px; margin-top: 10px; overflow: hidden; }
.stock-fill { height: 100%; width: 85%; background: var(--sale-red); animation: pulse 2s infinite; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }

/* Product Info */
.product-title { font-size: 34px; font-weight: 800; margin-bottom: 5px; }
.rating-row { color: #ffb400; font-size: 14px; margin-bottom: 15px; display: flex; align-items: center; gap: 5px; }
.rating-row span { color: var(--primary-black); }
.price-row { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.curr-price { font-size: 28px; font-weight: 800; }
.old-price { font-size: 20px; text-decoration: line-through; color: #999; }
.save-badge { background: var(--sale-red); color: white; padding: 4px 10px; border-radius: 4px; font-weight: bold; font-size: 12px; }

.swatch-label { font-size: 12px; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; display: block; }
.swatches { display: flex; gap: 12px; margin-bottom: 30px; }
.swatch { width: 45px; height: 45px; border-radius: 50%; border: 1px solid #ddd; padding: 3px; cursor: pointer; transition: 0.2s; }
.swatch.active { border: 2px solid black; }
.swatch img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.atc-btn {
    width: 100%;
    background: black;
    color: white;
    padding: 22px;
    border: none;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 4px;
    display: block;
    text-align: center;
    text-decoration: none;
}

/* Horizontal Ticker */
.horizontal-ticker-section {
    background: #121212;
    color: white;
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-top: 50px;
}

.horizontal-ticker-container {
    display: inline-flex;
    animation: ticker-slide 40s linear infinite;
}

.horizontal-ticker-item {
    font-size: 18px;
    font-weight: 800;
    margin: 0 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes ticker-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Wave Divider */
.wave-divider {
    background: #121212;
    height: 60px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.waves-animated use { fill: #ffffff; }

.parallax1 > use { animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite; opacity: 0.7; }
.parallax2 > use { animation: move-forever 20s cubic-bezier(.55,.5,.45,.5) infinite; opacity: 0.5; }
.parallax3 > use { animation: move-forever 15s cubic-bezier(.55,.5,.45,.5) infinite; opacity: 0.3; }
.parallax4 > use { animation: move-forever 10s cubic-bezier(.55,.5,.45,.5) infinite; opacity: 1; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* GIF Features Section */
.gif-features-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.gif-features-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-item {
    margin-bottom: 35px;
}
.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item-heading .material-symbols-outlined {
    color: var(--success-green);
    font-size: 28px;
}

.feature-item-heading h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0;
}

.feature-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Ticker Section */
.ticker-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--off-white);
}

.ticker-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vertical-ticker {
    background: var(--sale-red);
    color: white;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vertical-ticker-inner {
    height: 360px; /* 60px * 1.2 * 5 items */
    overflow: hidden;
}

.vertical-ticker-container {
    animation: vertTicker 8s linear infinite;
}

@keyframes vertTicker {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

.vertical-ticker-item {
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

/* Testimonials */
.reviews-section { padding: 80px 5%; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.review-card { padding: 30px; border: 1px solid #eee; border-radius: 15px; background: white; }
.review-user { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.review-user img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.review-user strong { font-size: 15px; }

/* Section Dividers */
.section-divider {
    line-height: 0; /* Removes bottom space from SVG */
    background-color: white; /* Match adjacent sections */
}
.section-divider svg {
    width: 100%;
    height: 65px;
    display: block;
    fill: currentColor; /* Inherits color from parent div */
}
.divider-bottom {
    transform: scaleY(-1);
}

/* Guarantee Section */
.guarantee-section {
    background: #121212;
    color: white;
    padding: 50px 5%;
    text-align: center;
}
.guarantee-section h2 {
    font-size: 26px;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.guarantee-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #bbb;
    line-height: 1.7;
}
.guarantee-btn {
    display: inline-block;
    background: var(--sale-red);
    color: white;
    padding: 18px 45px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s;
}
.guarantee-btn:hover {
    opacity: 0.85;
}

/* Image with Text Section */
.image-text-section {
    padding: 36px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.image-text-media img {
    width: 100%;
    border-radius: 20px;
}

.image-text-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.image-text-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.image-text-content .guarantee-btn {
    margin-bottom: 25px;
}

.image-text-content .rating-row {
    margin-bottom: 0;
}

/* Viral Section */
.viral-section { padding: 60px 5%; text-align: center; background: white; }
.viral-section h2 { font-size: 32px; font-weight: 800; margin-bottom: 40px; }
.viral-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.viral-card video { width: 100%; border-radius: 12px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); display: block; }

/* FAQ Section */
.faq-section { max-width: 800px; margin: 80px auto; padding: 0 20px; }
.faq-item { border-bottom: 1px solid #eee; padding: 20px 0; }
.faq-item summary { list-style: none; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 20px; }
.faq-item p { margin-top: 15px; font-size: 15px; color: var(--text-gray); }

/* USP Section */
.usp-section { padding: 60px 5%; max-width: 1200px; margin: 0 auto; }
.usp-title { text-align: center; text-transform: uppercase; font-weight: 800; margin-bottom: 30px; font-size: 28px; }
.usp-hero-image { text-align: center; margin-bottom: 40px; }
.usp-hero-image img { max-width: 100%; border-radius: 12px; border: 1px solid #eee; }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.usp-card { background: #f9f9f9; padding: 25px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); height: 100%; }
.usp-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--primary-black); }
.usp-card p { font-size: 14px; color: var(--text-gray); line-height: 1.6; margin: 0; }

/* Quality Promise Section */
.quality-promise-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.quality-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.quality-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}
.quality-image img { width: 100%; border-radius: 12px; border: 1px solid #eee; }
.quality-text h2 { font-size: 24px; font-weight: 800; margin-bottom: 15px; color: var(--primary-black); }
.quality-text p { color: var(--text-gray); margin-bottom: 20px; line-height: 1.6; }
.quality-text ul { list-style: none; padding: 0; }
.quality-text ul li { margin-bottom: 10px; font-size: 15px; color: var(--primary-black); }
.quality-action { text-align: center; }
.quality-btn {
    display: inline-block;
    background: var(--sale-red);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(230, 0, 35, 0.3);
    transition: transform 0.2s;
}
.quality-btn:hover { transform: translateY(-2px); }

/* Trustoo Reviews Widget Styles */
.trustoo-reviews-section { padding: 60px 5%; max-width: 1200px; margin: 0 auto; }
#reviews-head { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.tt-head-title { font-size: 24px; font-weight: 800; margin-bottom: 20px; text-align: center; }
.tt-head-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.head-left { display: flex; align-items: center; gap: 15px; }
.product-rating .point { font-size: 48px; font-weight: 800; line-height: 1; }
.vstar-star { display: flex; gap: 2px; }
.reviews-num { color: #666; font-size: 14px; }
.head-center { flex: 1; max-width: 400px; }
.star-raw { display: flex; align-items: center; font-size: 12px; margin-bottom: 4px; }
.star-classify { width: 50px; }
.star-range { flex: 1; height: 8px; background: #eee; border-radius: 4px; margin: 0 10px; position: relative; overflow: hidden; }
.star-num { width: 30px; text-align: right; color: #666; }
.tt-head-right .head-button { background: black; color: white; border: none; padding: 10px 20px; border-radius: 4px; font-weight: 600; cursor: pointer; }

.tt-review-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.grid-review {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    background: white;
    /* Override inline styles from the snippet */
    position: static !important;
    width: auto !important;
    left: auto !important;
    top: auto !important;
}

.grid-review-head { margin-bottom: 15px; }
.user-message { margin-top: 10px; display: flex; justify-content: space-between; align-items: center; }
.user-name { font-weight: 700; font-size: 14px; }
.user-verified { display: flex; align-items: center; gap: 4px; font-size: 12px; color: #666; }
.trustoo-badge-icon { width: 14px; height: 14px; }
.grid-review-body .reviews-text { font-size: 14px; line-height: 1.5; color: #333; }
.resource-list img { width: 100%; border-radius: 8px; margin-bottom: 10px; }

/* Sort Dropdown (Hidden by default to simplify) */
.head-sort { display: none; }

/* Footer */
footer { background: #000; color: white; padding: 80px 5% 40px; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 50px; max-width: 1200px; margin: 0 auto; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; color: #999; }
.newsletter input { padding: 12px; width: 100%; background: #222; border: none; color: white; border-radius: 4px; margin-bottom: 10px; }

/* FOMO Notification Popup */
#sales-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transform: translateY(200%);
    transition: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
}
#sales-popup.show { transform: translateY(0); }
.popup-icon { font-size: 20px; background: #f0f0f0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.popup-text { font-size: 13px; color: #333; }
.popup-text strong { color: #000; }

/* Dynamic Delivery Timeline */
.shipping-checkpoints {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 30px 0;
    padding: 0 10px;
}
.shipping-checkpoints__bar {
    position: absolute;
    top: 20px;
    left: 16%;
    right: 16%;
    height: 3px;
    background: #eee;
    z-index: 0;
}
.shipping-checkpoint {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shipping-checkpoint__icon {
    width: 40px;
    height: 40px;
    background: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 4px solid white; /* Creates gap around icon over the bar */
}
.shipping-checkpoint__icon .material-symbols-outlined {
    font-size: 20px;
}
.shipping-checkpoint__top {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary-black);
}
.shipping-checkpoint__bottom {
    font-size: 12px;
    color: #666;
}

/* Sliding Review Section */
.review-slider-section {
    background: #f2f2f2;
    border-radius: 1.2rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.review-slide-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review-slide-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.review-slide-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #333;
}
.review-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-author {
    font-weight: 700;
    font-size: 13px;
}
.rating-stars__container {
    display: flex;
    width: 80px;
    color: #ffcc00;
}
.rating-stars__container svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.review-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.dot {
    height: 8px;
    width: 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: #333;
}
.fade {
    animation-name: fade;
    animation-duration: 0.5s;
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Accordion Styles */
.product__accordion {
    border-top: 1px solid #e8e8e1;
    margin-top: 0;
}
.product__accordion:first-of-type {
    margin-top: 20px;
}
.accordion__summary {
    list-style: none;
    cursor: pointer;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.accordion__summary::-webkit-details-marker { display: none; }
.summary__title { display: flex; align-items: center; gap: 10px; }
.accordion__title { font-size: 14px; font-weight: 700; margin: 0; }
.icon-caret { width: 12px; height: 12px; transition: transform 0.3s ease; }
.accordion__details[open] .icon-caret { transform: rotate(180deg); }
.accordion__content {
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
}
.accordion__content ul {
    padding-left: 20px;
    margin: 10px 0;
}
.accordion__content p {
    margin-bottom: 10px;
}

/* Payment Badges */
.payment-badges-block {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    justify-content: flex-start;
}
.list-payment__item {
    line-height: 0;
}
.list-payment__item svg {
    border-radius: 4px;
}

@media (max-width: 990px) {
    .vertical-ticker-item {
        font-size: 50px;
    }
    .vertical-ticker-inner {
        height: 300px; /* 50px * 1.2 * 5 */
    }
}

@media (max-width: 768px) {
    .product-container, .features-grid, .reviews-grid, .usp-grid, .quality-content, .footer-grid, .ticker-section, .gif-features-grid, .image-text-grid, .viral-grid, .tt-head-content { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
    .head-center { width: 100%; max-width: none; }
    header { padding: 15px; }
    .nav-links { display: none; }
    #sales-popup { left: 10px; right: 10px; bottom: 10px; border-radius: 12px; }
    .vertical-ticker {
        padding: 30px 0;
    }
    .vertical-ticker-item {
        font-size: 38px;
    }
    .vertical-ticker-inner {
        height: 228px; /* 38px * 1.2 * 5 */
    }
}