/* =============================================================
   Bagswala – site-level overrides on top of front-template
   ============================================================= */

/* Logo text fallback */
.site-name-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Header phone link */
.header__right__auth a {
    font-size: 13px;
}

/* ---- Alert messages ---- */
.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
}
.alert-error {
    background: #fff0f0;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
}
.alert-success {
    background: #f0fff4;
    border-left: 4px solid #27ae60;
    color: #1e8449;
}

/* Breadcrumb - styled by template style.css */

/* ---- Page hero (inner pages) ---- */
.page-hero {
    background: #f3f3f3;
    padding: 40px 0 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #e2e2e2;
}
.page-hero h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1c1c1c;
    margin-bottom: 8px;
}
.page-hero p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* ---- Filter strip (products page) ---- */
.filter-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8;
}
.filter-strip label {
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-right: 4px;
}
.filter-strip .btn {
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 2px solid #1c1c1c;
    background: transparent;
    color: #1c1c1c;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
}
.filter-strip .btn:hover,
.filter-strip .btn.active {
    background: #ca1515;
    border-color: #ca1515;
    color: #fff;
}

/* ---- Product grid ---- */
.product-grid-wrap {
    padding: 30px 0;
}

/* product__item overrides for dynamic content */
.product__item__text h6 a {
    font-size: 14px;
    white-space: normal;
    line-height: 1.4;
}

/* Price table inside product cards */
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    margin-top: 6px;
}
.price-table th,
.price-table td {
    padding: 3px 6px;
    text-align: left;
    border: 1px solid #e8e8e8;
}
.price-table th {
    background: #f5f5f5;
    font-weight: 700;
    color: #444;
}
.price-table td { color: #555; }

/* Category initials circle fallback */
.cat-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ca1515;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
}

/* ---- Product detail page ---- */
.product__details__text h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pricing-card {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 20px 0;
}
.pricing-card h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #1c1c1c;
    letter-spacing: .5px;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.pricing-table th,
.pricing-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
}
.pricing-table th {
    font-weight: 700;
    color: #444;
    background: #f0f0f0;
}

/* Cat badge */
.cat-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #fff0e6;
    color: #ca1515;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* Product description */
.product-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Product CTA */
.product-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.product-cta a {
    font-size: 14px;
    padding: 10px 20px;
}

/* Gallery thumbnails */
.gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.gallery-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #e8e8e8;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color .2s;
}
.gallery-thumbs img:hover { border-color: #ca1515; }
.main-img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* ---- Enquiry page ---- */
.enquiry-wrapper {
    padding: 40px 0;
}
.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}
@media (max-width: 991px) {
    .enquiry-grid { grid-template-columns: 1fr; }
}

.enquiry-form-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 30px;
}
.enquiry-form-card h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}
.enquiry-form-card .subtitle {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.form-control {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border .2s;
    width: 100%;
    box-sizing: border-box;
}
.form-control:focus { border-color: #ca1515; }
textarea.form-control { min-height: 120px; resize: vertical; }

.product-rows-table { width: 100%; border-collapse: collapse; }
.product-rows-table th,
.product-rows-table td {
    padding: 8px;
    border: 1px solid #e8e8e8;
    font-size: 13px;
}
.product-rows-table th { background: #f5f5f5; font-weight: 700; }

.contact-card {
    background: #ca1515;
    border-radius: 8px;
    padding: 24px;
    color: #fff;
}
.contact-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}
.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
}
.ci-icon { font-size: 20px; flex-shrink: 0; }
.contact-item strong { display: block; margin-bottom: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.contact-item a { color: rgba(255,255,255,.85); }

/* ---- Services strip (legacy template pages) ---- */
.services__item i {
    font-size: 30px;
    color: #ca1515;
    margin-bottom: 12px;
    display: block;
}

/* =============================================================
   Home: trust / feature bar (before Best Seller)
   Primary: #252b67, accent: #f79110
   ============================================================= */
.home-trust-bar {
    background: linear-gradient(
        135deg,
        #252b67 0%,
        #2f3778 38%,
        #3d4a9e 100%
    );
    padding: 28px 0;
    color: #fff;
}
.home-trust-bar__row {
    align-items: stretch;
}
.home-trust-bar__row > [class*="col-"] {
    display: flex;
}
.home-trust-bar__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 16px 8px;
    min-height: 100%;
    box-sizing: border-box;
}
.home-trust-bar__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-trust-bar__icon i {
    font-size: 32px;
    color: #f79110;
    line-height: 1;
}
.home-trust-bar__text {
    min-width: 0;
    flex: 1;
}
.home-trust-bar__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.25;
}
.home-trust-bar__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.45;
}
@media (max-width: 991px) {
    .home-trust-bar__item {
        padding: 14px 4px;
    }
}
@media (max-width: 575px) {
    .home-trust-bar {
        padding: 22px 0;
    }
    .home-trust-bar__title {
        font-size: 15px;
    }
    .home-trust-bar__sub {
        font-size: 12px;
    }
}

/* =============================================================
   Home: Electro-style split banner + white services strip
   Matches front-template/index.html hero + trust row (#f79110 accent)
   ============================================================= */
.home-banner-section {
    background: #fff !important;
    --banner-under-header: 100px;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: max(460px, calc(100vh - var(--banner-under-header)));
    min-height: max(460px, calc(100svh - var(--banner-under-header)));
}
@media (max-width: 991px) {
    .home-banner-section {
        --banner-under-header: 86px;
    }
}

.home-banner-section__row {
    margin: 0 !important;
    flex: 1 1 auto;
    min-height: 0;
    align-items: stretch;
}

@media (max-width: 991px) {
    .home-banner-section__row {
        flex-direction: column;
        flex-wrap: nowrap;
    }
}

.home-banner-section__carousel-col,
.home-banner-section__side-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.home-banner-section__carousel-col {
    justify-content: center;
}

@media (min-width: 992px) {
    .home-banner-section__side-col {
        justify-content: stretch;
    }
}

@media (max-width: 991px) {
    .home-banner-section__carousel-col {
        flex: 1 1 58%;
        min-height: 0;
        justify-content: center;
    }
    .home-banner-section__side-col {
        flex: 1 1 42%;
        max-height: 42vh;
        min-height: 200px;
    }
}

.home-banner-section__owl {
    flex: 0 1 auto;
    width: 100%;
}

.home-electro-carousel {
    position: relative;
}

.home-electro-carousel__slide.home-electro-carousel__slide {
    margin: 0;
}

.home-electro-carousel__slide .home-electro-carousel__img-col {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-electro-carousel__slide .home-electro-carousel__img-col img {
    max-height: min(52vh, 520px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.home-electro-carousel__slide > .col-xl-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(16px, 3vh, 32px);
    padding-bottom: clamp(16px, 3vh, 32px);
}

.home-electro-carousel__slide .carousel-content,
.home-electro-carousel__slide .col-xl-6.px-4 {
    overflow: visible;
}

.home-electro-carousel__kicker {
    font-family: "Montserrat", sans-serif !important;
    letter-spacing: 3px !important;
}

.home-electro-carousel__title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
}
@media (max-width: 1199px) {
    .home-electro-carousel__title {
        font-size: 1.75rem !important;
    }
}

.home-electro-carousel__cta {
    background: #f79110 !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 20px rgba(247, 145, 16, 0.32);
}
.home-electro-carousel__cta:hover {
    background: #e5860e !important;
    color: #fff !important;
}

.home-electro-carousel.owl-carousel .owl-nav .owl-prev,
.home-electro-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f79110;
    color: #fff !important;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
    z-index: 3;
    box-shadow: 0 4px 14px rgba(247, 145, 16, 0.35);
}
.home-electro-carousel.owl-carousel .owl-nav .owl-prev:hover,
.home-electro-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: #252b67;
    color: #fff !important;
}
.home-electro-carousel.owl-carousel .owl-nav .owl-prev:focus,
.home-electro-carousel.owl-carousel .owl-nav .owl-next:focus {
    outline: none;
}

