/* Custom CSS for Seven Skin Hair Care Landing Page */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&family=Tauri:wght@400&display=swap');

/* Root Variables */
:root {
    --primary-color: #006867;
    --secondary-color: #f05a41;
    --accent-color: #cce1e1;
    --text-color: #000000;
    --white: #ffffff;
    --light-bg: rgba(0, 104, 103, 0.1);
    --teko-font: 'Teko', sans-serif;
    --tauri-font: 'Tauri', sans-serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Normalize default image layout to avoid inline-gap and layout jumps */
img { display: block; max-width: 100%; height: auto; }

body {
    font-family: var(--teko-font);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header Styles */
.header-section {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-seven {
    font-family: var(--teko-font);
    font-weight: 700;
    font-size: 3rem;
    color: var(--secondary-color);
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-seven-text {
    font-family: var(--teko-font);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: -0.2rem;
}

.logo-skin-text {
    font-family: var(--teko-font);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.1rem;
}

.logo-tagline {
    font-family: var(--teko-font);
    font-weight: 300;
    font-size: 0.7rem;
    color: var(--accent-color);
    line-height: 1;
    letter-spacing: 0.5px;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0.7rem;
    padding: 0.35rem 1.1rem;
    background: #e9f4f4;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--white);
    background: var(--primary-color);
}

.header-offer {
    background: var(--accent-color);
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
}

.limited-offer {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: var(--primary-color);
    padding: 1rem 0 2rem;
    position: relative;
    min-height: 70vh;
}

/* Thin left accent line like Figma */
.hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #0b4b4a;
    box-shadow: 2px 0 0 rgba(255,255,255,0.15) inset;
    z-index: 0;
}

.hero-content {
    color: var(--white);
    z-index: 2;
    position: relative;
    max-width: 720px;
}

.hero-title {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    max-width: 760px;
}

/* Remove the white rounded box under headline */
.hero-curve { display: none; }

.hero-image {
    position: relative;
    text-align: right;
}

.hero-image::before {
    /* Symmetric rounded blob behind hero, consistent across sections */
    content: "";
    position: absolute;
    right: 4%;
    top: 50%;
    width: 520px;
    height: 380px;
    background: #006d6c;
    border-radius: 240px;
    clip-path: ellipse(70% 60% at 55% 50%);
    transform: translateY(-50%);
    z-index: 1;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.25));
}

.hero-img {
    width: auto;
    max-width: 560px;
    max-height: 520px;
    border-radius: 0;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.35));
    margin-top: 0px;
    margin-bottom: -85px;
    position: relative;
    z-index: 2;
}

.hero-arrow {
    position: absolute;
    left: 52%;
    top: 18%;
    width: 32%;
    max-width: 420px;
    opacity: 0.95;
    pointer-events: none;
    filter: drop-shadow(0 2px 0 rgba(255,255,255,0.2));
    z-index: 1;
}

/* Responsive tune for hero */
@media (max-width: 1200px) {
    .hero-img { max-width: 500px; max-height: 470px; margin-top: 0px; margin-bottom: -70px; }
    .hero-image::before { width: 460px; height: 340px; right: 2%; clip-path: ellipse(70% 60% at 55% 50%); }
    .hero-arrow { left: 48%; top: 20%; width: 36%; }
}
@media (max-width: 991px) {
    .hero-section { padding: 0.8rem 0 1.5rem; min-height: auto; }
    .hero-image { text-align: center; margin-top: 0.5rem; }
    .hero-img { max-width: 420px; max-height: 420px; margin-top: 0px; margin-bottom: -70px; }
    .hero-image::before { width: 380px; height: 300px; left: 50%; right: auto; transform: translate(-50%, -48%); clip-path: ellipse(70% 60% at 55% 50%); }
    .hero-arrow { left: 20%; top: 12%; width: 62%; max-width: 320px; }
    .hero-curve { height: 140px; border-radius: 24px; }
}

