/* ========================================
   HERO
======================================== */ 

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    background-image: url("../images/hero-alt.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: var(--color-white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(25, 18, 8, 0.88) 0%,
            rgba(25, 18, 8, 0.70) 38%,
            rgba(25, 18, 8, 0.35) 70%,
            rgba(25, 18, 8, 0.18) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 1;

    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.hero-content {
    max-width: 650px;
    padding: 80px 0;
}


/* Label */

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;
    padding: 7px 13px 7px 8px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.9);

    font-size: 14px;
    font-weight: 500;

    backdrop-filter: blur(5px);
}

.hero-label-icon {
    width: 27px;
    height: 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-accent);
    color: var(--color-dark);

    font-size: 14px;
}


/* Heading */

.hero h1 {
    max-width: 650px;

    font-family: var(--font-secondary);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--color-accent);
}


/* Text */

.hero-text {
    max-width: 530px;

    margin-top: 22px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
    line-height: 1.8;
}


/* Actions */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
}

.hero .btn {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 22px;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.hero .btn:hover {
    transform: translateY(-2px);
}

.hero .btn-primary {
    background: var(--color-accent);
    color: var(--color-dark);
}

.hero .btn-primary:hover {
    background: #e5b451;
}

.hero .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);

    backdrop-filter: blur(4px);
}

.hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.12);
}


/* Trust */

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}

.trust-item i {
    color: var(--color-accent);
    font-size: 15px;
}


/* Scroll */

.hero-scroll {
    position: absolute;
    z-index: 2;

    left: 50%;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;

    transform: translateX(-50%);

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;

    transition: color 0.2s ease;
}

.hero-scroll i {
    font-size: 15px;
}

.hero-scroll:hover {
    color: var(--color-white);
}


/* Responsive */

@media (max-width: 768px) {

    .hero {
        min-height: 620px;

        background-position: 60% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(25, 18, 8, 0.86),
                rgba(25, 18, 8, 0.60)
            );
    }

    .hero-content {
        max-width: 590px;
        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(38px, 8vw, 52px);
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-scroll {
        display: none;
    }
}


@media (max-width: 520px) {

    .hero {
        min-height: 590px; 
    }

    .hero-container {
        width: min(100% - 30px, 1180px);
    }

    .hero-content {
        padding: 55px 0;
    }

    .hero-label {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .hero-text {
        margin-top: 17px;

        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        margin-top: 25px;
        gap: 9px;
    }

    .hero .btn {
        min-height: 47px;
        padding: 0 17px;

        font-size: 14px;
    }

    .hero-trust {
        gap: 9px 16px;
        margin-top: 27px;
    }

    .trust-item {
        font-size: 12px;
    }

}


 /* ========================================
    HONEY BENEFITS
 ======================================== */

.honey-benefits {
    padding: 100px 0;
    background: #fffaf0;
}

.honey-benefits .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* Section Heading */

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;

    color: var(--color-primary);

    font-size: 15px;
    font-weight: 600;
}

.section-heading h2 {
    margin: 0 0 16px;

    color: var(--color-dark);

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.25;
    font-weight: 600;
}

.section-heading h2 span {
    color: var(--color-primary);
}

.section-heading p {
    max-width: 620px;
    margin: 0 auto;

    color: #6f6658;

    font-size: 17px;
    line-height: 1.8;
}


/* Benefits Grid */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 30px 24px;

    border: 1px solid rgba(138, 90, 22, 0.12);
    border-radius: 12px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);

    border-color: rgba(138, 90, 22, 0.25);

    box-shadow: 0 14px 35px rgba(80, 55, 20, 0.08);
}


/* Icon */

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;
    margin-bottom: 22px;

    border-radius: 50%;

    color: var(--color-primary);
    background: #f7ecd6;

    font-size: 24px;
}

.benefit-content h3 {
    margin: 0 0 10px;

    color: var(--color-dark);

    font-size: 19px;
    line-height: 1.4;
    font-weight: 600;
}

.benefit-content p {
    margin: 0;

    color: #766e62;

    font-size: 15px;
    line-height: 1.75;
}


/* ========================================
   RESPONSIVE
 ======================================== */

@media (max-width: 1000px) {

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .honey-benefits {
        padding: 75px 0;
    }

    .honey-benefits .container {
        width: min(100% - 30px, 600px);
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading p {
        font-size: 16px;
    }

}


@media (max-width: 520px) {

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit-card {
        display: flex;
        gap: 17px;

        padding: 22px 20px;
    }

    .benefit-icon {
        flex: 0 0 48px;

        width: 48px;
        height: 48px;
        margin: 0;

        font-size: 21px;
    }

    .benefit-content h3 {
        margin-bottom: 6px;
        font-size: 18px;
    }

    .benefit-content p {
        font-size: 14px;
    }

}


/* ========================================
   PRODUCT & OFFER
======================================== */

.product-offer {
    padding: 100px 0;
    background: #f5efe2;
}

.product-offer .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* Product Grid */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Product Card */

.product-card {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(138, 90, 22, 0.13);
    border-radius: 14px;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(70, 45, 15, 0.10);
}


/* Featured Card */

.product-card.featured {
    border: 2px solid var(--color-accent);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;

    padding: 6px 12px;

    border-radius: 30px;

    color: #ffffff;
    background: var(--color-primary);

    font-size: 13px;
    font-weight: 600;
}


/* Product Image */

.product-image {
    aspect-ratio: 1 / 0.78;
    overflow: hidden;

    background: #eee4d1;
}

.product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}


