/* ============================================
   POP VIDEO HEARTS - VALENTINE'S STYLESHEET
   ============================================ */

/* Valentine's Day Color Palette:
   Primary: #e91e63 (Hot pink)
   Secondary: #f50057 (Vibrant magenta)
   Accent: #ff4081 (Light pink)
   Background: #fff0f5 (Lavender blush)
   Dark text: #4a0020 (Deep burgundy)
   Light text: #8e4061 (Muted pink)
*/

/* === GLOBAL STYLES === */
body {
    background: #fff0f5;
    color: #4a0020;
    line-height: 1.6;
}

.header {
    background-color: #fff0f5;
}

.header .logo img {
    filter: hue-rotate(320deg) saturate(1.3);
}

.header .headmenu a {
    color: #4a0020;
}

footer {
    border-top: 4px dotted #ff80ab;
    padding-top: 15px;
    color: #4a0020;
    font-weight: bold;
}

/* === TYPOGRAPHY === */
.heading-hero {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #e91e63;
    margin-bottom: 1rem;
    text-align: center;
}

.heading-section {
    font-size: 2rem;
    line-height: 1.3;
    color: #c2185b;
    margin-bottom: 1.5rem;
}

.heading-card {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #f50057;
    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: #8e4061;
}

.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: #e91e63;
    color: #ffffff;
    border: 2px solid #f50057;
    padding: 15px 35px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(245, 0, 87, 0.3);
    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(245, 0, 87, 0.6);
    background: #f50057;
}

.btn-secondary {
    font-size: 1.25rem;
    background: #ff4081;
    color: #ffffff;
    border: 2px solid #e91e63;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #e91e63;
    transform: scale(1.03);
}

.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: #ffffff;
    padding: 3rem 1rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #4a0020;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #ffcdd2;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
    margin-top: 2rem;
    background: transparent;
}

/* === CARD COMPONENTS === */
.card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #f50057;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 12px rgba(233, 30, 99, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(233, 30, 99, 0.15);
}

/* === PRODUCT INTRODUCTION SECTION === */
.section-product-intro {
    background: #ffffff;
    padding: 3rem 1rem;
}

.product-intro-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff0f5;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ffcdd2;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.intro-visual {
    text-align: center;
}

.intro-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #ffcdd2;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
    background: transparent;
}

.intro-explanation {
    text-align: left;
}

.intro-explanation p {
    margin-bottom: 1rem;
    color: #4a0020;
}

.intro-explanation strong {
    color: #e91e63;
}

.intro-tagline {
    font-style: italic;
    color: #f50057;
    font-size: 1.35rem !important;
    margin-top: 1.5rem !important;
    padding-top: 1rem;
    border-top: 2px solid rgba(233, 30, 99, 0.2);
}

/* === 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: #e91e63;
}

/* === 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 #f50057;
    transition: transform 0.2s;
}

.step-item:hover {
    transform: scale(1.03);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 3px solid #f50057;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
}

.howto-image {
    max-width: 400px;
    width: 100%;
    display: block;
    margin: 2rem auto;
    border-radius: 10px;
    border: 3px solid #ffcdd2;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.2);
    background: transparent;
}

/* === 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: #f50057;
    margin-bottom: 1rem;
}

.value-icon i {
    display: inline-block;
}

/* === PRODUCT SHOWCASE SECTION (MULTI-PRODUCT) === */
.section-products {
    background: transparent;
    padding: 4rem 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 3px solid #ffcdd2;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.15);
    background: transparent;
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    white-space: pre-line;
    color: #4a0020;
}

.product-oneliner {
    font-style: italic;
    color: #f50057;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

.product-buy {
    margin-top: auto;
    padding-top: 1rem;
}

.btn-product {
    font-size: 1.1rem;
    padding: 12px 24px;
}

.bulk-contact-card {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem;
    background: #fff0f5;
    border: 3px solid #e91e63;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.15);
}

/* === PRODUCT SECTION (SINGLE) === */
.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;
    border: 3px solid #ffcdd2;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.15);
    background: transparent;
}

/* === 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 rgba(233, 30, 99, 0.1);
    display: flex;
    align-items: center;
}

.feature-items li:last-child {
    border-bottom: none;
}

.feature-items li i {
    color: #f50057;
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* === PRIVACY SECTION === */
.section-privacy {
    background: #fff5f8;
    padding: 3rem 1rem;
}