.home-electro-carousel.owl-carousel .owl-nav .owl-prev i,
.home-electro-carousel.owl-carousel .owl-nav .owl-next i {
    font-size: 22px;
    line-height: 1;
}
.home-electro-carousel.owl-carousel .owl-nav .owl-prev {
    right: calc(140px + 2vw);
}
.home-electro-carousel.owl-carousel .owl-nav .owl-next {
    right: calc(76px + 2vw);
}
@media (max-width: 991px) {
    .home-electro-carousel.owl-carousel .owl-nav .owl-prev {
        right: 130px;
    }
    .home-electro-carousel.owl-carousel .owl-nav .owl-next {
        right: 64px;
    }
}

.home-banner-section .home-electro-side {
    flex: 1 1 auto;
    min-height: 0;
}
.home-electro-side__bg {
    object-fit: cover;
    display: block;
}
@media (min-width: 992px) {
    .home-banner-section .home-electro-side {
        min-height: 0 !important;
    }
}

.home-electro-side__offer {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.home-electro-side__badge {
    background: #f79110 !important;
    font-family: "Montserrat", sans-serif;
    padding: 0.45rem 1.1rem !important;
}

.home-electro-side__offer-label {
    font-size: 1.1rem !important;
    color: #f79110 !important;
}

.home-electro-side__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.32);
    z-index: 1;
}

.home-electro-side__category {
    font-size: 0.95rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important;
    color: #f79110 !important;
}

.home-electro-side__product-name {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.5rem !important;
}

.home-electro-side__price {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    color: #f79110 !important;
}

.home-electro-side__cta {
    background: #f79110 !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700 !important;
}

.home-electro-side__cta:hover {
    background: #e5860e !important;
    color: #fff !important;
}

/* Light-gray services strip (6 cols, vertical separators) — home only */
.home-services-strip {
    background: #f8f8f8;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.home-services-strip__cell {
    border-right: 1px solid #e8ecf0;
    border-bottom: 1px solid #e8ecf0;
}
.home-services-strip__cell:nth-child(-n + 6) {
    border-top: 1px solid #f0f0f0;
}
@media (min-width: 992px) {
    .home-services-strip__cell:nth-child(6),
    .home-services-strip__cell:last-child {
        border-right-width: 0;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .home-services-strip__cell:nth-child(3n) {
        border-right-width: 0;
    }
}

.home-services-strip__icon {
    color: #f79110 !important;
    flex-shrink: 0;
}

.home-services-strip__title {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em !important;
    font-size: 0.875rem !important;
    margin-bottom: 0.35rem !important;
    color: #111 !important;
}

.home-services-strip p {
    font-family: "Montserrat", sans-serif !important;
    line-height: 1.35 !important;
}

/* =============================================================
   Home: manufacturer / about (mosaic, above footer — light gray)
   ============================================================= */
.home-about {
    background: #eaeaea;
    color: #111;
    padding-top: 70px;
    padding-bottom: 70px;
}
.home-about__row {
    align-items: center;
}
@media (min-width: 992px) {
    .home-about__row {
        align-items: stretch;
    }
}
.home-about__copy {
    padding-bottom: 8px;
}
@media (min-width: 992px) {
    .home-about__copy {
        padding-right: 28px;
        padding-bottom: 0;
        justify-content: center;
    }
}
.home-about__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #111;
    margin: 0 0 22px;
}
.home-about__title-mark {
    position: relative;
    display: inline-block;
}
.home-about__title-mark::after {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    max-width: 4.5em;
    margin-top: 6px;
    margin-left: auto;
    margin-right: auto;
    background: #f79110;
    border-radius: 2px;
}
.home-about__lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: #555;
    margin: 0 0 14px;
}
.home-about__lead:last-of-type {
    margin-bottom: 22px;
}
.home-about__cta.site-btn {
    align-self: flex-start;
    background: #f79110;
    border-color: #f79110;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    padding: 14px 28px;
    border-radius: 999px;
}
.home-about__cta.site-btn:hover {
    background: #e0800c;
    border-color: #e0800c;
    color: #fff;
}
.home-about__mosaic-col {
    min-width: 0;
    margin-top: 28px;
}
@media (min-width: 992px) {
    .home-about__mosaic-col {
        margin-top: 0;
        align-self: stretch;
    }
}
.home-about__mosaic {
    width: 100%;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: clamp(4px, 0.9vw, 10px);
    min-height: 260px;
}
.home-about__mosaic--r4 {
    grid-template-rows: repeat(4, minmax(0, 1fr));
}
.home-about__mosaic--r5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
}
.home-about__mosaic--r6 {
    grid-template-rows: repeat(6, minmax(0, 1fr));
}
@media (min-width: 992px) {
    .home-about__mosaic {
        min-height: 0;
        height: 100%;
    }
}
@media (max-width: 991px) {
    .home-about__mosaic {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-height: none;
    }
    .home-about__mosaic--r4 {
        grid-template-rows: repeat(8, minmax(36px, 48px));
    }
    .home-about__mosaic--r5 {
        grid-template-rows: repeat(10, minmax(36px, 48px));
    }
    .home-about__mosaic--r6 {
        grid-template-rows: repeat(12, minmax(36px, 48px));
    }
}
.home-about__mosaic-cell {
    position: relative;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.home-about__mosaic-disc {
    position: absolute;
    width: 78%;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f79110;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.home-about__mosaic-cell img {
    position: relative;
    z-index: 1;
    width: 88%;
    height: 88%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* =============================================================
   Testimonials (above footer, all public pages) — full-width slider
   ============================================================= */
.testimonials-strip {
    background: #fff;
    padding: 56px 0 56px;
    border-top: 1px solid #eee;
}
.testimonials-strip__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
    padding: 0 15px;
}
.testimonials-strip__carousel-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 0 8px;
    box-sizing: border-box;
}
.testimonials-slider.owl-carousel {
    position: relative;
    padding: 0 12px;
}
@media (min-width: 576px) {
    .testimonials-slider.owl-carousel {
        padding: 0 40px;
    }
}
.testimonials-slider .owl-stage-outer {
    padding: 4px 0 12px;
}
.testimonials-slider__item {
    height: 100%;
    box-sizing: border-box;
    padding: 0 8px;
}
.testimonials-slider .owl-nav {
    margin: 0;
}
.testimonials-slider .owl-nav button.owl-prev,
.testimonials-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #d4d4d4 !important;
    background: #fff !important;
    color: #252b67 !important;
    font-size: 18px;
    margin: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.testimonials-slider .owl-nav button.owl-prev:hover,
.testimonials-slider .owl-nav button.owl-next:hover {
    border-color: #f79110 !important;
    color: #f79110 !important;
}
.testimonials-slider .owl-nav button.owl-prev {
    left: 8px;
}
.testimonials-slider .owl-nav button.owl-next {
    right: 8px;
}
@media (min-width: 768px) {
    .testimonials-slider .owl-nav button.owl-prev {
        left: calc(8px + 2vw);
    }
    .testimonials-slider .owl-nav button.owl-next {
        right: calc(8px + 2vw);
    }
}
.testimonials-slider .owl-nav button.owl-prev span,
.testimonials-slider .owl-nav button.owl-next span {
    display: none;
}
.testimonials-slider .owl-dots {
    text-align: center;
    margin-top: 16px;
    padding: 0 15px;
}
.testimonials-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 4px 6px;
    background: #d8dbe6;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
}
.testimonials-slider .owl-dots .owl-dot.active span {
    background: #f79110;
    transform: scale(1.15);
}
.testimonials-slider .owl-dots .owl-dot:hover span {
    background: #c5cad8;
}
.testimonials-strip__kicker {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f79110;
    margin: 0 0 10px;
}
.testimonials-strip__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 800;
    color: #252b67;
    margin: 0 0 12px;
    line-height: 1.25;
}
.testimonials-strip__sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
    color: #5a5f73;
    margin: 0;
}
.testimonial-card {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 26px 24px 22px;
    border: 1px solid rgba(37, 43, 103, 0.1);
    box-shadow: 0 12px 40px rgba(37, 43, 103, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f79110 0%, #252b67 100%);
    border-radius: 12px 0 0 12px;
}
.testimonial-card__stars {
    color: #f79110;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.testimonial-card__quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: rgba(37, 43, 103, 0.12);
    line-height: 1;
}
.testimonial-card__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    color: #3d4152;
    margin: 0 0 22px;
    flex: 1;
    padding-right: 8px;
}
.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 4px;
    border-top: 1px solid rgba(37, 43, 103, 0.08);
}
.testimonial-card__avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #252b67 0%, #3d4a9e 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    border: 2px solid rgba(247, 145, 16, 0.5);
}
.testimonial-card__meta {
    min-width: 0;
}
.testimonial-card__name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #252b67;
    margin-bottom: 2px;
}
.testimonial-card__role {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #7a8094;
}
@media (max-width: 991px) {
    .testimonials-strip {
        padding: 44px 0 52px;
    }
    .testimonials-strip__head {
        margin-bottom: 32px;
    }
}