/* Product Info */

.product-info {
    padding: 25px;
}

.product-weight {
    display: inline-block;
    margin-bottom: 8px;

    color: var(--color-primary);

    font-size: 14px;
    font-weight: 600;
}

.product-info h3 {
    margin: 0 0 8px;

    color: var(--color-dark);

    font-size: 23px;
    font-weight: 600;
}

.product-info p {
    min-height: 50px;
    margin: 0 0 18px;

    color: #756d61;

    font-size: 15px;
    line-height: 1.7;
}


/* Price */

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;
}

.product-price strong {
    color: var(--color-primary);

    font-size: 27px;
    font-weight: 700;
}

.product-price del {
    color: #a69d90;

    font-size: 15px;
}


/* Product Button */

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    min-height: 48px;

    border-radius: 7px;

    color: #ffffff;
    background: var(--color-primary);

    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.product-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}


/* Delivery Note */

.offer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 35px;

    color: #6d604d;

    font-size: 15px;
}

.offer-note i {
    color: var(--color-primary);
    font-size: 18px;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:last-child {
        grid-column: 1 / -1;
        width: min(100%, 380px);
        margin-inline: auto;
    }

}


@media (max-width: 768px) {

    .product-offer {
        padding: 75px 0;
    }

    .product-offer .container {
        width: min(100% - 30px, 600px);
    }

}


@media (max-width: 560px) {

    .product-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card:last-child {
        grid-column: auto;
        width: 100%;
    }

    .product-info {
        padding: 22px;
    }

    .product-info h3 {
        font-size: 21px;
    }

    .product-info p {
        min-height: auto;
    }

    .product-price strong {
        font-size: 25px;
    }

    .offer-note {
        text-align: center;
        font-size: 14px;
    }

}


/* ========================================
   ORDER SECTION
======================================== */

.order-section {
    padding: 100px 0;
    background: #241d13;
}

.order-section .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.order-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/* ========================================
   ORDER INFO
======================================== */

.order-info {
    color: #ffffff;
}

.order-info .section-label {
    color: #e5b653;
}

.order-info h2 {
    margin: 12px 0 20px;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.3;
    font-weight: 600;
}

.order-info h2 span {
    color: #e5b653;
}

.order-info > p {
    max-width: 520px;
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.8;
}


/* Order Features */

.order-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;

    margin-top: 35px;
}

.order-feature {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 15px;
}

.order-feature i {
    color: #e5b653;
    font-size: 16px;
}


/* ========================================
   ORDER FORM CARD
======================================== */

.order-form-card {
    padding: 35px;

    border-radius: 14px;

    background: #ffffff;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    margin: 0 0 5px;

    color: var(--color-dark);

    font-size: 25px;
    font-weight: 600;
}

.form-header p {
    margin: 0;

    color: #81786b;

    font-size: 14px;
}


/* Form */

.order-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group:nth-child(5) {
    grid-column: 1 / -1;
}

.form-group label {
    color: #40382d;

    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;

    border: 1px solid #ddd5c8;
    border-radius: 7px;

    outline: none;

    color: #332d25;
    background: #fffdf9;

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
    height: 48px;
}

.form-group textarea {
    resize: vertical;
    min-height: 85px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);

    box-shadow: 0 0 0 3px rgba(138, 90, 22, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa196;
}


/* Submit */

.order-submit {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;
    min-height: 52px;
    margin-top: 3px;

    border: 0;
    border-radius: 7px;

    color: #ffffff;
    background: var(--color-primary);

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.order-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}


/* Form Note */

.form-note {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin: -3px 0 0;

    color: #8a8175;

    font-size: 12px;
}

.form-note i {
    color: #6d8a52;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .order-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .order-info {
        max-width: 650px;
    }

    .order-form-card {
        max-width: 650px;
        width: 100%;
        margin-inline: auto;
    }

}


@media (max-width: 768px) {

    .order-section {
        padding: 75px 0;
    }

    .order-section .container {
        width: min(100% - 30px, 600px);
    }

    .order-wrapper {
        gap: 35px;
    }

}


@media (max-width: 560px) {

    .order-info h2 {
        font-size: 34px;
    }

    .order-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .order-form-card {
        padding: 25px 20px;
    }

    .order-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group:nth-child(5) {
        grid-column: auto;
    }

    .order-submit {
        grid-column: auto;
    }

    .form-note {
        grid-column: auto;
    }

}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
    padding: 100px 0;
    background: #fffdf8;
}

.faq-section .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* FAQ Wrapper */

.faq-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}


/* FAQ List */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    overflow: hidden;

    border: 1px solid #e7dfd1;
    border-radius: 9px;

    background: #ffffff;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 19px 20px;

    color: #30291f;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    flex: 0 0 auto;

    color: var(--color-primary);

    font-size: 19px;

    transition: transform 0.25s ease;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;

    color: #766d60;

    font-size: 15px;
    line-height: 1.8;
}


