/* ==========================================================================
   Landing page template 3 - "Brand Store"
   Two column hero, pill feature bars, ingredient card grid, FAQ accordion
   and a paired order/call CTA. Visually distinct from template 1 (centered
   bands) and template 2 (solid colour callouts).
   Mobile first - 95% of the traffic is on phones.
   ========================================================================== */

* {
    box-sizing: border-box;
}

body.lp3 {
    margin: 0;
    padding: 0 0 68px;
    background: var(--lp-body-bg, #fff);
    color: var(--lp-text, #2f2f2f);
    font-family: "Hind Siliguri", "SolaimanLipi", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body.lp3 img {
    max-width: 100%;
    height: auto;
}

.t3-container {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---------- brand bar ---------- */
.t3-brandbar {
    text-align: center;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid #ececec;
}

.t3-brandbar img {
    max-height: 40px;
    width: auto;
}

/* ---------- hero ---------- */
.t3-hero {
    background: var(--lp-section-bg, #eaf7ec);
    padding: 22px 0 26px;
}

.t3-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
}

.t3-hero-media {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.t3-hero-media img {
    display: block;
    width: 100%;
}

.t3-hero-title {
    font-size: 22px;
    line-height: 1.45;
    font-weight: 800;
    color: var(--lp-heading, #7b1fa2);
    margin: 0 0 10px;
}

.t3-hero-price {
    margin: 12px 0 0;
    font-size: 21px;
}

.t3-hero-price del {
    opacity: .55;
    margin-right: 8px;
    font-size: 17px;
}

.t3-hero-price strong {
    color: var(--lp-primary);
    font-size: 26px;
}

/* ---------- paired CTA ---------- */
.t3-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.t3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.2;
    color: #fff;
    transition: filter .2s ease, transform .15s ease;
}

.t3-btn:hover {
    filter: brightness(.92);
    color: #fff;
}

.t3-btn:active {
    transform: translateY(1px);
}

.t3-btn-order {
    background: var(--lp-btn-bg, #f58220);
    color: var(--lp-btn-text, #fff);
}

.t3-btn-call {
    background: var(--lp-primary, #1f8a44);
}

.t3-btn-block {
    width: 100%;
    padding: 15px;
    background: var(--lp-btn-bg);
    color: var(--lp-btn-text);
    font-size: 16px;
}

/* ---------- blocks ---------- */
.t3-block {
    padding: 26px 0;
}

.t3-tinted {
    background: var(--lp-section-bg);
}

.t3-section-title {
    text-align: center;
    font-size: 21px;
    font-weight: 800;
    color: var(--lp-heading);
    margin: 0 0 18px;
    line-height: 1.5;
}

.t3-bar-title {
    text-align: center;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    background: var(--lp-heading);
    border-radius: 8px;
    padding: 11px 16px;
    margin: 0 0 20px;
    line-height: 1.5;
}

.t3-section-media {
    text-align: center;
    margin-bottom: 18px;
}

.t3-section-media img {
    border-radius: 10px;
}

.t3-mt {
    margin-top: 20px;
}

/* ---------- feature pills ---------- */
.t3-pill-block {
    padding: 18px 0;
}

.t3-pills ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.t3-pills ul li {
    padding: 11px 16px 11px 42px;
    margin: 0;
    border-radius: 40px;
    background: var(--lp-heading);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.t3-pills ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    left: 14px;
    top: 11px;
    background: transparent;
    color: #fff;
    width: auto;
    height: auto;
    box-shadow: none;
}

/* ---------- rich text ---------- */
.t3-rich p {
    margin: 0 0 12px;
}

.t3-rich h2,
.t3-rich h3,
.t3-rich h4 {
    color: var(--lp-heading);
    line-height: 1.5;
    margin: 18px 0 10px;
}

.t3-rich ul,
.t3-rich ol {
    margin: 0 0 14px;
    padding-left: 20px;
}

.t3-rich ul {
    list-style: none;
    padding-left: 0;
}

.t3-rich ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.t3-rich ul li::before {
    content: "\f058";
    /* fa circle-check */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 15px;
    color: var(--lp-primary);
}

.t3-arrow-list ul li::before {
    content: "\f0a9";
    /* fa circle-arrow-right */
    color: var(--lp-secondary);
}

.t3-check-list ul li::before {
    content: "\f058";
    color: var(--lp-primary);
}

.t3-rich ol li {
    margin-bottom: 9px;
}

.t3-rich img {
    border-radius: 8px;
    margin: 8px 0;
}

.t3-rich table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 14px;
    display: block;
    overflow-x: auto;
}

.t3-rich table td,
.t3-rich table th {
    border: 1px solid #e0e0e0;
    padding: 8px;
}

/* ---------- callouts ---------- */
.t3-callout {
    border-radius: 10px;
    padding: 16px 18px;
    text-align: center;
}

.t3-callout-primary {
    background: var(--lp-primary);
    color: #fff;
}

.t3-callout-secondary {
    background: var(--lp-secondary);
    color: #fff;
}

.t3-callout-outline {
    background: #fff;
    border: 2px dashed var(--lp-heading);
}

.t3-callout-primary ul li::before,
.t3-callout-secondary ul li::before {
    color: #fff;
}

.t3-callout p:last-child {
    margin-bottom: 0;
}

/* ---------- ingredient card grid ---------- */
.t3-grid ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.t3-grid ul li {
    padding: 16px 12px;
    margin: 0;
    text-align: center;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.6;
    transition: transform .2s ease, box-shadow .2s ease;
}

.t3-grid ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

/* the marker becomes a decorative dot above the card text */
.t3-grid ul li::before {
    content: "";
    position: static;
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--lp-section-bg);
    border: 2px solid var(--lp-primary);
}

/* if the admin dropped an image inside the item, use it instead of the dot */
.t3-grid ul li:has(img)::before {
    display: none;
}

.t3-grid ul li img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: block;
    border: 2px solid var(--lp-primary);
}

.t3-grid ul li strong {
    display: block;
    color: var(--lp-heading);
    font-size: 15px;
    margin-bottom: 2px;
}

/* ---------- faq accordion ---------- */
.t3-faq {
    max-width: 820px;
    margin: 0 auto;
}

.t3-faq-item {
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}

.t3-faq-item summary {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-text);
    cursor: pointer;
    list-style: none;
    line-height: 1.6;
}

.t3-faq-item summary::-webkit-details-marker {
    display: none;
}

.t3-faq-item summary::before {
    content: "\2b";
    /* plus */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 11px;
    border-radius: 50%;
    background: var(--lp-primary);
    color: #fff;
    margin-top: 4px;
}

.t3-faq-item[open] summary {
    color: var(--lp-heading);
    border-bottom: 1px solid #eee;
}

.t3-faq-item[open] summary::before {
    content: "\f068";
    /* minus */
    background: var(--lp-secondary);
}

.t3-faq-answer {
    padding: 12px 16px 14px 46px;
    font-size: 15px;
    color: #4d4d4d;
}

.t3-faq-answer p:last-child {
    margin-bottom: 0;
}

/* ---------- video ---------- */
.t3-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
}

.t3-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- testimonials ---------- */
.t3-review-item {
    margin: 0;
    background: #fff;
    padding: 8px 8px 12px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
}

.t3-review-item img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.t3-review-slider .owl-nav button.owl-prev,
.t3-review-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--lp-heading) !important;
    color: #fff !important;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.t3-review-slider .owl-nav button.owl-prev {
    left: -6px;
}

.t3-review-slider .owl-nav button.owl-next {
    right: -6px;
}

.t3-review-slider .owl-dots {
    margin-top: 12px;
    text-align: center;
}

.t3-review-slider .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 0 4px;
    background: #d2d2d2;
    border-radius: 50%;
    display: block;
}

