@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;700;800;900&display=swap');

:root {
    --brand-red: #ff5b5f;
    --brand-green: #009622;
    --ink: #080808;
    --muted: #555;
}

body {
    margin: 0;
    font-family: "Noto Sans Bengali", system-ui, sans-serif;
    color: var(--ink);
    background: #fff;
}

a {
    color: inherit;
}

.site-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 24px 18px 70px;
}

.brand-logo {
    width: 128px;
    height: 128px;
    object-fit: contain;
    margin-bottom: 12px;
}

.hero-section h1,
.section-block h2,
.order-section h2 {
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-section h1 span,
.section-block h2 span,
.order-section h2 span {
    color: var(--brand-red);
}

.green,
.section-block h2 .green {
    color: var(--brand-green) !important;
}

.hero-subtitle {
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 18px;
}

.order-confirmation {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    max-width: 860px;
    text-align: left;
    background: #f3fff5;
    border: 1px solid #19a33a;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 18px 48px rgba(0, 80, 22, .12);
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #009622;
    color: #fff;
    font-size: 2.1rem;
}

.confirmation-kicker {
    color: var(--brand-green);
    font-weight: 900;
    margin-bottom: 4px;
}

.confirmation-body h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 900;
    margin-bottom: 8px;
}

.order-copy {
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #0a7d22;
    font-weight: 900;
    padding: 4px 12px;
    box-shadow: inset 0 0 0 1px #bde8c6;
}

.order-copy:hover,
.order-copy:focus-visible {
    background: #0a7d22;
    color: #fff;
    outline: 0;
}

.confirmation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.confirmation-grid div {
    background: #fff;
    border: 1px solid #d4f0da;
    border-radius: 8px;
    padding: 12px;
}

.confirmation-grid .slot-confirmed {
    border-color: #14a44d;
    background: #f0fff4;
}

.confirmation-grid span {
    display: block;
    color: #607166;
    font-size: .88rem;
}

.confirmation-grid strong {
    display: block;
    margin-top: 3px;
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-media {
    position: relative;
    max-width: 760px;
    aspect-ratio: 1.68;
    border-radius: 14px;
    overflow: hidden;
}

.hero-media img,
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: #ff3e5b;
    font-size: 2rem;
}