/* ========================================
   TRUST CARD
======================================== */

.trust-card {
    padding: 35px;

    border-radius: 14px;

    background: #f4ead7;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 20px;

    border-radius: 50%;

    color: var(--color-primary);
    background: #ffffff;

    font-size: 25px;
}

.trust-card h3 {
    margin: 0 0 10px;

    color: var(--color-dark);

    font-size: 25px;
    font-weight: 600;
}

.trust-card > p {
    margin: 0;

    color: #706657;

    font-size: 15px;
    line-height: 1.8;
}


/* Trust Points */

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 25px 0;
    padding: 20px 0;

    border-top: 1px solid rgba(138, 90, 22, 0.15);
    border-bottom: 1px solid rgba(138, 90, 22, 0.15);
}

.trust-points div {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #51493d;

    font-size: 14px;
}

.trust-points i {
    color: var(--color-primary);

    font-size: 16px;
}


/* CTA */

.faq-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 50px;
    padding: 0 20px;

    border-radius: 7px;

    color: #ffffff;
    background: var(--color-primary);

    font-size: 16px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.faq-order-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-card {
        max-width: 600px;
    }

}


@media (max-width: 768px) {

    .faq-section {
        padding: 75px 0;
    }

    .faq-section .container {
        width: min(100% - 30px, 600px);
    }

}


@media (max-width: 520px) {

    .faq-item summary {
        padding: 17px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 17px 17px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .trust-card {
        padding: 27px 22px;
    }

    .trust-card h3 {
        font-size: 22px;
    }

}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    padding: 28px 0 18px;
    background: #19150f;
    color: #ffffff;
}

.site-footer .container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand strong {
    font-size: 20px;
    font-weight: 600;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.footer-actions {
    display: flex;
    gap: 10px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 43px;
    padding: 0 17px;

    border-radius: 6px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.call-btn {
    background: var(--color-primary);
}

.messenger-btn {
    background: #3b5998;
}

.footer-bottom {
    margin-top: 22px;
    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.4);

    font-size: 12px;
    text-align: center;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 600px) {

    .site-footer {
        padding: 25px 0 15px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-actions {
        width: 100%;
    }

    .footer-btn {
        flex: 1;
    }

}

/* =====================================================
   DEMO SIDEBAR
   ===================================================== */

.demo-sidebar {
    position: fixed;
    z-index: 301;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(340px, 88vw);
    padding: 24px;
    overflow-y: auto;
    background: var(--color-white);
    box-shadow: 14px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(-105%);
    transition: transform 0.3s ease;
}

.demo-sidebar.is-open {
    transform: translateX(0);
}


/* Sidebar Header */

.demo-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.demo-sidebar-head strong {
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 700;
}

.demo-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-dark);
    background: var(--color-white);
    font-size: 24px;
    line-height: 1;
    transition: background-color var(--transition), border-color var(--transition);
}

.demo-close:hover {
    background: var(--color-light);
    border-color: var(--color-primary);
}


/* Demo List */

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 22px;
}

.demo-link {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
    background: var(--color-light);
}

.demo-link:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

.demo-link.active {
    border-color: rgba(53, 92, 58, 0.12);
    background: var(--color-light);
    color: var(--color-primary);
    font-weight: 700;
}


/* Active Indicator */

.demo-link.active::before {
    content: "";
    width: 4px;
    height: 18px;
    margin-right: 10px;
    border-radius: 4px;
    background: var(--color-primary);
}


/* Sidebar Overlay */

.demo-overlay {
    position: fixed;
    z-index: 300;
    inset: 0;
    background: rgba(20, 28, 22, 0.38);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}


/* Prevent Background Scroll */

body.sidebar-open {
    overflow: hidden;
}


/* Sidebar Responsive */

@media (max-width: 600px) {

    .demo-sidebar {
        width: min(310px, 88vw);
        padding: 20px;
    }

    .demo-sidebar-head {
        padding-bottom: 16px;
    }

    .demo-link {
        min-height: 44px;
    }
}


/* =====================================================
   STICKY SALES BAR
   ===================================================== */

.sticky-nav {
    position: fixed;
    z-index: 200;
    right: 50%;
    bottom: 16px;
    display: flex;
    width: min(100% - 32px, 560px);
    min-height: 58px;
    transform: translateX(50%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: var(--color-dark);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}


/* Demo Toggle */

.sticky-toggle {
    display: flex;
    flex: 0 0 58px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-white);
    transition: transform 0.25s ease;
}

.sticky-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* WhatsApp CTA */

.whatsapp-button {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    transition: background-color var(--transition);
}

.whatsapp-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.whatsapp-icon {
    font-size: 18px;
}


/* Sticky Nav Responsive */

@media (max-width: 600px) {

    .sticky-nav {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        min-height: 54px;
        border-radius: 14px;
        transform: none;
    }

    .sticky-toggle {
        flex-basis: 54px;
    }

    .whatsapp-button {
        font-size: 14px;
    }
}