/* ============================================
   POP VIDEO ORNAMENTS - FESTIVE STYLESHEET
   ============================================ */

/* === COLOR VARIABLES === */
:root {
    /* Warm Nostalgia Theme: Burgundy wine #6b2737, Copper #b87333, Aged parchment #f5efe0 */
    --ornament-primary: #6b2737;       /* Primary color */
    --ornament-secondary: #b87333;     /* Secondary/accent color */
    --ornament-background: #f5efe0;    /* Background color */
    --ornament-primary-dark: #4a1a25;  /* Darker primary for text */
    --ornament-secondary-light: #d4a574; /* Light secondary for hovers */
    --ornament-secondary-glow: rgba(184, 115, 51, 0.3); /* Secondary transparency */
    --ornament-primary-fade: rgba(107, 39, 55, 0.1); /* Primary transparency */
    --ornament-border: var(--ornament-secondary);  /* Border uses secondary */
    --ornament-text: var(--ornament-primary-dark); /* Text color */
    --ornament-text-light: #7a5548;    /* Muted text */
    --ornament-white: #ffffff;
    --ornament-shadow: rgba(107, 39, 55, 0.15);
}

/* === GLOBAL STYLES === */
body {
    background: var(--ornament-background);
    color: var(--ornament-text);
    line-height: 1.6;
}

.header {
    background-color: var(--ornament-background);
}

.header .logo img {
    filter: hue-rotate(-20deg) brightness(1.2);
}

.header .headmenu a {
    color: var(--ornament-primary-dark);
}

footer {
    border-top: 4px dotted var(--ornament-secondary-light);
    padding-top: 15px;
    color: var(--ornament-primary-dark);
    font-weight: bold;
}

/* === TYPOGRAPHY === */
.heading-hero {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--ornament-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.heading-section {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--ornament-primary-dark);
    margin-bottom: 1.5rem;
}

.heading-card {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--ornament-secondary);
    margin-bottom: 0.75rem;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--ornament-text-light);
}

.text-center {
    text-align: center;
}

/* === LAYOUT === */
.section {
    padding: 3rem 1rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* === BUTTONS === */
.btn-primary {
    font-size: 1.75rem;
    background: var(--ornament-primary);
    color: var(--ornament-white);
    border: 2px solid var(--ornament-secondary);
    padding: 15px 35px;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--ornament-secondary-glow);
    transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(184, 115, 51, 0.6);
    background: var(--ornament-secondary);
}

.buybutton-container {
    text-align: center;
    padding: 1.5rem 0;
    margin: 1rem 0;
}

.promotion {
    background: black;
    color: white;
    display: inline-block;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 5px;
}

.originalprice {
    text-decoration: line-through;
    font-weight: normal;
    margin-left: 10px;
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, var(--ornament-primary-fade), var(--ornament-secondary-glow));
    padding: 3rem 1rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--ornament-text);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px var(--ornament-shadow);
    margin-top: 2rem;
}

/* === CARD COMPONENTS === */
.card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--ornament-secondary);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 12px var(--ornament-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px var(--ornament-shadow);
}

/* === EMOTION SECTION === */
.section-emotion {
    background: rgba(255, 255, 255, 0.5);
}

.emotion-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.emotion-card {
    text-align: left;
}

.emotion-card strong {
    color: var(--ornament-primary);
}

/* === HOW IT WORKS SECTION === */
.section-howto {
    background: transparent;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 2px solid var(--ornament-secondary);
    transition: transform 0.2s;
}

.step-item:hover {
    transform: scale(1.03);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--ornament-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 3px solid var(--ornament-secondary);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--ornament-white);
}

.howto-image {
    max-width: 400px;
    width: 100%;
    display: block;
    margin: 2rem auto;
    border-radius: 10px;
}

/* === VALUE PROPOSITION SECTION === */
.section-values {
    background: rgba(255, 255, 255, 0.5);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    color: var(--ornament-secondary);
    margin-bottom: 1rem;
}