/* ---- Trend items – price ---- */
.trend__item__text .product__price {
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
}

/* ---- Footer contact info ---- */
.footer-contact-info p {
    color: #b2b2b2;
    font-size: 13px;
    margin-bottom: 6px;
}
.footer-contact-info i {
    width: 16px;
    color: #ca1515;
}

/* ---- Hero section (home) ---- */
.hero-banner-section {
    background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
    padding: 80px 0 60px;
    color: #fff;
}
.hero-banner-section h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-banner-section h1 span { color: #ca1515; }
.hero-banner-section p {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .site-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
}
.hero-actions .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,.6);
    color: #fff;
}
.hero-actions .btn-outline-light:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
}

/* Responsive tweaks handled by template style.css */

/* =============================================================
   Filter & Sort Sidebar
   ============================================================= */

/* ── Sidebar head (title + Clear All) ── */
.filter-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}
.filter-sidebar__title {
    font-size: 16px;
    font-weight: 800;
    color: #1c1c1c;
    letter-spacing: -.2px;
}
.filter-clear-all {
    font-size: 12px;
    color: #ca1515;
    font-weight: 600;
    text-decoration: none;
    background: #fff0f0;
    padding: 3px 9px;
    border-radius: 20px;
    border: 1px solid #f5c6c6;
}
.filter-clear-all:hover { background: #fadddd; color: #ca1515; }

/* ── Accordion panel ── */
.filter-panel {
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.filter-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
    user-select: none;
    background: #fff;
    transition: background .15s;
}
.filter-panel__head:hover { background: #fafafa; }
.filter-panel__caret {
    font-size: 15px;
    color: #888;
    transition: transform .2s;
}
.filter-panel--collapsed .filter-panel__caret {
    transform: rotate(180deg);
}
.filter-panel__body {
    padding: 4px 16px 14px;
    border-top: 1px solid #f0f0f0;
}
.filter-panel--collapsed .filter-panel__body {
    display: none;
}

/* ── Clear badge inside sort panel ── */
.filter-clear-badge {
    margin-bottom: 10px;
}
.filter-clear-badge a {
    font-size: 11px;
    color: #ca1515;
    font-weight: 700;
    text-decoration: none;
    background: #fff0f0;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #f5c6c6;
}

/* ── Custom Radio ── */
.filter-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    padding: 5px 0;
    line-height: 1.3;
}
.filter-radio input[type="radio"] { display: none; }
.filter-radio__mark {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
    position: relative;
    transition: border-color .15s;
}
.filter-radio input[type="radio"]:checked + .filter-radio__mark {
    border-color: #ca1515;
}
.filter-radio input[type="radio"]:checked + .filter-radio__mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ca1515;
}

/* ── Custom Checkbox ── */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    padding: 5px 0;
    line-height: 1.3;
}
.filter-checkbox input[type="checkbox"] { display: none; }
.filter-checkbox__mark {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 2px solid #ccc;
    flex-shrink: 0;
    position: relative;
    transition: border-color .15s, background .15s;
}
.filter-checkbox input[type="checkbox"]:checked + .filter-checkbox__mark {
    background: #ca1515;
    border-color: #ca1515;
}
.filter-checkbox input[type="checkbox"]:checked + .filter-checkbox__mark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

/* ── Price Range Slider ── */
.price-range-slider {
    margin: 12px 4px 8px;
}
/* jQuery UI slider overrides — orange theme */
.price-range-slider.ui-slider {
    height: 5px;
    border: none;
    background: #e0e0e0;
    border-radius: 3px;
}
.price-range-slider .ui-slider-range {
    background: #ca1515;
    border-radius: 3px;
}
.price-range-slider .ui-slider-handle {
    width: 18px;
    height: 18px;
    top: -7px;
    border-radius: 50%;
    background: #ca1515;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.25);
    cursor: pointer;
    outline: none;
}
.price-range-slider .ui-slider-handle:focus { outline: none; }
.price-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-top: 8px;
}

/* ── Apply button ── */
.filter-apply-btn {
    width: 100%;
    text-align: center;
    margin-top: 6px;
    padding: 11px;
    font-size: 13px;
    display: block;
}

/* ── Quote CTA below filter ── */
.filter-quote-box {
    margin-top: 16px;
    background: #f9f9f9;
    border-radius: 6px;
    padding: 16px;
    border: 1px solid #e8e8e8;
}
.filter-quote-box p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

/* ── Results bar + chips ── */
.filter-results-bar {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
}
.filter-results-count {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    padding-top: 3px;
}
.filter-active-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff0f0;
    border: 1px solid #f5c6c6;
    color: #ca1515;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}