.privacy-card {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    background: #ffffff;
    border: 3px solid #ffcdd2;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}

.privacy-content {
    padding: 0;
}

.privacy-icon {
    font-size: 4rem;
    color: #f50057;
    margin-bottom: 1.5rem;
    background: #fff0f5;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #ffcdd2;
}

.privacy-icon i {
    display: inline-block;
}

.privacy-card h3 {
    color: #e91e63;
    margin: 1.5rem 0 1rem;
    font-size: 1.75rem;
}

.privacy-card p {
    margin: 1rem 0;
    line-height: 1.6;
}

.pin-tips {
    list-style: none;
    padding: 0;
    margin: 2rem auto;
    max-width: 500px;
    text-align: left;
    background: #fff0f5;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    border-left: 4px solid #f50057;
}

.pin-tips li {
    padding: 0.75rem 0 0.75rem 2.5rem;
    position: relative;
    font-size: 1.125rem;
    color: #4a0020;
    line-height: 1.5;
}

.pin-tips li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f50057;
    font-size: 1.5rem;
    font-weight: bold;
}

/* === 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 #f50057;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    color: #e91e63;
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-question:hover {
    background: rgba(245, 0, 87, 0.3);
}

.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 #f50057;
    border-radius: 10px;
    overflow: hidden;
}

.tech-header {
    color: #f50057;
    padding: 1.25rem 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.25rem;
    font-weight: 600;
}

.tech-header:hover {
    background: rgba(245, 0, 87, 0.3);
}

.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: #f50057;
    font-weight: bold;
    text-decoration: underline;
}

.section-share a:hover {
    color: #e91e63;
}

/* === FINAL CTA SECTION === */
.section-final-cta {
    background: #fff0f5;
    padding: 4rem 1rem;
    text-align: center;
    border-top: 3px solid #ffcdd2;
}

/* === HERO RATING === */
.hero-rating {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: #c2185b;
}

.hero-rating .star-rating i {
    color: #f50057;
    font-size: 1.3rem;
}

.hero-rating .rating-text {
    margin-left: 0.5rem;
    color: #8e4061;
}

/* === TESTIMONIALS SECTION === */
.section-testimonials {
    background: #fff5f8;
}

.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 #f50057;
    text-align: center;
    padding: 2rem;
}

.testimonial-card.featured {
    border: 3px solid #e91e63;
    box-shadow: 0 12px 24px rgba(233, 30, 99, 0.15);
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #f50057;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    color: #c2185b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #e91e63;
    font-size: 1rem;
}

/* === PERMANENT VIDEO NOTICE === */
.section-permanent-notice {
    background: transparent;
    padding: 2rem 1rem;
}

.permanent-callout {
    max-width: 800px;
    margin: 0 auto;
    background: #fff5f8;
    border: 2px solid #ffcdd2;
    border-left: 6px solid #e91e63;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.1);
}

.permanent-icon {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 1rem;
}

.permanent-heading {
    color: #e91e63;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.permanent-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #c2185b;
    margin-bottom: 1rem;
}

.permanent-warning {
    font-size: 1rem;
    color: #f50057;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f50057;
}

/* === RESPONSIVE DESIGN === */

/* Tablets and up */
@media (min-width: 768px) {
    .heading-hero {
        font-size: 3rem;
    }

    .heading-section {
        font-size: 2.25rem;
    }

    .intro-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .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-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-images {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .product-images img {
        max-width: 45%;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .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);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section {
        padding: 5rem 1rem;
    }
}

/* === 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; }

/* === SIGNIN MODAL - HEART THEME === */
/* Apply Valentine's theme to signin modal when on heart pages */
body.scantype-heart .popover-inner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 245, 0.95)) !important;
    border: 3px solid #ff4081 !important;
}

body.scantype-heart #login_form input:focus {
    border-color: #e91e63 !important;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1) !important;
}

body.scantype-heart #login_form .login-button {
    background: linear-gradient(135deg, #e91e63 0%, #f50057 100%) !important;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4) !important;
    border: 2px solid #f50057 !important;
}

body.scantype-heart #login_form .login-button:hover {
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6) !important;
    background: linear-gradient(135deg, #f50057 0%, #e91e63 100%) !important;
}

body.scantype-heart #code-container .code-input:focus {
    border-color: #e91e63 !important;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1) !important;
}

body.scantype-heart .g_id_signin {
    border: 2px solid #ff4081 !important;
}

body.scantype-heart #login_form a {
    color: #e91e63 !important;
}

body.scantype-heart #login_form a:hover {
    color: #c2185b !important;
}

body.scantype-heart .submit-button {
    background: linear-gradient(135deg, #e91e63 0%, #f50057 100%) !important;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4) !important;
}

body.scantype-heart .submit-button:hover {
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6) !important;
}

body.scantype-heart .account-nest {
    color: #e91e63 !important;
}

body.scantype-heart .account-nest:hover {
    background-color: #e91e63 !important;
    color: white !important;
}

/* Heart decorative elements */
body.scantype-heart .popover-inner::before {
    content: '💕';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.6;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