.value-icon i {
    display: inline-block;
}

/* === PRODUCT SECTION === */
.section-product {
    background: transparent;
    text-align: center;
}

.product-showcase {
    margin: 2rem 0;
}

.product-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.product-images img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--ornament-shadow);
}

/* === FEATURES SECTION === */
.section-features {
    background: rgba(255, 255, 255, 0.5);
}

.features-list {
    max-width: 700px;
    margin: 2rem auto;
}

.feature-items {
    list-style: none;
    padding: 0;
}

.feature-items li {
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ornament-primary-fade);
    display: flex;
    align-items: center;
}

.feature-items li:last-child {
    border-bottom: none;
}

.feature-items li i {
    color: var(--ornament-secondary);
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* === FAQ SECTION === */
.section-faq {
    background: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 2rem auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--ornament-secondary);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    color: var(--ornament-primary);
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-question:hover {
    background: var(--ornament-secondary-glow);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    padding: 1rem 1.5rem 1.5rem;
}

/* === TECHNOLOGY SECTION === */
.section-tech {
    background: rgba(255, 255, 255, 0.5);
}

.tech-expandable {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--ornament-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.tech-header {
    color: var(--ornament-secondary);
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.25rem;
    font-weight: 600;
}

.tech-header:hover {
    background: var(--ornament-secondary-glow);
}

.tech-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tech-expandable.open .tech-content {
    max-height: 1000px;
    padding: 1rem 1.5rem 1.5rem;
}

/* === SHARING SECTION === */
.section-share {
    background: transparent;
    text-align: center;
}

.section-share a {
    color: var(--ornament-secondary);
    font-weight: bold;
    text-decoration: underline;
}

.section-share a:hover {
    color: var(--ornament-primary);
}

/* === FINAL CTA SECTION === */
.section-final-cta {
    background: linear-gradient(135deg, var(--ornament-secondary-glow), var(--ornament-primary-fade));
    padding: 4rem 1rem;
    text-align: center;
}

/* === RESPONSIVE DESIGN === */

/* Tablets and up */
@media (min-width: 768px) {
    .heading-hero {
        font-size: 3rem;
    }

    .heading-section {
        font-size: 2.25rem;
    }

    .emotion-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-images img {
        max-width: 45%;
    }

    .section {
        padding: 4rem 1rem;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .heading-hero {
        font-size: 3.5rem;
    }

    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section {
        padding: 5rem 1rem;
    }
}

/* === HERO RATING === */
.hero-rating {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: var(--ornament-primary-dark);
}

.hero-rating .star-rating i {
    color: var(--ornament-secondary);
    font-size: 1.3rem;
}

.hero-rating .rating-text {
    margin-left: 0.5rem;
    color: var(--ornament-text-light);
}

/* === TESTIMONIALS SECTION === */
.section-testimonials {
    background: var(--ornament-primary-fade);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--ornament-secondary);
    text-align: center;
    padding: 2rem;
}

.testimonial-card.featured {
    border: 3px solid var(--ornament-primary);
    box-shadow: 0 12px 24px var(--ornament-shadow);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: var(--ornament-secondary);
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--ornament-primary-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--ornament-primary);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* === PERMANENT VIDEO NOTICE === */
.section-permanent-notice {
    background: transparent;
    padding: 2rem 1rem;
}

.permanent-callout {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(107, 39, 55, 0.05), rgba(184, 115, 51, 0.05));
    border: 2px solid var(--ornament-secondary);
    border-left: 6px solid var(--ornament-primary);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.permanent-icon {
    font-size: 3rem;
    color: var(--ornament-primary);
    margin-bottom: 1rem;
}

.permanent-heading {
    color: var(--ornament-primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.permanent-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--ornament-primary-dark);
    margin-bottom: 1rem;
}

.permanent-warning {
    font-size: 1rem;
    color: var(--ornament-secondary);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ornament-secondary);
}

/* === UTILITY CLASSES === */
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