.filter-chip .chip-remove {
    color: #ca1515;
    text-decoration: none;
    font-size: 10px;
    line-height: 1;
}
.filter-chip .chip-remove:hover { color: #900; }

/* =============================================================
   Home: Best Seller carousel
   ============================================================= */
.best-seller-section {
    background: #fff;
    padding-top: 50px;
    padding-bottom: 55px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.best-seller-section__inner {
    max-width: 100%;
}
.best-seller-section__head {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 32px;
}
.best-seller-section__head-spacer {
    min-width: 0;
}
.best-seller-section__head-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    min-width: 0;
}
.best-seller-section__nav-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.best-seller-section__nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d4d4d4;
    background: #fff;
    color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
    padding: 0;
    line-height: 1;
}
.best-seller-section__nav:hover {
    border-color: #ca1515;
    color: #ca1515;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.best-seller-section__nav:focus {
    outline: 2px solid #ca1515;
    outline-offset: 2px;
}
.best-seller-section__nav i {
    font-size: 16px;
}
.best-seller-section__title-wrap {
    justify-self: center;
    text-align: center;
    min-width: 0;
}
.best-seller-section__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
    margin: 0;
    white-space: nowrap;
    position: relative;
}
.best-seller-section__title::after {
    content: "";
    display: block;
    height: 3px;
    width: 42px;
    background: #ca1515;
    margin: 8px auto 0;
    border-radius: 2px;
}
.best-seller-slider .owl-stage-outer {
    padding: 4px 0 8px;
}
.best-seller-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.best-seller-card:hover {
    text-decoration: none;
    color: inherit;
    border-color: #ca1515;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.best-seller-card__media {
    aspect-ratio: 1;
    max-height: 220px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}
.best-seller-card__media img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.best-seller-card__placeholder {
    font-size: 48px;
    opacity: 0.35;
}
.best-seller-card__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    margin: 0 0 8px;
}
.best-seller-card:hover .best-seller-card__name {
    color: #ca1515;
}
.best-seller-card__dims {
    font-size: 12px;
    color: #777;
    margin: 0 0 12px;
    line-height: 1.4;
}
.best-seller-card__table-wrap {
    margin-top: auto;
}
.best-seller-card__table {
    width: 100%;
    font-size: 12px;
    border-collapse: collapse;
    margin: 0;
}
.best-seller-card__table th,
.best-seller-card__table td {
    padding: 6px 8px;
    text-align: left;
    border: 1px solid #e8e8e8;
}
.best-seller-card__table th {
    background: #f0f0f0;
    font-weight: 700;
    color: #333;
}
.best-seller-card__table td {
    color: #444;
}
.best-seller-card__price {
    font-weight: 700;
    color: #ca1515 !important;
}
.best-seller-card__no-price {
    font-size: 12px;
}
@media (max-width: 575px) {
    .best-seller-section__head {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 16px;
        margin-bottom: 24px;
    }
    .best-seller-section__head-spacer {
        display: none;
    }
    .best-seller-section__title-wrap {
        order: 1;
        justify-self: center;
    }
    .best-seller-section__head-actions {
        order: 2;
        justify-self: center;
    }
    .best-seller-section__nav {
        width: 38px;
        height: 38px;
    }
    .best-seller-section__title {
        white-space: normal;
        text-align: center;
    }
}

/* ── Mobile: filter sidebar stacks above grid ── */
@media (max-width: 767px) {
    .filter-apply-btn { margin-bottom: 20px; }
}

/* =============================================================
   Shared hero — Yayaya-style (home + reusable partial)
   ============================================================= */
.shared-hero {
    position: relative;
    padding: 32px 0 28px;
    background-color: #f6f6f6;
    overflow: hidden;
}
.shared-hero::before {
    content: "";
    position: absolute;
    left: -80px;
    top: -100px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    pointer-events: none;
}
.shared-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 71px,
        rgba(0, 0, 0, 0.04) 71px,
        rgba(0, 0, 0, 0.04) 72px
    );
    opacity: 0.6;
}
.shared-hero .container {
    position: relative;
    z-index: 1;
}
.shared-hero__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.1fr);
    gap: 32px 40px;
    align-items: center;
}
.shared-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.shared-hero__oval-wrap {
    display: block;
    text-decoration: none;
    color: inherit;
    max-width: min(380px, 38vw);
    width: 100%;
}
.shared-hero__oval-wrap:hover {
    text-decoration: none;
    color: inherit;
}

.shared-hero__oval {
    position: relative;
    border-radius: 47% 47% 0 0;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    background: #fff;
    width: 400px;
    height: 600px;
}
.shared-hero__oval-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.shared-hero__oval-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 28px 16px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
}
.shared-hero__oval-name {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
}
.shared-hero__oval-price {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.65);
    margin-top: 4px;
}
.shared-hero__copy {
    padding: 4px 0 0;
    min-width: 0;
}
.shared-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(26px, 3.6vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    color: #111;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.shared-hero__lead {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 520px;
    margin: 0 0 18px;
}
.shared-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    align-items: center;
}
.shared-hero__cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}
.shared-hero__cta:hover {
    opacity: 0.85;
    text-decoration: none;
}
.shared-hero__cta--primary {
    color: #ca1515;
}
.shared-hero__cta--secondary {
    color: #111;
}
.shared-hero__cta-arrow {
    font-size: 1.05em;
    line-height: 1;
}
.shared-hero__thumbs-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 4px 0 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.shared-hero__thumbs-scroll {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.shared-hero__thumbs-scroll::-webkit-scrollbar {
    display: none;
}
.shared-hero__thumbs-track {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 8px 4px 4px;
}
.shared-hero__thumb {
    flex-shrink: 0;
    text-decoration: none;
}
.shared-hero__thumb:hover {
    text-decoration: none;
}
.shared-hero__thumb-ring {
    display: block;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transform-origin: center bottom;
    transition: transform 0.2s, box-shadow 0.2s;
}
.shared-hero__thumb:nth-child(1) .shared-hero__thumb-ring { transform: translateY(4px); }
.shared-hero__thumb:nth-child(2) .shared-hero__thumb-ring { transform: translateY(0); }
.shared-hero__thumb:nth-child(3) .shared-hero__thumb-ring { transform: translateY(-5px); }
.shared-hero__thumb:nth-child(4) .shared-hero__thumb-ring { transform: translateY(-4px); }
.shared-hero__thumb:nth-child(5) .shared-hero__thumb-ring { transform: translateY(2px); }
.shared-hero__thumb:nth-child(6) .shared-hero__thumb-ring { transform: translateY(5px); }
.shared-hero__thumb:hover .shared-hero__thumb-ring {
    transform: translateY(0) scale(1.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.shared-hero__thumbs-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.shared-hero__thumb-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: opacity 0.2s, transform 0.15s;
}
.shared-hero__thumb-btn:focus {
    outline: 2px solid #ca1515;
    outline-offset: 2px;
}
.shared-hero__thumb-btn--prev {
    background: #fff;
    border: 1px solid #ddd;
    color: #555;
}
.shared-hero__thumb-btn--next {
    background: #ca1515;
    color: #111;
    border: 1px solid #ca1515;
}
.shared-hero__thumb-btn:active {
    transform: scale(0.96);
}
@media (max-width: 991px) {
    .shared-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .shared-hero__copy {
        order: -1;
    }
    .shared-hero__oval-wrap {
        max-width: 320px;
        margin: 0 auto;
    }
    .shared-hero__oval {
        max-height: none;
    }
    .shared-hero__lead {
        margin-left: auto;
        margin-right: auto;
    }
    .shared-hero__actions {
        justify-content: center;
    }
    .shared-hero__thumbs-row {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .shared-hero__thumbs-scroll {
        width: 100%;
        max-width: 100%;
    }
    .shared-hero__thumbs-track {
        justify-content: center;
    }
    .shared-hero__thumbs-nav {
        width: 100%;
        justify-content: center;
    }
}

/* ── Samples gallery page ─────────────────────────────────────────── */
.samples-tabs-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.samples-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #eee;
}
.samples-tabs__item {
    margin: 0;
}
.samples-tabs__btn {
    display: block;
    border: none;
    background: transparent;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 18px;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.samples-tabs__btn:hover,
.samples-tabs__btn.is-active {
    color: #ca1515;
    border-bottom-color: #ca1515;
}
.samples-tab-panel {
    display: none;
    padding-top: 8px;
}
.samples-tab-panel.is-active {
    display: block;
}
.samples-tab-panel__empty {
    color: #999;
}
.samples-gallery__item {
    display: block;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f3f3;
    aspect-ratio: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.samples-gallery__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.samples-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.samples-gallery__zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.samples-gallery__item:hover .samples-gallery__zoom {
    opacity: 1;
}

/* -----------------------------------------------------------------
   Storefront header actions (search • account • wishlist • quote bag)
   ----------------------------------------------------------------- */
.header__store-act {
    column-gap: 10px;
    row-gap: 10px;
}
.header__store-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #252b67;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #252b67;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}
.header__store-circle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 43, 103, 0.25);
}
.header__store-circle:hover {
    background: rgba(37, 43, 103, 0.06);
    color: #252b67;
    text-decoration: none;
}
.header__store-circle .fa {
    font-size: 17px;
    line-height: 1;
}
.header__store-circle--initials {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: 14px !important;
}
.header__store-circle--initials.dropdown-toggle::after {
    display: none !important;
}
.header__store-circle--bag .icon_bag_alt {
    font-size: 18px;
}
.header__store-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 16px;
    height: 44px;
    border-radius: 999px;
    background: #252b67;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
}
.header__store-pill:hover {
    background: #1b2050 !important;
    color: #fff !important;
    text-decoration: none;
}
.header__store-pill__sep {
    display: inline-block;
    width: 1px;
    height: 18px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.45);
}