@media (max-width: 576px) {
    .hero-arrow { display: none; }
    .hero-title { font-size: 2.4rem; max-width: 100%; }
    .hero-image::before { width: 280px; height: 210px; transform: translate(-50%, -48%); clip-path: ellipse(70% 60% at 55% 50%); }
}

/* CTA Section */
.sec-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.cta-section {
    background: var(--white);
    padding: 4rem 0;
    position: relative;
}

.cta-title {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-family: var(--teko-font);
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.cta-btn {
    background: var(--secondary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 20px;
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #d14a33;
    transform: translateY(-2px);
}

.product-images {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: end;
    position: relative;
}

.product-item {
    text-align: center;
    position: relative;
}

.product-item img {
    border-radius: 10px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
}

/* CTA product stage (curved teal base) */
.product-stage {
    position: absolute;
    bottom: -2rem;
    right: -125px;
    left: 0;
    height: 220px;
    background: var(--primary-color);
    border-top-left-radius: 160px;
    /* border-top-right-radius: 160px; */
    z-index: 0;
}

.product-bottle {
    height: 360px;
    width: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.35));
    position: relative;
    z-index: 1;
    border-radius: 0;
    object-fit: contain;
}

.product-label {
    /* position: absolute;
    bottom: -20px;
    left: 50%; */
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 1.1rem;
    white-space: normal;
    line-height: 1.1;
    text-align: center;
}