.t3-review-slider .owl-dots .owl-dot.active span {
    background: var(--lp-heading);
    width: 22px;
    border-radius: 5px;
}

/* ---------- delivery block ---------- */
.t3-delivery {
    text-align: center;
}

.t3-delivery .t3-rich ul {
    display: inline-block;
    text-align: left;
}

.t3-delivery .t3-btn-call {
    margin-top: 8px;
}

/* ---------- order form ---------- */
.t3-form-section {
    padding: 28px 0 34px;
    scroll-margin-top: 16px;
}

.t3-form-heading {
    text-align: center;
    font-size: 19px;
    font-weight: 800;
    color: var(--lp-heading);
    margin: 0 0 20px;
    line-height: 1.6;
}

.t3-order-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
}

.t3-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-text);
    margin: 0 0 12px;
}

.t3-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 26px;
    margin-top: 20px;
}

/* products */
.t3-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.t3-product-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 10px 12px;
}

.t3-product-card.is-selected {
    border-color: var(--lp-primary);
    background: rgba(0, 0, 0, .015);
}

.t3-product-dot {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--lp-primary);
    box-shadow: 0 0 0 3px var(--lp-primary) inset;
}

.t3-product-card img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 5px;
    flex: 0 0 auto;
}

.t3-product-info {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
}

.t3-product-name {
    font-size: 13px;
    line-height: 1.5;
}

.t3-product-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-primary);
}

/* variants */
.t3-variant {
    margin-top: 14px;
}

.t3-variant-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.t3-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.t3-variant-item input {
    position: absolute;
    opacity: 0;
}