/* Wishlist toggle buttons */
.product__wishlist-anchor {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
}
.wishlist-product-item.product__item {
    position: relative;
}
.wishlist-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #f79110;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}
.wishlist-toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}
.wishlist-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 145, 16, 0.35);
}
.wishlist-toggle-btn--floating i {
    line-height: 1;
}
.wishlist-toggle-btn--bestseller {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}
.best-seller-section__slide {
    overflow: visible;
}
.wishlist-toggle-btn--detail {
    width: auto !important;
    height: auto !important;
    border-radius: 999px !important;
    padding: 10px 16px !important;
    gap: 8px;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}
.wishlist-toggle-btn--detail i {
    font-size: 16px !important;
}
.store-auth .store-auth__card {
    border-color: #e6e9ef !important;
}
.wishlist-remove-x {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 30px;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.15s ease;
}
.wishlist-remove-x:hover {
    opacity: 1;
}

/* =============================================================
   Home: Customized bags landing (pixel-aligned to design mockup)
   Orange #F38B21, Navy #1A233A
   ============================================================= */
.cb-landing {
    font-family: 'Montserrat', sans-serif;
    background: #f0f1f3;
    padding-top: 72px;
    padding-bottom: 48px;
}
.cb-landing__hero-copy {
    padding-right: 20px;
}
.cb-landing__kicker {
    color: var(--cb-orange, #f38b21);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.cb-landing__headline {
    font-size: clamp(30px, 4.2vw, 44px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.cb-landing__headline-navy {
    color: var(--cb-navy, #1a233a);
}
.cb-landing__headline-orange {
    color: var(--cb-orange, #f38b21);
}
.cb-landing__body {
    color: #555;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.78;
    margin-bottom: 16px;
}
.cb-landing__visual {
    position: relative;
    min-height: 320px;
    padding: 24px 8px 32px;
}
.cb-landing__visual-blob-orange {
    position: absolute;
    left: 50%;
    bottom: 6%;
    transform: translateX(-50%);
    width: min(92%, 360px);
    height: min(92%, 360px);
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 42%,
        rgba(243, 139, 33, 0.28) 0%,
        rgba(243, 139, 33, 0.1) 48%,
        rgba(243, 139, 33, 0) 72%
    );
    z-index: 0;
    pointer-events: none;
}
.cb-landing__visual-dots {
    position: absolute;
    top: 6%;
    right: 4%;
    left: auto;
    bottom: auto;
    width: 54px;
    height: 72px;
    z-index: 0;
    background-image: radial-gradient(circle, var(--cb-orange, #f38b21) 2.2px, transparent 2.5px);
    background-size: 18px 18px;
    opacity: 0.55;
    pointer-events: none;
}
.cb-landing__visual-arc {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    min-height: 300px;
    padding: 48px 0 0;
}
.cb-landing__visual-arc .cb-landing__visual-card {
    flex: 0 0 27%;
    max-width: 138px;
    margin: 0 -18px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(26, 35, 58, 0.18);
    border: 1px solid #e8e8e8;
    transform-origin: 50% 100%;
}
.cb-landing__visual-arc .cb-landing__visual-card:nth-child(1) {
    transform: rotate(-22deg) translateY(28px);
    z-index: 1;
}
.cb-landing__visual-arc .cb-landing__visual-card:nth-child(2) {
    transform: rotate(-8deg) translateY(8px);
    z-index: 3;
}
.cb-landing__visual-arc .cb-landing__visual-card:nth-child(3) {
    transform: rotate(8deg) translateY(8px);
    z-index: 3;
}
.cb-landing__visual-arc .cb-landing__visual-card:nth-child(4) {
    transform: rotate(22deg) translateY(28px);
    z-index: 1;
}
.cb-landing__visual-arc .cb-landing__visual-card img {
    display: block;
    width: 100%;
    height: 168px;
    object-fit: contain;
    background: #fff;
}
.cb-landing__visual-placeholder {
    position: relative;
    z-index: 1;
    min-height: 280px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff 0%, #eceff4 100%);
    border: 1px dashed var(--cb-border, #eee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cb-orange, #f38b21);
    font-size: 64px;
}
.cb-landing__feature-bar {
    margin-top: 40px;
    padding: 26px 20px 22px;
    background: #fff;
    border: 1px solid var(--cb-border, #eee);
    border-radius: 10px;
    box-shadow: 0 6px 28px rgba(26, 35, 58, 0.08);
}
.cb-landing__feature-row {
    text-align: center;
}
.cb-landing__feature-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 18px;
}
.cb-landing__feature-ico {
    color: var(--cb-orange, #f38b21);
    font-size: 26px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
    line-height: 1;
    margin-top: 2px;
}
.cb-landing__feature-text {
    text-align: left;
}
.cb-landing__feature-title {
    color: var(--cb-navy, #1a233a);
    font-size: 14px;
    font-weight: 800;
    display: block;
    line-height: 1.35;
    margin-bottom: 4px;
}
.cb-landing__feature-sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #777;
    line-height: 1.45;
    max-width: 220px;
}
@media (min-width: 768px) {
    .cb-landing__feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-right: 1px solid var(--cb-border, #eee);
        min-height: 100%;
    }
    .cb-landing__feature-item:last-child {
        border-right: 0;
    }
    .cb-landing__feature-text {
        text-align: center;
    }
    .cb-landing__feature-sub {
        margin-left: auto;
        margin-right: auto;
    }
}
.cb-landing__card-row {
    margin-top: 28px;
}
.cb-landing__card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--cb-border, #eee);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(26, 35, 58, 0.07);
    padding: 32px 26px 36px;
}
.cb-landing__panel-heading-wrap {
    text-align: center;
    margin-bottom: 28px;
}
.cb-landing__panel-heading {
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #111;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--cb-orange, #f38b21);
}
.cb-landing__mini {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.cb-landing__mini-ico {
    color: var(--cb-orange, #f38b21);
    font-size: 20px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: normal;
}
.cb-landing__mini-title {
    font-weight: 800;
    font-size: 13px;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.35;
}
.cb-landing__mini-text {
    font-size: 12px;
    color: var(--cb-gray, #666);
    margin: 0;
    line-height: 1.5;
}
.cb-landing__why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
}
.cb-landing__why-ico-wrap {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--cb-orange, #f38b21);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.cb-landing__quote-box {
    border: 2px dashed var(--cb-orange, #f38b21);
    border-radius: 12px;
    padding: 22px 16px;
    background: #fff;
}
.cb-landing__quote-ico-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--cb-orange, #f38b21);
}
.cb-landing__quote-ico-inner {
    font-size: 26px;
    color: #fff;
    line-height: 1;
}
.cb-landing__quote-head {
    font-weight: 900;
    font-size: 15px;
    color: var(--cb-navy, #1a233a);
    line-height: 1.38;
}
.cb-landing__quote-text {
    font-size: 13px;
    color: var(--cb-gray, #666);
    line-height: 1.58;
}
.cb-landing__cta-outer {
    max-width: 100%;
    background: #f0f1f3;
}
.cb-landing__cta-container {
    padding-left: 15px;
    padding-right: 15px;
}
.cb-landing__cta-bar {
    border-radius: 10px;
    background: var(--cb-orange, #f38b21);
    color: #fff;
    box-shadow: 0 14px 40px rgba(243, 139, 33, 0.38);
}
.cb-landing__cta-bag-circle {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--cb-orange, #f38b21);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.cb-landing__cta-line {
    font-weight: 800;
    font-size: clamp(17px, 2.6vw, 21px);
    line-height: 1.25;
}
.cb-landing__cta-mid {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.45;
}
.cb-landing__cta-sep {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}
.cb-landing__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 5px 6px 5px 22px;
    background: #fff;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.08em;
    border-radius: 999px;
    text-decoration: none !important;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.cb-landing__cta-btn-label {
    padding-right: 12px;
    color: var(--cb-orange, #f38b21) !important;
}
.cb-landing__cta-btn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cb-orange, #f38b21);
    font-size: 14px;
    flex-shrink: 0;
}
.cb-landing__cta-btn-badge i {
    color: #fff !important;
}
.cb-landing__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
.cb-landing__cta-btn:hover .cb-landing__cta-btn-label {
    color: var(--cb-orange, #f38b21) !important;
}
@media (max-width: 991px) {
    .cb-landing__feature-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid var(--cb-border, #eee);
    }
    .cb-landing__feature-item:last-child {
        border-bottom: 0;
    }
    .cb-landing__feature-text {
        text-align: left;
    }
    .cb-landing__feature-sub {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    .cb-landing__visual-arc .cb-landing__visual-card:nth-child(n) {
        transform: none;
        margin: 0 6px;
    }
    .cb-landing__visual-arc {
        flex-wrap: wrap;
        padding-top: 24px;
        min-height: 0;
    }
}
@media (max-width: 575px) {
    .cb-landing__visual-arc .cb-landing__visual-card {
        flex: 0 0 44%;
        max-width: none;
        margin: 6px;
    }
    .cb-landing__visual-arc .cb-landing__visual-card:nth-child(n) {
        transform: none;
    }
}

/* -------------------------------------------------------------
   Floating WhatsApp shortcut (middle of right viewport edge)
   ------------------------------------------------------------- */
.floating-contact {
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    z-index: 10050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.floating-contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 14px 0 0 14px;
    color: #fff !important;
    font-size: 26px;
    line-height: 1;
    text-decoration: none !important;
    cursor: pointer;
    box-shadow:
        -2px 4px 18px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}
.floating-contact__btn > i {
    pointer-events: none;
}
.floating-contact__btn:hover {
    color: #fff !important;
    transform: translateX(-4px);
    box-shadow:
        -4px 10px 28px rgba(0, 0, 0, 0.24),
        0 2px 10px rgba(0, 0, 0, 0.12);
}
.floating-contact__btn:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
.floating-contact__btn--wa {
    background: #25d366;
}
@media print {
    .floating-contact {
        display: none !important;
    }
}

/* =============================================================
   Enquiry / quote page
   ============================================================= */
.enquiry-page {
    font-family: 'Montserrat', sans-serif;
}
.enquiry-page__header {
    max-width: 640px;
    margin: 0 auto 2.75rem;
    padding-bottom: 0.25rem;
}
.enquiry-page__eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ca1515;
    margin-bottom: 0.65rem;
}
.enquiry-page__title {
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 900;
    color: #111;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}
.enquiry-page__subtitle {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    line-height: 1.65;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .enquiry-page__header {
        text-align: left !important;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
        margin-bottom: 2rem;
    }
}
.enquiry-form-card {
    background: #fff;
    border: 1px solid #ebeef3;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(17, 24, 39, 0.06);
    padding: clamp(22px, 4vw, 36px);
}
.enquiry-alert {
    border-radius: 10px;
    margin-bottom: 1.25rem;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.5;
}
.enquiry-form__block {
    padding-bottom: 1.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid #eef0f4;
}
.enquiry-form__block--flush {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.enquiry-form__block:last-of-type:not(.enquiry-form__block--flush) {
    border-bottom: 0;
}
.enquiry-form__section-title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-bottom: 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: none;
    letter-spacing: 0;
}
.enquiry-form__section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #252b67;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.enquiry-form__hint {
    font-size: 13px;
    color: #888;
    line-height: 1.55;
}
.enquiry-page .form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.enquiry-form__input.form-control {
    border-radius: 10px;
    border-color: #e0e3ea;
    padding: 11px 14px;
    font-size: 15px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}
.enquiry-form__input.form-control:focus {
    border-color: #ca1515;
    box-shadow: 0 0 0 3px rgba(202, 21, 21, 0.12);
}
.enquiry-form__textarea {
    min-height: 130px !important;
}
.enquiry-products-table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ebeef3;
    background: #fafbfc;
}
.enquiry-products-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
}
.enquiry-products-table th,
.enquiry-products-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #ebeef3;
    vertical-align: middle;
}
.enquiry-products-table thead th {
    background: #f0f2f8;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #445;
}
.enquiry-products-table tbody tr:last-child td {
    border-bottom: none;
}
.enquiry-products-table__qty {
    width: 155px;
    max-width: 36%;
}
@media (max-width: 575px) {
    .enquiry-products-table__qty {
        width: 120px;
    }
}
.enquiry-form__actions {
    margin-top: 1.75rem;
    padding-top: 0.25rem;
}
.enquiry-form__submit {
    display: block;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 24px !important;
    border-radius: 12px !important;
    border: none !important;
    background: linear-gradient(135deg, #ca1515 0%, #e02020 100%) !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    box-shadow: 0 10px 28px rgba(202, 21, 21, 0.28);
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}
.enquiry-form__submit:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(202, 21, 21, 0.35);
}
@media (max-width: 991px) {
    .enquiry-aside__card:last-child {
        margin-bottom: 0;
    }
}
.enquiry-aside__card {
    background: #fff;
    border: 1px solid #ebeef3;
    border-radius: 14px;
    padding: 22px 22px;
    margin-bottom: 16px;
    box-shadow: 0 6px 24px rgba(17, 24, 39, 0.05);
}
.enquiry-aside__card--muted {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.enquiry-aside__title {
    font-size: 16px;
    font-weight: 900;
    color: #111;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ca1515;
}
.enquiry-aside__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #666;
    margin-bottom: 6px;
}
.enquiry-aside__label i {
    color: #ca1515;
    font-size: 14px;
}
.enquiry-aside__value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.enquiry-aside__value a {
    color: #252b67;
    text-decoration: none;
}
.enquiry-aside__value a:hover {
    color: #ca1515;
}
.enquiry-aside__mini-title {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111;
    margin-bottom: 12px;
}
.enquiry-aside__bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
    line-height: 1.45;
}
.enquiry-aside__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ca1515;
}
.enquiry-aside__bullets li:last-child {
    margin-bottom: 0;
}

/* =============================================================
   About page (marketing layout — Matches brand mockup)
   ============================================================= */
.about-page-v2 {
    font-family: 'Montserrat', sans-serif;
    color: #1a2233;
}
.about-page-v2 .container {
    padding-left: clamp(10px, 2.5vw, 18px);
    padding-right: clamp(10px, 2.5vw, 18px);
}

.bg-light-soft {
    background: #f5f7fb !important;
}
.about-v2-hero {
    /* Tighter under global header; keep room below headline/media */
    padding-top: clamp(16px, 2.75vw, 32px);
    padding-bottom: clamp(44px, 7vw, 84px);
    background: #fff;
}
.about-v2-hero .about-v2-eyebrow {
    text-align: left;
}
.about-v2-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f79110;
    margin-bottom: 12px;
    text-align: center;
}
.about-v2-eyebrow--left {
    text-align: left;
}
.about-v2-hero-title {
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.about-v2-hero-title__navy {
    color: #252b67;
}
.about-v2-hero-title__orange {
    color: #f79110;
}
.about-v2-lead {
    font-size: 16px;
    line-height: 1.72;
    color: #4a5263;
}
.about-v2-pills {
    gap: 12px;
}
.about-v2-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid rgba(247, 145, 16, 0.75);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    color: #252b67;
}
.about-v2-pill i {
    color: #f79110;
    font-size: 18px;
}
.about-v2-hero-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8ecf2;
    box-shadow: 0 20px 56px rgba(37, 43, 103, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.about-v2-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.about-v2-hero-ph {
    aspect-ratio: 16 / 11;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e8eef8 0%, #f9fbff 55%, #dde5f7 100%);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    color: #252b67;
}

/* Stats — rounded navy panel on white */
.about-v2-stats {
    padding: 0 0 clamp(48px, 8vw, 84px);
    background: #fff;
    color: #fff;
}
.about-v2-stats-shell {
    border-radius: 24px;
    padding: clamp(28px, 4vw, 44px) clamp(14px, 3vw, 28px);
    background: linear-gradient(180deg, #1e2654 0%, #252b67 42%, #1a2148 100%);
    box-shadow: 0 18px 48px rgba(30, 38, 84, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.about-v2-stats__flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 20px;
    text-align: center;
}
.about-v2-stat-col {
    flex: 1 1 140px;
    max-width: 200px;
    min-width: 120px;
}
.about-v2-stat__ico {
    display: block;
    margin-bottom: 10px;
    font-size: 26px;
    color: #f79110;
    line-height: 1;
}
.about-v2-stat__num {
    font-weight: 900;
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    color: #f79110;
    line-height: 1.05;
}
.about-v2-stat__lbl {
    font-weight: 600;
    font-size: 13px;
    opacity: 0.92;
    margin-top: 6px;
    line-height: 1.35;
}

/* Sections */
.about-v2-section {
    padding: clamp(64px, 10vw, 96px) 0;
    background: #fff;
}
.about-v2-h2 {
    font-size: clamp(1.65rem, 3vw, 2.05rem);
    font-weight: 900;
    color: #252b67;
    line-height: 1.22;
}
.about-v2-text {
    font-size: 15px;
    color: #4a5263;
    line-height: 1.74;
}

/* Buttons */
.about-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none !important;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}
.about-v2-btn i {
    font-size: 20px;
    line-height: 1;
}
.about-v2-btn--primary {
    background: linear-gradient(135deg, #f79110 0%, #ffa324 100%);
    color: #fff !important;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(247, 145, 16, 0.35);
}
.about-v2-btn--primary:hover {
    color: #fff !important;
    transform: translateY(-2px);
}
.about-v2-btn--cta {
    background: linear-gradient(135deg, #f79110 0%, #ffa324 100%);
    color: #fff !important;
    padding: 15px 28px;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(247, 145, 16, 0.38);
    font-size: 15px;
}
.about-v2-btn--cta:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.about-v2-checks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #343b4f;
}
.about-v2-checks i {
    color: #f79110;
    font-size: 16px;
    margin-top: 2px;
}

.about-v2-video-poster {
    position: relative;
    padding-top: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    background: #121830;
    border: 1px solid rgba(247, 145, 16, 0.2);
}
.about-v2-video-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.about-v2-video-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(transparent 20%, rgba(15, 20, 40, 0.55));
}
.about-v2-video-shade--mock {
    background: linear-gradient(180deg, rgba(18, 24, 48, 0.15) 0%, rgba(12, 16, 32, 0.45) 100%);
}

.about-v2-play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.97);
    color: #f79110;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    padding: 0 0 0 6px;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}
.about-v2-play-circle:hover {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.about-v2-video-wrap--mock {
    max-width: none;
}

.about-v2-video-iframe-holder--mock {
    padding-top: 56.25%;
    aspect-ratio: auto;
}

.about-v2-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.95);
    font-size: 72px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}
.about-v2-play:hover {
    opacity: 1;
}
.about-v2-video-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}

.about-v2-video-iframe-holder {
    position: relative;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #0b0f1a;
    border: 1px solid rgba(247, 145, 16, 0.18);
}
.about-v2-video-iframe-holder iframe.about-v2-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Embedded YouTube preview — Shorts uses 9:16 */
.about-v2-video-wrap--embedded {
    max-width: min(380px, 100%);
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 992px) {
    .about-v2-video-wrap--embedded {
        margin-left: 0;
        margin-right: auto;
    }
}
.about-v2-video-iframe-holder--short {
    padding-top: 0;
    aspect-ratio: 9 / 16;
}
.about-v2-video-footnote {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    clear: both;
}
.about-v2-video-footnote a {
    color: #252b67;
    text-decoration: underline;
}
.about-v2-video-footnote a:hover {
    color: #f79110;
}

/* Below main video — YouTube Shorts tiles (sprite or per-cover JPG fallback) */
.about-v2-short-tile {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e8ecf5;
    text-decoration: none !important;
    box-shadow:
        0 6px 22px rgba(37, 43, 103, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}
.about-v2-short-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 43, 103, 0.12);
}
.about-v2-short-tile:focus {
    outline: 2px solid #f79110;
    outline-offset: 2px;
}

/* .about-v2-short-tile__disc {
    position: absolute;
    width: 78%;
    height: 78%;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
    background: radial-gradient(
        circle at 50% 36%,
        #ffc14d 0%,
        #f79110 54%,
        #e07408 88%,
        #c86200 100%
    );
} */

.about-v2-short-tile__art {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-repeat: no-repeat;
}

.about-v2-short-tile__img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.about-v2-short-tile__art--solo {
    background-position: center 44%;
    background-size: contain;
}

.about-v2-short-tile__art--strip {
    background-size: 400% auto;
}

.about-v2-short-tile__art--strip.about-v2-short-tile__art--s1 {
    background-position: 0.5% 52%;
}

.about-v2-short-tile__art--strip.about-v2-short-tile__art--s2 {
    background-position: 33.333% 52%;
}

.about-v2-short-tile__art--strip.about-v2-short-tile__art--s3 {
    background-position: 66.666% 52%;
}

.about-v2-short-tile__art--strip.about-v2-short-tile__art--s4 {
    background-position: 99.25% 52%;
}

.about-v2-short-tile__play {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.96);
    color: #f79110;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    padding: 0 0 0 4px;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.18s ease;
}

.about-v2-short-tile:hover .about-v2-short-tile__play {
    transform: scale(1.06);
}

/* Magnific Popup — tighter frame for shorts */
.mfp-about-short .mfp-iframe-holder .mfp-content {
    width: auto;
    max-width: min(380px, 96vw);
    height: auto;
}

.about-v2-thumb {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #e4e9f2;
    background: #f0f2f8;
}
.about-v2-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-v2-thumb-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 12px;
    font-weight: 700;
    color: #9298a9;
}

.about-v2-mini-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(247, 145, 16, 0.32);
    border-radius: 14px;
    padding: 20px;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.about-v2-mini-card:hover {
    border-color: rgba(247, 145, 16, 0.45);
    box-shadow: 0 12px 32px rgba(37, 43, 103, 0.08);
}
.about-v2-mini-card i {
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    color: #f79110;
}
.about-v2-mini-card h3 {
    font-size: 14px;
    font-weight: 800;
    color: #252b67;
    line-height: 1.39;
    margin: 0;
}

.about-v2-quote-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e6eaf2;
}
.about-v2-quote-media img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 380px;
    object-fit: cover;
}
.about-v2-quote-ph {
    min-height: 360px;
    background: linear-gradient(135deg, #252b67 10%, #3d4890 90%);
}
.about-v2-quote-cap {
    position: absolute;
    left: clamp(14px, 4vw, 28px);
    right: clamp(14px, 4vw, 28px);
    bottom: clamp(14px, 4vw, 28px);
    background: rgba(37, 43, 103, 0.96);
    color: rgba(255, 255, 255, 0.95);
    padding: 20px 22px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    border-left: 4px solid #f79110;
}
.about-v2-quote-cap--corner {
    left: auto;
    margin: 0;
    width: auto;
    max-width: min(360px, calc(100% - 28px));
    right: clamp(14px, 5vw, 32px);
    bottom: clamp(14px, 5vw, 34px);
    box-shadow: 0 16px 40px rgba(20, 28, 64, 0.35);
}
.about-v2-quote-cap__accent {
    display: block;
    font-weight: 900;
    color: #f79110;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.about-v2-process-header {
    max-width: 620px;
}
.about-v2-section.about-v2-process {
    padding-top: clamp(26px, 4vw, 44px);
    padding-bottom: clamp(26px, 4vw, 44px);
    background: #fff;
}
.about-v2-process-header .about-v2-eyebrow {
    margin-bottom: 0.4rem !important;
}

.about-v2-process-flow {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 8px;
    /* Extend dashed arrows so arrowhead reaches the next step circle (~radius + gap) */
    --about-process-ring: 68px;
    --about-process-connector-overlap: calc(var(--about-process-ring) / 2 - 9px);
}

.about-v2-step-connector {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    align-items: center;
    margin-top: 50px;
    align-self: flex-start;
    height: 0;
}
.about-v2-step-connector__line {
    position: relative;
    flex: 1 1 auto;
    box-sizing: content-box;
    width: calc(90% + 2 * var(--about-process-connector-overlap));
    margin-left: calc(-1 * var(--about-process-connector-overlap));
    margin-right: calc(-1 * var(--about-process-connector-overlap));
    height: 0;
    border: none;
    border-top: 2px dashed #f79110;
}
/* Arrowhead aligns with dashed line into next circle */
.about-v2-step-connector__line::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(2px, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #f79110;
}

@media (max-width: 991px) {
    .about-v2-process-flow {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
        column-gap: 8px;
    }
    .about-v2-step-connector {
        display: none !important;
    }
    .about-v2-step {
        flex: 0 1 calc(50% - 12px);
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .about-v2-step {
        flex-basis: 100%;
        max-width: 280px;
    }
}

.about-v2-step {
    flex: 0 1 auto;
    min-width: 0;
    width: clamp(118px, 17vw, 160px);
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-v2-step__graphic {
    position: relative;
    display: inline-block;
    margin: 0 auto 10px;
    padding: 10px 8px 0 10px;
}

.about-v2-step__num {
    position: absolute;
    top: 2px;
    left: -2px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f79110 0%, #ffa324 100%);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    line-height: 1;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(247, 145, 16, 0.32);
}

.about-v2-step__ico {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 24px;
    color: #252b67;
    box-shadow:
        0 6px 18px rgba(37, 43, 103, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.about-v2-step__ico img {
    width: 62%;
    height: 62%;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    display: block;
    pointer-events: none;
}
.about-v2-step__txt {
    font-size: 12px;
    font-weight: 700;
    color: #252b67;
    line-height: 1.42;
    margin: 0;
    text-wrap: balance;
}

.about-v2-certified {
    padding: clamp(52px, 7vw, 76px) 0;
    background: linear-gradient(135deg, #222a62 0%, #252b67 52%, #1a214a 100%);
    color: #fff;
}
.about-v2-certified__title {
    font-weight: 900;
    line-height: 1.22;
}
.about-v2-certified__title-accent {
    display: block;
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    color: #f79110;
    margin-bottom: 4px;
}
.about-v2-certified__title-plain {
    display: block;
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    color: #fff;
}
.about-v2-certified__lead {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}
.about-v2-certified-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 18px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}
.about-v2-certified-card i {
    font-size: 26px;
    color: #f79110;
    margin-bottom: 10px;
    display: block;
}
.about-v2-certified-card h3 {
    font-size: 13px;
    font-weight: 800;
    color: #252b67;
    line-height: 1.39;
    margin: 0;
}

.about-v2-cta {
    padding: clamp(56px, 8vw, 90px) 0;
    background: #fff;
}
.about-v2-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 992px) {
    .about-v2-cta-grid {
        margin-left: 0;
        margin-right: 0;
    }
}
.about-v2-cta-cell {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e6eaf2;
    aspect-ratio: 1 / 1.05;
}
.about-v2-cta-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-v2-cta-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 140px;
    background: linear-gradient(160deg, #f3f6fc, #dde4f7);
    color: #6b758a;
    font-weight: 800;
}
.about-v2-cta-title {
    font-weight: 900;
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    color: #252b67;
    line-height: 1.22;
}
.about-v2-cta-copy {
    font-size: 16px;
    color: #4a5263;
    line-height: 1.65;
}