/* Problems Section */
.problems-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.section-title {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.problem-item {
    margin-bottom: 2rem;
}

.problem-icon img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.problem-text {
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.problems-description {
    font-family: var(--teko-font);
    font-size: 1.6rem;
    color: var(--text-color);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section */
.products-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.section-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    margin-bottom: 3rem;
    border-radius: 0;
}

.section-header .section-title {
    color: var(--white);
    margin-bottom: 0;
}

.product-showcase {
    position: relative;
    text-align: center;
    padding: 2rem;
}

/* Decorative half-circle shapes behind product bottles (no HTML change) */
.product-showcase::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 360px;
    background: var(--primary-color);
    border-radius: 260px;
    clip-path: ellipse(70% 60% at 45% 50%);
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Right-side variant for the second product column */
.order-lg-2 .product-showcase::before {
    left: auto;
    right: -60px;
    clip-path: ellipse(70% 60% at 55% 50%);
}

/* Base stage like CTA under each product (rounded top platform) */
.product-showcase::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 86%;
    height: 180px;
    background: var(--primary-color);
    border-top-left-radius: 160px;
    border-top-right-radius: 160px;
    z-index: 1;
}

/* Remove decorative shapes in product section when using precomposed PNGs */
.product-showcase::before,
.order-lg-2 .product-showcase::before,
.product-showcase::after,
.product-bg-circle,
.product-bg-circle-right { display: none !important; content: none !important; }

.product-bg-circle,
.product-bg-circle-right {
    position: absolute;
    width: 420px;
    height: 420px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    z-index: 1;
}

/* Offset the background circles to mimic reference half-circles */
.product-bg-circle { left: 38%; transform: translate(-50%, -50%); }
.product-bg-circle-right { left: 62%; transform: translate(-50%, -50%); }

.product-image {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: 0;
    box-shadow: none;
    width: auto;
    height: 420px;
    margin: 0 auto;
    transform: none;
    object-fit: contain;
}
.order-lg-2 .product-image { left: auto; }


.product-info {
    padding: 2rem;
}

.product-title {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-benefits {
    list-style: none;
    padding: 0;
}

.product-benefits li {
    font-family: var(--teko-font);
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 2rem;
}

.product-benefits li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.combo-btn {
    background: var(--secondary-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 20px;
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.combo-btn:hover {
    background: #d14a33;
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works-section {
    background: var(--primary-color);
    padding: 4rem 0;
    color: var(--white);
}

.section-subtitle {
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.steps-title {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.step-item {
    margin-bottom: 2rem;
}

.step-number {
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.step-image {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 327 / 359; /* match Figma portrait ratio */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Ensure consistent card height for steps */
.step-item { display: flex; flex-direction: column; align-items: center; }

.step-description {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--white);
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--white);
}

.trust-image img {
    /* border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.trust-content {
    padding: 2rem;
}

.trust-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.trust-benefits li {
    font-family: var(--teko-font);
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.trust-benefits li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.trust-btn {
    background: var(--secondary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 20px;
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.trust-btn:hover {
    background: #d14a33;
    transform: translateY(-2px);
}

/* Order Section */
.order-section {
    /* background: var(--accent-color); */
    padding: 4rem 0;
}

.order-form-container {
    /* background: var(--white); */
    padding: 2rem;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.form-label {
    font-family: var(--teko-font);
    font-weight: 300;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-control {
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1rem;
    font-family: var(--teko-font);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.order-note {
    font-family: var(--teko-font);
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 1rem 0;
}

.submit-btn {
    background: var(--secondary-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d14a33;
    transform: translateY(-2px);
}

.offer-timer {
    text-align: center;
    padding: 2rem;
}

.timer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.timer-title {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timer-subtitle {
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timer-unit {
    text-align: center;
}

.timer-number {
    background: #f5f5f5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.timer-label {
    font-family: var(--teko-font);
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-color);
}

.timer-warning {
    font-family: var(--teko-font);
    font-size: 1.8rem;
    color: var(--text-color);
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: var(--white);
}

.review-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    margin-bottom: 2rem;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-mark {
    font-family: var(--tauri-font);
    font-size: 6rem;
    color: var(--text-color);
    position: absolute;
    top: -10px;
    left: 10px;
    line-height: 1;
}

.quote-mark-end {
    font-family: var(--tauri-font);
    font-size: 6rem;
    color: var(--text-color);
    position: absolute;
    bottom: -20px;
    right: 10px;
    line-height: 1;
    /* transform: rotate(180deg); */
}

.review-text {
    font-family: var(--teko-font);
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 2rem 0;
    text-align: center;
    z-index: 2;
    position: relative;
}

.reviewer-name {
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0;
}

.triangle-image {
    position: absolute;
    bottom: -30px;
    right: 50%;
    width: 80px;
    height: 80px;
}

/* Slider controls but keep original card design */
.reviews-slider { position: relative; display: flex; align-items: center; gap: 12px; }
.reviews-track { display: flex; overflow: hidden; scroll-behavior: smooth; }
.reviews-track .review-card { margin: 0 12px; flex: 0 0 auto; width: 360px; }
.reviews-nav { background: var(--primary-color); color: #fff; border: none; width: 8%; height: 25%; border-radius: 50%; display: grid; place-items: center; font-size: 24px; cursor: pointer; }
.reviews-nav:hover { background: #0b4b4a; }

@media (max-width: 992px) {
    .reviews-track .review-card { width: 320px; }
}
@media (max-width: 576px) {
    .reviews-slider { gap: 6px; }
    .reviews-track .review-card { width: 85vw; margin: 0 8px; }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--white);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: var(--accent-color);
    color: var(--text-color);
    font-family: var(--teko-font);
    font-weight: 500;
    font-size: 1.4rem;
    border: none;
    border-radius: 10px;
    padding: 1.5rem;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: var(--text-color);
}

.accordion-body {
    background: var(--accent-color);
    font-family: var(--teko-font);
    font-weight: 300;
    font-size: 1.3rem;
    color: var(--text-color);
    border-radius: 0 0 10px 10px;
    padding: 1rem 1.5rem;
}

/* Footer */
.footer-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-title {
    font-family: var(--teko-font);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--teko-font);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
}

.footer-bottom p {
    font-family: var(--teko-font);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 0.5rem;
        font-size: 1.1rem;
    }
    
    .product-images {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .timer-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-image { max-width: 200px; }

    /* Scale down product visuals */
    .product-image { height: 360px; }
    .product-bottle { height: 300px; }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .order-form-container {
        padding: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .quote-mark,
    .quote-mark-end {
        font-size: 4rem;
    }

    /* Tighten sections for mobile and keep proportions */
    .products-section { padding: 3rem 0; }
    .how-it-works-section { padding: 3rem 0; }
    .trust-section { padding: 3rem 0; }
    .order-section { padding: 3rem 0; }

    .product-image { height: 300px; }
    .product-bottle { height: 240px; }
}

/* Responsive fixes for Order Section (sec-7) */
@media (max-width: 992px) {
    /* Keep heading in normal flow to avoid overlap */
    .sec-7-heading {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin-bottom: 1.25rem;
    }

    .order-row { padding: 1rem; border-radius: 16px; }
    .order-form-container { padding: 1.25rem; }
}

@media (max-width: 576px) {
    .sec-7-topheading { margin-bottom: 32px; }
    .order-row { padding: 0.75rem; border-radius: 14px; }
    .order-form-container { padding: 1rem; }
    .form-label { font-size: 1.4rem; }
    .form-control { padding: 0.7rem 0.9rem; font-size: 1.1rem; }
    .timer-title { font-size: 2rem; }
    .timer-subtitle { font-size: 1.4rem; }
    /* Make the order heading a clean full-width bar on mobile */
    .sec-7-heading {
        display: block;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    .order-row-header { height: 36px; }
}

/* Custom Bootstrap overrides */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #d14a33;
    border-color: #d14a33;
}

.text-danger {
    color: #dc3545 !important;
}

.sec-4 {
    position: relative;
}

.sec-4-heading {
    position: absolute;
    top: -4%;
    left: 25%;
    right: 25%;
}

.sec-4-topheading {
    margin-bottom: 70px;
}

.sec-5 {
    position: relative;
}

.sec-5-heading {
    position: absolute;
    top: -4%;
    left: 25%;
    right: 25%;
}

.sec-5-topheading {
    margin-bottom: 70px;
}

.sec-6-header{
    display: flex;
    justify-content: center;
    background: none;
}

.sec-6-heading{
    background: #006867;
    width: fit-content;
    padding: 10px 20px;
}

.sec-7 {
    position: relative;
}

.sec-7-heading {
    position: absolute;
    top: -4%;
    left: 30%;
    right: 30%;
}

.order-row {
    background: var(--accent-color);
    border-radius: 20px;
}

.order-row-header{
    height: 50px;
    background-color: #006867;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.sec-4-container {
    max-width: 100% !important;
}
@media (min-width: 1400px) {
    .sec-4-container {
        max-width: 100% !important;
    }
}

/* Responsive fixes for How It Works (sec-5) */
@media (max-width: 992px) {
    /* Avoid overlapping previous section on tablet/mobile */
    .sec-5-heading {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .sec-5-topheading { margin-bottom: 32px; }
    .steps-container { margin-top: 1.5rem; margin-bottom: 1.5rem; }
    .step-number { font-size: 2rem; }
    .step-description { font-size: 1.2rem; }
}

/* ===== Order section visual balance & fixes (paste at end of styles.css) ===== */

/* Make order-row a true two-column card with equal height */
.order-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    padding: 28px;
    background: var(--accent-color);
    border-radius: 18px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.04);
}

/* Keep internal cards consistent */
.order-form-container,
.offer-timer {
    background: var(--white);
    border-radius: 14px;
    padding: 26px;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Make the left form visually lighter and compact */
.form-label {
    font-size: 1.15rem; /* smaller than previous, avoids crowding */
    font-weight: 600;
    color: #0b4b4a;
    margin-bottom: 6px;
    display: block;
}

/* Input sizing and spacing */
.form-control {
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.9rem;
    background: #f7f7f7;
    border: 1px solid rgba(0,0,0,0.04);
}

/* Reduce placeholder weight to avoid visual aggression */
.form-control::placeholder {
    color: rgba(0,0,0,0.35);
    font-weight: 300;
}

/* Better select styling */
.form-select {
    padding: 0.78rem 0.9rem;
    border-radius: 10px;
    font-size: 1.03rem;
    border: 1px solid rgba(0,0,0,0.06);
    background: #f8f8f8;
}

/* Align offer panel text to left for dynamic updates */
#offerPanel { text-align: left; }

/* Adjust form note & small text */
.order-note, .form-text, .small {
    font-size: 0.95rem;
    color: rgba(0,0,0,0.7);
}

/* CTA Button: strong but not huge */
.submit-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 18px;
    font-size: 1.15rem;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 6px 18px rgba(208, 74, 51, 0.12);
    border: none;
    transition: transform .18s ease;
}
.submit-btn:hover { transform: translateY(-3px); }

/* Price block emphasis in offer panel */
.offer-timer .price h4 {
    font-size: 1.6rem;
    margin: 0.35rem 0 0.1rem;
    color: #0b4b4a;
}
.offer-timer .price small { color: rgba(0,0,0,0.45); }

/* Countdown tiles larger but compact */
.timer-number {
    width: 68px;
    height: 68px;
    font-size: 1.35rem;
    border-radius: 12px;
    background: #f6f6f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Countdown label */
.timer-label {
    font-size: 0.95rem;
    color: rgba(0,0,0,0.6);
}

/* Benefits list spacing and icon bullet */
.benefits ul, .product-benefits { padding-left: 1.25rem; }
.benefits li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: rgba(0,0,0,0.8);
}

/* Testimonial styling */
.testimonial blockquote {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(0,0,0,0.75);
    border-left: 3px solid var(--primary-color);
    padding-left: 10px;
}

/* sec-7 heading bar centered and full-width at large screens */
.sec-7-heading {
    position: relative;
    top: -36px;
    margin-left: auto;
    margin-right: auto;
    width: min(880px, 92%);
    background: var(--primary-color);
    color: #fff;
    padding: 16px 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Make the interior content breathe on wide screens */
@media (min-width: 1200px) {
    .order-form-container { padding: 30px; }
    .offer-timer { padding: 30px; }
}

/* Responsive: stack columns vertically on tablet and mobile */
@media (max-width: 991px) {
    .order-row {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }
    .sec-7-heading { top: -22px; padding: 12px; width: calc(100% - 28px); }
    .timer-number { width: 56px; height: 56px; font-size: 1.1rem; }
    .form-label { font-size: 1rem; }
    .form-control { font-size: 1rem; padding: 0.7rem 0.9rem; }
    .submit-btn { font-size: 1.05rem; padding: 10px; }
}

/* Small fix: keep form controls full width inside grid */
.order-form-container .form-control,
.order-form-container .form-select,
.order-form-container .submit-btn {
    width: 100%;
    display: block;
}

/* Accessibility: larger tap targets for checkboxes */
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
}

/* Ensure the white card doesn't overflow rounded background */
.order-row { overflow: visible; }

/* Optional: subtle border accent on the left form to separate visually */
.order-form-container { border-left: 6px solid rgba(0,104,103,0.06); }

/* End of order section fix patch */

/* ===== Shop (3-product) section ===== */
.shop-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.shop-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.shop-card.combo { 
    border-top: 6px solid var(--secondary-color);
    border-bottom: 6px solid var(--secondary-color); 
}

.shop-card-media { text-align: center; }
.shop-product-img { height: 220px; width: auto; object-fit: contain; margin: 0 auto; filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18)); }
.shop-product-img.small { height: 180px; }

.shop-title {
    font-family: var(--teko-font);
    font-weight: 600;
    font-size: 1.9rem;
    color: var(--primary-color);
    margin: 2px 0 10px;
    text-align: left;
}

.shop-card .shop-card-media { margin-bottom: 8px; }

.shop-features { list-style: none; padding-left: 0; margin: 0 0 10px; }
.shop-features li { position: relative; padding-left: 18px; margin-bottom: 8px; font-family: var(--teko-font); text-align: left; }
.shop-features li::before { content: ""; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--primary-color); border-radius: 50%; }

.shop-price { font-family: var(--teko-font); font-size: 1.6rem; color: #0b4b4a; text-align: left; }
.shop-mrp { font-size: 1rem; color: rgba(0,0,0,0.55); margin-left: 6px; }

@media (max-width: 576px) {
    .shop-product-img { height: 180px; }
}