.thumb-row,
.cta-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.thumb-row img {
    width: 116px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.section-block {
    padding-top: 72px;
}

.section-copy {
    max-width: 620px;
    margin: 18px auto;
    color: #333;
}

.why-box {
    max-width: 560px;
    text-align: left;
    border: 2px dashed #18a238;
    border-radius: 28px;
    padding: 28px 46px;
    color: var(--brand-green);
    font-size: 1.35rem;
    font-weight: 700;
}

.why-box div {
    margin: 8px 0;
}

.product-grid {
    margin-top: 24px;
}

.product-card img {
    aspect-ratio: 1.05;
    border-radius: 9px;
}

.product-card h3 {
    font-weight: 900;
    margin-top: 18px;
}

.product-card p {
    color: #333;
    margin: 0;
}

.delivery-note {
    color: var(--brand-red);
    max-width: 720px;
    margin: 28px auto 0;
    font-weight: 700;
}

.testimonial-card {
    border: 1px solid var(--brand-red);
    border-radius: 9px;
    padding: 24px;
    min-height: 180px;
}

.testimonial-card h4 {
    font-size: 1rem;
    font-weight: 800;
}

.stars {
    color: var(--brand-red);
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.order-section {
    padding-top: 68px;
}

.order-panel {
    max-width: 960px;
    margin: 24px auto 0;
    border: 1px solid var(--brand-red);
    border-radius: 12px;
    padding: 22px;
}

.checkout-note {
    background: #fff8e6;
    border: 1px solid #f3d48a;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
    color: #553b00;
}

.order-line {
    display: grid;
    grid-template-columns: 1fr auto 150px;
    gap: 16px;
    align-items: center;
    border: 1px solid #ffd4d4;
    border-radius: 9px;
    padding: 12px 16px;
    margin-bottom: 14px;
}

.product-info {
    display: grid;
    grid-template-columns: auto 58px 1fr;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.order-line img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 7px;
}

.order-line small {
    display: block;
    color: #555;
}

.estimate-text {
    color: var(--brand-green) !important;
    font-weight: 700;
    line-height: 1.4;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-width: 136px;
}

.qty-control button {
    width: 34px;
    height: 34px;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
    background: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}

.qty-display {
    min-width: 62px;
    text-align: center;
    font-weight: 800;
    white-space: nowrap;
}

.line-total {
    text-align: right;
    white-space: nowrap;
}

.slot-picker h5 {
    margin-bottom: 12px;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .16);
}

.invalid-feedback {
    display: block;
    font-weight: 700;
}

.date-buttons {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.date-chip {
    flex: 0 0 auto;
    border: 1px solid #d9eadc;
    border-radius: 8px;
    background: #fff;
    color: #111;
    min-width: 112px;
    padding: 10px 12px;
    text-align: left;
}

.date-chip strong,
.date-chip span {
    display: block;
}

.date-chip span {
    color: #666;
    font-size: .88rem;
}

.date-chip.active {
    border-color: var(--brand-green);
    background: #eaffef;
    color: var(--brand-green);
}

.date-chip.available {
    border-color: #20a83f;
    background: #f2fff5;
}

.date-chip.unavailable {
    border-color: #ffb5b5;
    background: #fff1f1;
    color: #bb1d2a;
}

.date-chip.unavailable span {
    color: #bb1d2a;
}

.date-chip.unavailable.active {
    background: #ffe5e5;
    box-shadow: 0 0 0 3px rgba(255, 91, 95, .14);
}

.slot-boxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.slot-picker.is-invalid .date-buttons {
    border: 1px solid #dc3545;
    border-radius: 10px;
    padding: 8px;
    background: #fff5f5;
}

.slot-boxes.is-invalid {
    border: 1px solid #dc3545;
    border-radius: 10px;
    padding: 10px;
    background: #fff5f5;
}

.slot-card {
    border: 1px solid #cfe8d5;
    background: #fff;
    border-radius: 8px;
    padding: 14px;
    text-align: left;
    min-height: 110px;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.slot-card:focus-visible,
.date-chip:focus-visible,
.qty-control button:focus-visible {
    outline: 3px solid rgba(0, 150, 34, .28);
    outline-offset: 2px;
}

.slot-card strong,
.slot-card span,
.slot-card small {
    display: block;
}

.slot-card strong {
    color: #111;
    font-size: .98rem;
}

.slot-card span {
    color: #555;
    margin-top: 4px;
}

.slot-card small {
    color: var(--brand-green);
    margin-top: 10px;
    font-weight: 700;
}

.slot-card.available {
    border-color: #20a83f;
    background: #f4fff6;
}

.slot-card.unavailable {
    border-color: #ffb5b5;
    background: #fff1f1;
}

.slot-card.unavailable strong,
.slot-card.unavailable span,
.slot-card.unavailable small {
    color: #bb1d2a;
}

.slot-card.selected {
    border-color: var(--brand-green);
    background: #e8ffed;
    box-shadow: 0 0 0 3px rgba(0, 150, 34, .18);
}

.slot-card.selected-unavailable {
    border-color: var(--brand-red);
    background: #ffe5e5;
    box-shadow: 0 0 0 3px rgba(255, 91, 95, .15);
}

.slot-help {
    color: var(--brand-red);
    font-weight: 700;
    margin: 10px 0 0;
}

.summary-box {
    background: #fafafa;
    padding: 24px;
    border-radius: 4px;
}

.shipping-line {
    color: var(--brand-green);
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    font-weight: 700;
}

.site-footer {
    background: #07180b;
    color: #eaf7ed;
    margin-top: 40px;
    padding: 54px 0 24px;
}

.footer-inner {
    max-width: 1120px;
}

.footer-brand {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 16px;
    align-items: start;
}

.footer-brand img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
}

.footer-brand h2,
.site-footer h3 {
    font-weight: 900;
    letter-spacing: 0;
}

.footer-brand h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.footer-brand p,
.footer-address,
.footer-bottom {
    color: #bed7c4;
}

.site-footer h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: #fff;
}

.footer-address {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-style: normal;
}

.footer-links,
.social-links {
    display: grid;
    gap: 10px;
}

.footer-links a,
.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #eaf7ed;
    text-decoration: none;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.footer-links a:hover,
.social-links a:hover {
    color: #7ee28d;
}

.social-links a {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: 9px 10px;
}

.footer-contact-btn {
    margin-top: 18px;
    width: 100%;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 36px;
    padding-top: 20px;
    font-size: .92rem;
}

.contact-modal .modal-header {
    align-items: flex-start;
}

.contact-modal .modal-header p {
    margin: 6px 0 0;
    color: #666;
}

@media (max-width: 767.98px) {
    .site-shell {
        padding-inline: 14px;
    }

    .brand-logo {
        width: 104px;
        height: 104px;
    }

    .order-confirmation {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 16px;
    }

    .confirmation-icon {
        margin: 0 auto;
    }

    .confirmation-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .confirmation-actions {
        display: grid;
    }

    .why-box {
        padding: 22px;
        font-size: 1.05rem;
    }

    .order-panel {
        padding: 14px;
    }

    .order-line {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .qty-control {
        justify-content: center;
        width: 100%;
    }

    .line-total {
        text-align: center;
    }

    .shipping-line {
        gap: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .slot-boxes {
        grid-template-columns: 1fr;
    }

    .product-info {
        grid-template-columns: auto 54px 1fr;
        gap: 10px;
    }

    .order-section h2 {
        font-size: 1.7rem;
    }

    .summary-box {
        padding: 18px;
    }

    .site-footer {
        padding-top: 40px;
    }

    .footer-brand {
        grid-template-columns: 72px 1fr;
    }

    .footer-brand img {
        width: 72px;
        height: 72px;
    }

    .footer-bottom {
        display: grid;
    }

    .contact-modal .modal-header {
        gap: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .order-panel {
        max-width: 100%;
    }

    .order-line {
        grid-template-columns: 1fr auto;
    }

    .line-total {
        grid-column: 1 / -1;
        text-align: right;
    }

    .slot-boxes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