.t3-variant-item span {
    display: inline-block;
    padding: 7px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.t3-variant-item input:checked+span {
    border-color: var(--lp-primary);
    background: var(--lp-primary);
    color: #fff;
}

/* fields */
.t3-field {
    margin-bottom: 14px;
}

.t3-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.t3-field .req {
    color: #e02b2b;
}

.t3-field input {
    width: 100%;
    height: 44px;
    padding: 8px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    /* 16px stops iOS zooming the page on focus */
    font-size: 16px;
    background: #fff;
    color: var(--lp-text);
}

.t3-field input:focus {
    outline: none;
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .06);
}

.t3-error {
    display: block;
    color: #e02b2b;
    font-size: 13px;
    margin-top: 4px;
}

/* shipping */
.t3-ship-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.t3-ship-item {
    margin: 0;
    cursor: pointer;
}

.t3-ship-item input {
    position: absolute;
    opacity: 0;
}

.t3-ship-body {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color .2s ease, background-color .2s ease;
}

.t3-ship-body::before {
    content: "";
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    border: 2px solid #bbb;
    border-radius: 50%;
}

.t3-ship-name {
    flex: 1 1 auto;
}

.t3-ship-item input:checked+.t3-ship-body {
    border-color: var(--lp-primary);
    background: rgba(0, 0, 0, .02);
}

.t3-ship-item input:checked+.t3-ship-body::before {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 4px var(--lp-primary) inset;
}

.t3-ship-item input:focus-visible+.t3-ship-body {
    outline: 2px solid var(--lp-primary);
    outline-offset: 2px;
}

/* summary */
.t3-summary {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.t3-summary th,
.t3-summary td {
    padding: 10px 4px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.t3-summary th:last-child,
.t3-summary td:last-child {
    text-align: right;
    white-space: nowrap;
}

.t3-summary-total td {
    font-size: 16px;
    font-weight: 700;
    color: var(--lp-primary);
    border-bottom: 0;
}

.t3-cod {
    background: #f7f7f7;
    border-radius: 6px;
    padding: 12px;
    margin: 14px 0;
    font-size: 14px;
}

.t3-cod p {
    margin: 4px 0 0;
    color: #6d6d6d;
}

/* ---------- footer ---------- */
.t3-footer {
    background: #f4f5f7;
    border-top: 1px solid #e6e6e6;
    color: #4a4a4a;
    padding: 28px 0 0;
}

.t3-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.t3-footer h4 {
    font-size: 14px;
    letter-spacing: .6px;
    color: var(--lp-heading);
    margin: 0 0 10px;
}

.t3-footer p {
    margin: 0 0 7px;
    font-size: 14px;
}

.t3-footer a {
    color: #4a4a4a;
    text-decoration: none;
}

.t3-footer a:hover {
    color: var(--lp-primary);
}

.t3-footer-logo {
    max-height: 40px;
    margin-bottom: 12px;
}

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

.t3-footer-links li {
    margin-bottom: 6px;
    font-size: 14px;
}

.t3-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.t3-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--lp-heading);
    color: #fff !important;
}

.t3-footer-bottom {
    margin-top: 24px;
    padding: 13px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* ---------- floating + sticky ---------- */
.t3-float {
    position: fixed;
    right: 14px;
    bottom: 76px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.t3-float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.t3-float-call {
    background: var(--lp-primary);
}

.t3-float-wa {
    background: #25d366;
}

/* split sticky bar: order on the left, call on the right */
.t3-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: flex;
    transition: transform .25s ease;
}

.t3-sticky-bar.is-hidden {
    transform: translateY(110%);
}

.t3-sticky-order {
    flex: 1 1 auto;
    padding: 15px 12px;
    background: var(--lp-btn-bg);
    color: var(--lp-btn-text);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.t3-sticky-call {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background: var(--lp-primary);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

/* ==========================================================================
   Tablet and up
   ========================================================================== */
@media (min-width: 576px) {
    .t3-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .t3-grid ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    body.lp3 {
        padding-bottom: 0;
    }

    .t3-hero {
        padding: 36px 0 40px;
    }

    .t3-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .t3-hero-title {
        font-size: 30px;
    }

    .t3-block {
        padding: 40px 0;
    }

    .t3-section-title {
        font-size: 26px;
    }

    .t3-bar-title {
        font-size: 22px;
    }

    .t3-form-heading {
        font-size: 23px;
    }

    .t3-order-card {
        padding: 26px;
    }

    .t3-form-grid {
        grid-template-columns: 1.1fr 1fr;
    }

    .t3-pills ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .t3-pills ul li {
        text-align: center;
        padding: 11px 14px 11px 38px;
    }

    .t3-grid ul {
        grid-template-columns: repeat(4, 1fr);
    }

    .t3-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .t3-sticky-bar {
        display: none;
    }

    .t3-float {
        bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .t3-hero-title {
        font-size: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .t3-btn,
    .t3-sticky-bar,
    .t3-grid ul li,
    .t3-ship-body {
        transition: none;
    }
}
