/* ... Existing styles ... */
/* Retain all previous styles, just adding marquee styles */

:root {
    --primary-color: #2E1A47;
    --secondary-color: #1A0F29;
    --gold-main: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #8A7120;
    --text-dark: #1A1A1A;
    --text-light: #F9F9F9;
    --bg-paper: #FDFBF7;
    --bg-white: #FFFFFF;

    --font-title: 'Cinzel', serif;
    --font-elegant: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-paper);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ... (Keep all existing styles for brevity, just appending new marquee styles below) ... */

h1,
h2,
h3,
h4 {
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight {
    color: var(--gold-main);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, var(--gold-main) 0%, var(--gold-dark) 100%);
    color: white;
    font-family: var(--font-title);
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 4px;
    border: 1px solid var(--gold-light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(180deg, #E5C150 0%, #9B8025 100%);
}

.divider-icon {
    font-size: 1.5rem;
    color: var(--gold-main);
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon::before,
.divider-icon::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold-main);
    margin: 0 15px;
}

.divider-line {
    width: 100px;
    height: 3px;
    background-color: var(--gold-main);
    margin: 20px auto;
    border-radius: 2px;
}

.ornamental-border.top {
    height: 10px;
    background: repeating-linear-gradient(45deg, var(--gold-main), var(--gold-main) 10px, var(--gold-dark) 10px, var(--gold-dark) 20px);
    border-bottom: 2px solid var(--secondary-color);
}

.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(46, 26, 71, 0.9)), url('https://www.transparenttextures.com/patterns/black-linen.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    text-align: center;
    padding: 100px 0 80px;
    position: relative;
    border-bottom: 4px solid var(--gold-main);
}

.badge {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold-main);
    border: 1px solid var(--gold-main);
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 2.8rem;
    background: linear-gradient(to bottom, #FFF, #E0E0E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    margin-bottom: 10px;
}

.hero .highlight {
    font-family: var(--font-elegant);
    font-style: italic;
    color: var(--gold-main);
    -webkit-text-fill-color: var(--gold-main);
    font-size: 2.2rem;
    text-transform: none;
}

.subheadline {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-main);
    padding: 20px;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

.hero-marquee {
    padding: 30px 40px;
}

.hero-marquee-wrapper {
    margin-top: 0;
}

.hero-slide-item {
    display: inline-block;
    margin: 0 25px;
}

.hero-marquee-content {
    animation-duration: 15s;
}

.carousel-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.8s;
}

.carousel-slide.active {
    display: block;
}

.carousel-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold-main);
    color: var(--gold-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold-main);
    color: var(--secondary-color);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--gold-main);
}

.transformation {
    padding: 80px 0;
    background-color: var(--bg-paper);
    text-align: center;
}

.section-desc {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #555;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 30px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid var(--gold-main);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.carousel-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coating-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--gold-dark) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

.carousel-section h2 {
    color: var(--gold-main);
}

.carousel-section .subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.samples-section {
    background: #ffffff;
    margin: 0 auto 40px;
    max-width: 900px;
    padding: 25px 15px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.bonuses-section {
    padding: 80px 0;
    background-color: var(--bg-paper);
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/creampaper.png');
}

.offer-tag {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.offer-subtitle {
    font-family: var(--font-elegant);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 8px;
}

.offer-footnote {
    font-size: 0.95rem;
    color: var(--gold-main);
    font-style: italic;
    margin-top: 8px;
    display: inline-block;
    padding: 2px 8px 0;
    text-decoration: underline;
    text-decoration-color: #000;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: white;
    border: 1px solid var(--gold-dark);
    padding: 40px 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.bonus-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.card-ornament {
    position: absolute;
    width: 15px;
    height: 15px;
    border-color: var(--gold-main);
    border-style: solid;
}

.card-ornament.top-left {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}

.card-ornament.top-right {
    top: 10px;
    right: 10px;
    border-width: 2px 2px 0 0;
}

.card-ornament.bottom-left {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 2px 2px;
}

.card-ornament.bottom-right {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

.bonus-header {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 2px;
}

.bonus-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.summary-img {
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.summary-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.summary-item i {
    font-size: 1.5rem;
    color: var(--gold-main);
}

.summary-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.offer-section {
    padding: 100px 0;
    background: var(--primary-color);
    background-image: url('https://www.transparenttextures.com/patterns/black-linen.png');
}

.offer-frame {
    border: 2px solid var(--gold-main);
    padding: 10px;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 6px;
}

.offer-box {
    background: var(--bg-paper);
    color: var(--text-dark);
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}

.offer-header-box {
    background: linear-gradient(to right, var(--primary-color), #402060);
    color: white;
    padding: 40px 20px;
    border-bottom: 4px solid var(--gold-main);
}

.white i,
.white::before,
.white::after {
    background-color: white !important;
    color: white !important;
}

.offer-header-box h2 {
    font-size: 2.2rem;
    color: var(--gold-main);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.offer-content {
    padding: 40px;
}

.offer-checklist {
    text-align: left;
    margin: 0 auto 30px;
    max-width: 450px;
    list-style: none;
}

.offer-checklist li {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 5px;
}

.offer-checklist i {
    color: var(--primary-color);
}

.pricing-display {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    display: block;
    font-size: 1rem;
}

.current-price {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-title);
    color: var(--primary-color);
    margin: 5px 0;
}

.guarantee-seal {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
}

.guarantee-seal i {
    color: var(--gold-dark);
    font-size: 1.5rem;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-paper);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.98rem;
    color: #444;
    line-height: 1.7;
}

.footer {
    background: #111;
    color: #888;
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid var(--gold-main);
}

.footer-verse {
    font-family: var(--font-elegant);
    font-style: italic;
    margin-top: 10px;
    color: #555;
}

/* --- MARQUEE STYLES --- */
.testimonials {
    padding: 80px 0;
    text-align: center;
    background: white;
    overflow: hidden;
    /* Hide overflow for marquee */
}

.marquee-wrapper {
    width: 100%;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: scroll 40s linear infinite;
}

.testimonial-item,
.sample-item {
    display: inline-block;
    margin: 0 15px;
    vertical-align: middle;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.testimonial-item {
    width: 300px;
}

.sample-item {
    width: 260px;
}

.testimonial-item:hover,
.sample-item:hover {
    transform: scale(1.05);
    z-index: 2;
}

.testimonial-item img,
.sample-item img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll exactly half to seamless loop */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 20s;
        /* Faster on mobile or same speed? Usually same is fine, keeping 20s might be too fast */
    }

    .testimonial-item {
        width: 250px;
    }
}
