/* ===========================
   ENTRY ANIMATIONS (on-load)
   =========================== */
@media (prefers-reduced-motion: no-preference) {

    /* Left column: images slide/fade */
    .about__section .row>.col-lg-6:first-child {
        opacity: 0;
        transform: translateY(18px);
        animation: aboutFadeUp .9s cubic-bezier(.22, .8, .36, 1) .1s forwards;
    }

    /* Right column: content slide/fade slightly later */
    .about__section .row>.col-lg-6:last-child {
        opacity: 0;
        transform: translateY(18px);
        animation: aboutFadeUp .9s cubic-bezier(.22, .8, .36, 1) .25s forwards;
    }

    /* Stagger inner pieces a touch */
    .about__thumb--items:first-child .about__thumb--img {
        animation: aboutRise 1s cubic-bezier(.2, .8, .3, 1) .18s both;
    }

    .about__thumb--items:last-child .about__thumb--img {
        animation: aboutRise 1s cubic-bezier(.2, .8, .3, 1) .28s both;
    }

    .about__content .about__content--maintitle {
        animation: aboutSoftPop .7s cubic-bezier(.2, .8, .3, 1) .35s both;
    }
}

@keyframes aboutFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutRise {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.985);
        filter: saturate(.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: saturate(1);
    }
}

@keyframes aboutSoftPop {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.98);
        letter-spacing: .2px;
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 0;
    }
}

/* ===========================
   HOVER / INTERACTION POLISH
   =========================== */
/* Image cards get a gentle lift + sheen */
.about__thumb--items {
    transition: transform .45s cubic-bezier(.2, .8, .3, 1), filter .45s;
    will-change: transform;
}

.about__thumb--items:hover {
    transform: translateY(-4px);
    filter: saturate(1.03);
}

.about__thumb--img {
    border: 4px solid #ccc;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .08),
        0 2px 6px rgba(0, 0, 0, .06);
    transition: box-shadow .4s ease, transform .45s cubic-bezier(.2, .8, .3, 1);
}

.about__thumb--items:hover .about__thumb--img {
    border: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #2f67f8, #ff0000);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, .12),
        0 4px 10px rgba(0, 0, 0, .08);
    transform: translateZ(0);
    /* GPU nudge */
}

/* Video play button: pulse + glow */
.about__thumb--play .about__thumb--play__icon {
    color: #1c1c1c;
    background: #ffffff;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, .15),
        inset 0 0 0 1px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.about__thumb--play .about__thumb--play__icon:hover {
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    transform: scale(1.06);
    color: #ffffff;
    /* subtle gold accent */
    box-shadow:
        0 10px 26px rgba(0, 0, 0, .18),
        0 0 0 8px rgba(212, 175, 55, .12);
}

@media (prefers-reduced-motion: no-preference) {
    .about__thumb--play .about__thumb--play__icon::after {
        content: "";
        position: absolute;
        inset: -6px;
        background: radial-gradient(closest-side, rgba(212, 175, 55, .24), transparent 70%);
        filter: blur(6px);
        opacity: 0;
        transition: opacity .3s ease;
        animation: pulseGlow 2.2s ease-in-out infinite .8s;
    }

    .about__thumb--play .about__thumb--play__icon:hover::after {
        opacity: 1;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: .35;
    }

    50% {
        transform: scale(1.06);
        opacity: .15;
    }
}

/* Content typography polish + transitions */
.about__content--subtitle {
    display: inline-block;
    padding: .35rem .65rem;
    font-weight: 600;
    backdrop-filter: blur(2px);
    transition: transform .25s ease;
}

.about__content:hover .about__content--subtitle {
    transform: translateY(-2px);
}

.about__content--maintitle {
    line-height: 1.15;
    letter-spacing: -.2px;
    text-wrap: balance;
}

.about__content--desc {
    transition: color .25s ease, opacity .25s ease;
}

.about__content:hover .about__content--desc {
    color: #2a2a2a;
}

/* Author block underline accent */
.about__author--name {
    position: relative;
    display: inline-block;
}

.about__author--name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            #ff0000 0%,
            #2f67f8 50%,
            rgba(212, 175, 55, 0) 100%);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(.2, .8, .3, 1);
}

.about__content:hover .about__author--name::after {
    transform: scaleX(1);
}

/* Small tweaks for mobile */
@media (max-width: 991.98px) {
    .about__thumb {
        gap: 16px;
    }

    .about__thumb--play .about__thumb--play__icon {
        right: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
    }

    .about__section::after {
        opacity: .35;
    }
}

/* Decorative border image only at bottom */
.about__section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("images/border-decor.png") repeat-x center bottom;
    background-size: contain;
    z-index: 5;
    pointer-events: none;
}


/* ===========================
   WHO WE ARE SECTION
   =========================== */
/* Section heading */
.section__heading--maintitle {
    font-weight: 700;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    position: relative;
    display: inline-block;
    padding-bottom: .5rem;
}

.section__heading--maintitle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Right image */
.image-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp .9s ease-out .4s forwards;
}

.whoweareimg {
    border: 4px solid #ccc;
    max-width: 100%;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, .1),
        0 4px 12px rgba(0, 0, 0, .06);
    transition: transform .45s cubic-bezier(.2, .8, .3, 1),
        box-shadow .45s ease;
}

.image-container:hover .whoweareimg {
    border: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #2f67f8, #ff0000);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, .15),
        0 6px 14px rgba(0, 0, 0, .1);
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .section__heading--maintitle::after {
        width: 50px;
    }

    .whoweareimg {
        border-radius: 10px;
    }
}

/* Heading polish + underline */
.section__heading--maintitle {
    font-weight: 800;
    letter-spacing: .5px;
    display: inline-block;
    position: relative;
    padding-bottom: .55rem;
    opacity: 0;
    transform: translateY(12px);
    animation: cs_fadeUp .8s cubic-bezier(.22, .8, .36, 1) .05s forwards;
}

.section__heading--maintitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 110px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    transform: translateX(-50%);
}

/* ===========================
   CSS-only loading shimmer
   - shows while empty,
   - auto-hides once tool injects canvas/iframe/etc.
   =========================== */
#clothe-tshirt-maker:empty::before {
    content: "Loading designer…";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 600;
    letter-spacing: .2px;
    color: #6a5b21;
    z-index: 1;
}

#clothe-tshirt-maker:empty::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, .55) 40%,
            rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(135deg, rgba(0, 0, 0, .03) 0 2px, transparent 2px 8px);
    animation: cs_shimmer 1.4s infinite linear;
    pointer-events: none;
}

/* Once content exists, remove shimmer */
#clothe-tshirt-maker:not(:empty)::before,
#clothe-tshirt-maker:not(:empty)::after {
    display: none;
}

/* ===========================
   Optional: bottom decorative border for section
   (reuse per your theme; change URL as needed)
   =========================== */


/* Animations */
@keyframes cs_fadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cs_shimmer {
    0% {
        background-position: -40% 0, 0 0;
    }

    100% {
        background-position: 140% 0, 0 0;
    }
}


/* ===========================
   HOW WE WORK SECTION
   =========================== */


/* Heading polish */
.section__heading--maintitle {
    font-weight: 800;
    letter-spacing: .5px;
    display: inline-block;
    position: relative;
    padding-bottom: .55rem;
    opacity: 0;
    transform: translateY(12px);
    animation: hw_fadeUp .8s cubic-bezier(.22, .8, .36, 1) .05s forwards;
}

.section__heading--maintitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 95px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    transform: translateX(-50%);
}

.section__heading p {
    margin-top: .35rem;
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    opacity: .9;
}

/* Animation keyframes */
@keyframes hw_fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   FRESH ARRIVALS – BG + POLISH
   (No HTML changes required)
   =========================== */
.product__section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, #fffdf9 0%, #fff8ee 45%, #ffffff 100%);
}

/* Soft decorative blobs to echo brand gold/orange */
.product__section::before {
    content: "";
    position: absolute;
    inset: -15% -25%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(42vmax 42vmax at 92% 8%, rgba(255, 200, 120, .22), transparent 65%),
        radial-gradient(36vmax 36vmax at 8% 92%, rgba(212, 175, 55, .18), transparent 60%),
        radial-gradient(28vmax 28vmax at 70% 70%, rgba(255, 140, 80, .10), transparent 60%);
    filter: blur(1px);
}

/* Keep inner content above decorations */
.product__section .container-fluid {
    position: relative;
    z-index: 1;
}

/* ===========================
   SECTION HEADING
   =========================== */
.section__heading--maintitle {
    font-weight: 800;
    letter-spacing: -.2px;
    display: inline-block;
    position: relative;
    padding-bottom: .5rem;
}

.section__heading--maintitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 88px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    transform: translateX(-50%);
}

/* ===========================
   TABS (single tab now, but styled)
   =========================== */
.product__tab--primary__btn {
    gap: 12px;
}

.product__tab--primary__btn__list {
    position: relative;
    font-weight: 600;
    padding: .55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    color: #6a5b21;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.product__tab--primary__btn__list:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.product__tab--primary__btn__list.active {
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    color: #fff;
    box-shadow: 0 12px 28px rgba(212, 175, 55, .25);
}

/* Optional underline indicator if multiple tabs are added later */
.product__tab--primary__btn__list.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 38px;
    height: 4px;
    border-radius: 3px;
    background: currentColor;
    opacity: .45;
    transform: translateX(-50%);
}

/* ===========================
   GRID REVEAL ANIMATION
   =========================== */
@media (prefers-reduced-motion: no-preference) {
    .tab_pane.active .col {
        opacity: 0;
        transform: translateY(16px) scale(.98);
        animation: cardIn .7s cubic-bezier(.22, .8, .36, 1) forwards;
    }

    /* cascade */
    .tab_pane.active .col:nth-child(1) {
        animation-delay: .05s
    }

    .tab_pane.active .col:nth-child(2) {
        animation-delay: .10s
    }

    .tab_pane.active .col:nth-child(3) {
        animation-delay: .15s
    }

    .tab_pane.active .col:nth-child(4) {
        animation-delay: .20s
    }

    .tab_pane.active .col:nth-child(5) {
        animation-delay: .25s
    }

    .tab_pane.active .col:nth-child(6) {
        animation-delay: .30s
    }

    .tab_pane.active .col:nth-child(7) {
        animation-delay: .35s
    }

    .tab_pane.active .col:nth-child(8) {
        animation-delay: .40s
    }

    .tab_pane.active .col:nth-child(9) {
        animation-delay: .45s
    }

    .tab_pane.active .col:nth-child(10) {
        animation-delay: .50s
    }
}

@keyframes cardIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===========================
   PRODUCT CARD HOVER POLISH
   =========================== */
.product__items {
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .06),
        0 2px 6px rgba(0, 0, 0, .05);
    transition: transform .35s cubic-bezier(.2, .8, .3, 1), box-shadow .35s ease;
}

.product__items:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .12),
        0 6px 14px rgba(0, 0, 0, .08);
}

/* Thumbnail */
.product__items--thumbnail {
    position: relative;
    overflow: hidden;
}

.product__items--img {
    transition: transform .45s cubic-bezier(.2, .8, .3, 1), filter .45s;
    will-change: transform;
}

.product__items:hover .product__primary--img {
    transform: scale(1.05);
    filter: saturate(1.06) contrast(1.02);
}

/* If you enable true swap on hover, keep both same src or different designs */
.product__items:hover .product__secondary--img {
    transform: scale(1.03);
}

/* Badge */
.product__badge--items.sale {
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    padding: .25rem .55rem;
    box-shadow: 0 6px 16px rgba(233, 41, 41, 0.35);
}

/* Content */
.product__items--content {
    padding: 14px 14px 16px;
}

.product__items--content__subtitle {
    font-size: .825rem;
    color: #6b6b6b;
}

.product__items--content__title a {
    transition: color .25s ease;
}

.product__items:hover .product__items--content__title a {
    color: #ff0000;
    /* warm gold-brown accent */
}

/* Rating row – tighter and consistent color */
.product__rating .rating__list--icon__svg {
    color: #f0b90b;
    opacity: .92;
}

/* CTA button refinement */
.product__items--action .add__to--cart {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 999px;
    padding: .5rem .9rem;
    background: #111;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.product__items--action .add__to--cart:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    color: #1e1a10;
    box-shadow: 0 10px 22px rgba(212, 175, 55, .35);
}

/* ===========================
   BOTTOM DECORATIVE BORDER (optional)
   =========================== */
/* If you already set a site-wide border image, reuse it here for visual rhythm. */
.product__section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    /* adjust to your border asset */
    background: url("images/border-decor.png") repeat-x center bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

/* ===========================
   MOBILE TWEAKS
   =========================== */
@media (max-width: 991.98px) {
    .product__tab--primary__btn__list {
        padding: .5rem .9rem;
    }

    .product__items {
        border-radius: 12px;
    }

    .product__section::after {
        height: 56px;
    }
}



/* ===========================
   HOW WE WORK SECTION
   =========================== */

/* Heading polish */
.section__heading--maintitle {
    font-weight: 800;
    letter-spacing: .5px;
    display: inline-block;
    position: relative;
    padding-bottom: .55rem;
    opacity: 0;
    transform: translateY(12px);
    animation: hw_fadeUp .8s cubic-bezier(.22, .8, .36, 1) .05s forwards;
}

.section__heading--maintitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 95px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    transform: translateX(-50%);
}

.section__heading p {
    margin-top: .35rem;
    color: #6a5b21;
    font-weight: 500;
    opacity: .9;
}

/* Animation keyframes */
@keyframes hw_fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   CUSTOMIZE YOUR STYLE (no HTML changes)
   =========================== */
/* Heading polish + underline */
.section__heading--maintitle {
    font-weight: 800;
    letter-spacing: .5px;
    display: inline-block;
    position: relative;
    padding-bottom: .55rem;
    opacity: 0;
    transform: translateY(12px);
    animation: cs_fadeUp .8s cubic-bezier(.22, .8, .36, 1) .05s forwards;
}

.section__heading--maintitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 110px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    transform: translateX(-50%);
}

/* Designer stage */
#clothe-tshirt-maker {
    position: relative;
    width: min(1200px, 96%);
    margin: 22px auto 0;
    min-height: 520px;
    /* set your preferred stage height */
    border-radius: 16px;
    background:
        radial-gradient(1200px 1200px at 50% -30%, rgba(255, 255, 255, .9), transparent 70%),
        repeating-linear-gradient(135deg, rgba(0, 0, 0, .035) 0 2px, transparent 2px 8px),
        #ffffff;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, .12),
        0 6px 16px rgba(0, 0, 0, .08),
        0 0 0 1px rgba(0, 0, 0, .06) inset;
    overflow: hidden;
    opacity: 0;
    transform: translateY(14px) scale(.99);
    animation: cs_fadeUp .85s cubic-bezier(.22, .8, .36, 1) .15s forwards;
}

/* Hover/interaction polish if the tool adds content */
#clothe-tshirt-maker:hover {
    box-shadow:
        0 22px 60px rgba(0, 0, 0, .16),
        0 8px 22px rgba(0, 0, 0, .10),
        0 0 0 1px rgba(0, 0, 0, .06) inset;
}

/* ===========================
   CSS-only loading shimmer
   - shows while empty,
   - auto-hides once tool injects canvas/iframe/etc.
   =========================== */
#clothe-tshirt-maker:empty::before {
    content: "Loading designer…";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-weight: 600;
    letter-spacing: .2px;
    color: #6a5b21;
    z-index: 1;
}

#clothe-tshirt-maker:empty::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg,
            rgba(255, 255, 255, 0) 20%,
            rgba(255, 255, 255, .55) 40%,
            rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(135deg, rgba(0, 0, 0, .03) 0 2px, transparent 2px 8px);
    animation: cs_shimmer 1.4s infinite linear;
    pointer-events: none;
}

/* Once content exists, remove shimmer */
#clothe-tshirt-maker:not(:empty)::before,
#clothe-tshirt-maker:not(:empty)::after {
    display: none;
}

/* ===========================
   Optional: bottom decorative border for section
   (reuse per your theme; change URL as needed)
   =========================== */

/* Animations */
@keyframes cs_fadeUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cs_shimmer {
    0% {
        background-position: -40% 0, 0 0;
    }

    100% {
        background-position: 140% 0, 0 0;
    }
}

/* ===========================
   HOW WE WORK SECTION
   =========================== */

/* Heading polish */
.section__heading--maintitle {
    font-weight: 800;
    letter-spacing: .5px;
    display: inline-block;
    position: relative;
    padding-bottom: .55rem;
    opacity: 0;
    transform: translateY(12px);
    animation: hw_fadeUp .8s cubic-bezier(.22, .8, .36, 1) .05s forwards;
}

.section__heading--maintitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 95px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    transform: translateX(-50%);
}

.section__heading p {
    margin-top: .35rem;
    color: #6a5b21;
    font-weight: 500;
    opacity: .9;
}

/* Animation keyframes */
@keyframes hw_fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   WHAT WE SERVE (no HTML changes)
   =========================== */

/* Heading underline + entrance */
.section__heading--maintitle {
    font-weight: 800;
    letter-spacing: .2px;
    display: inline-block;
    position: relative;
    padding-bottom: .55rem;
    opacity: 0;
    transform: translateY(12px);
    animation: wws_fadeUp .8s cubic-bezier(.22, .8, .36, 1) .05s forwards;
}

.section__heading--maintitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 90px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    transform: translateX(-50%);
}

/* Columns: staged reveal */

.paas-mar2 .image-container {
    animation-delay: .15s;
}

@keyframes wws_fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image depth + hover polish */
.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatweserveimgcol {
    border: 4px solid #ccc;
    max-width: 100%;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, .10),
        0 4px 12px rgba(0, 0, 0, .06);
    transition: transform .45s cubic-bezier(.2, .8, .3, 1),
        box-shadow .45s ease, filter .45s ease;
}

.image-container:hover .whatweserveimgcol {
    border: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #2f67f8, #ff0000);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .16),
        0 6px 16px rgba(0, 0, 0, .10);
    filter: saturate(1.05) contrast(1.02);
}

/* Content typography polish */
.banner__section .content p {
    line-height: 1.7;
    margin-bottom: 1.1rem;
    color: #333;
    transition: color .25s ease;
}

.banner__section .content:hover p {
    color: #2a2a2a;
}

/* Optional subtle left accent for paragraphs (no content change) */
.banner__section .content p {
    position: relative;
    padding-left: 14px;
}

.banner__section .content p::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #2f67f8 0%, #ff0000 70%, rgba(183, 134, 11, 0) 80%);
    opacity: .9;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .whatweserveimgcol {
        border-radius: 12px;
    }
}

/* ===========================
   DEALS BANNER – Visual Polish
   (No HTML changes required)
   =========================== */
.deals__banner--section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, #fffdf9 0%, #fff7ec 50%, #ffffff 100%);
}

/* Soft golden/orange glow blobs */
.deals__banner--section::before {
    content: "";
    position: absolute;
    inset: -12% -18%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(42vmax 42vmax at 92% 8%, rgba(255, 200, 120, .22), transparent 65%),
        radial-gradient(36vmax 36vmax at 8% 92%, rgba(212, 175, 55, .18), transparent 60%),
        radial-gradient(26vmax 26vmax at 70% 70%, rgba(255, 140, 80, .10), transparent 60%);
    filter: blur(1px);
}

.deals__banner--inner {
    position: relative;
    z-index: 1;
}

/* ---------------------------
   Content Entrance + Typo
   --------------------------- */
.deals__banner--content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 28px 16px 36px;
    border-radius: 18px;
    background:
        radial-gradient(1100px 1100px at 50% -35%, rgba(255, 255, 255, .85), transparent 70%),
        rgba(255, 255, 255, .35);
    backdrop-filter: blur(4px);
    box-shadow:
        0 14px 38px rgba(0, 0, 0, .10),
        0 4px 12px rgba(0, 0, 0, .06);
    opacity: 0;
    transform: translateY(14px);
    animation: deals_fadeUp .8s cubic-bezier(.22, .8, .36, 1) .05s forwards;
}

.deals__banner--content__subtitle {
    font-weight: 700;
    letter-spacing: .25px;
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-bottom: .35rem;
}

.deals__banner--content__desc {
    line-height: 1.75;
    color: #2c2c2c;
    margin: .4rem 0 1rem;
    font-size: 1rem;
    transition: color .25s ease;
}

.deals__banner--content:hover .deals__banner--content__desc {
    color: #1f1f1f;
}

.deals__banner--content__maintitle {
    font-weight: 800;
    letter-spacing: -.3px;
    margin: .2rem 0 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: .4rem;
}

.deals__banner--content__maintitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 110px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg,
            #ff0000 0%,
            #2f67f8 50%,
            rgba(212, 175, 55, 0) 100%);
    transform: translateX(-50%);
}

/* ---------------------------
   CTA Button Polish
   --------------------------- */
.primary__btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.15rem;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.primary__btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    box-shadow: 0 14px 34px rgba(212, 55, 55, 0.35);
}

.primary__btn--arrow__icon {
    transition: transform .25s ease;
}

.primary__btn:hover .primary__btn--arrow__icon {
    transform: translateX(4px);
}

/* ---------------------------
   Play Button – glass + pulse
   --------------------------- */
.banner__bideo--play {
    margin-top: .6rem;
}

.banner__bideo--play__icon {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #1c1c1c;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(6px);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, .18),
        inset 0 0 0 1px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.banner__bideo--play__icon:hover {
    transform: scale(1.06);
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, .22),
        0 0 0 8px rgba(228, 42, 42, 0.12);
}

/* Subtle breathing glow */
@media (prefers-reduced-motion: no-preference) {
    .banner__bideo--play__icon::after {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 999px;
        background: radial-gradient(closest-side, rgba(212, 175, 55, .25), transparent 70%);
        filter: blur(6px);
        animation: deals_pulse 2.2s ease-in-out infinite .6s;
    }
}

/* ---------------------------
   Bottom decorative border (optional)
   --------------------------- */
.deals__banner--section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    /* adjust to your asset height */
    background: url("images/border-decor.png") repeat-x center bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

/* ---------------------------
   Keyframes
   --------------------------- */
@keyframes deals_fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes deals_pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .35;
    }

    50% {
        transform: scale(1.06);
        opacity: .18;
    }
}

/* ---------------------------
   Responsive
   --------------------------- */
@media (max-width: 991.98px) {
    .deals__banner--content {
        padding: 22px 14px 28px;
        border-radius: 14px;
    }

    .deals__banner--section::after {
        height: 52px;
    }
}

/* ===========================
   PRODUCT – Best Seller
   =========================== */
.product__section {
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf3 55%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.product__section--inner {
    padding: 4px 0 8px;
}

/* Card */
.product__items {
    position: relative;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

.product__items:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
}

/* Thumbnail (image swap already in your HTML) */
.product__items--thumbnail {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.product__items--img {
    width: 100%;
    display: block;
    transition: opacity .35s ease, transform .35s ease;
}

.product__primary--img {
    opacity: 1;
}

.product__secondary--img {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product__items:hover .product__primary--img {
    opacity: 0;
    transform: scale(1.03);
}

.product__items:hover .product__secondary--img {
    opacity: 1;
    transform: scale(1.03);
}

/* Badge */
.product__badge {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
}

.product__badge--items {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    letter-spacing: .5px;
}

.product__badge--items.sale {
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    color: #fff;
}

/* Content */
.product__items--content {
    padding: 14px 14px 16px;
    display: grid;
    gap: 8px;
}

.product__items--content__subtitle {
    color: #6b6b6b;
    font-weight: 600;
    font-size: .9rem;
}

.product__items--content__title a {
    color: #141414;
    text-decoration: none;
    font-weight: 800;
}

/* Stars */
.rating .rating__list {
    line-height: 1;
}

.rating__list--icon__svg {
    color: #ffb400;
}

/* Actions */
.product__items--action {
    margin-top: 6px;
    gap: 8px;
}

.product__items--action__btn.add__to--cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    padding: .65rem .9rem;
    border-radius: 999px;
    /* background: #111; */
    background: linear-gradient(90deg, #ff0000, #2f67f8);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.product__items:hover .product__items--action__btn.add__to--cart {
    border: none;
    color: #fff;
    box-shadow: 0 12px 28px rgba(220, 49, 49, 0.35);
}

.add__to--cart .fa {
    font-size: .95rem;
}

/* Swiper arrows */
.product__section .swiper__nav--btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
    transition: transform .2s ease, background .2s ease;
}

.product__section .swiper__nav--btn::after {
    display: none;
}

.product__section .swiper-button-prev,
.product__section .swiper-button-next {
    color: #111;
    font-weight: 900;
    /* if using font icons, keep; otherwise Swiper draws arrows */
}

.product__section .swiper__nav--btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #2f67f8, #ff0000);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonial__section {
    position: relative;
    background:
        radial-gradient(1000px 400px at 10% -10%, rgba(212, 175, 55, .08), transparent 60%),
        #fff;
}

.testimonial__items {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    padding: 22px 18px;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}

.testimonial__items:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
}

.testimonial__items--thumbnail {
    width: 86px;
    height: 86px;
    margin: 0 auto 10px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.testimonial__items--thumbnail__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__items--thumbnail__img {
    border: 4px solid #ccc;
    /* default border color */
    border-radius: 50%;
    transition: border-color 0.3s ease;
    /* smooth transition */
}

.testimonial__items--title {
    font-weight: 800;
    margin-bottom: 6px;
}

.testimonial__items--desc {
    color: #333;
    margin: 0 auto 10px;
    max-width: 720px;
    line-height: 1.7;
    position: relative;
    padding: 0 10px;
}

.testimonial__items--desc::before,
.testimonial__items--desc::after {
    content: "“";
    position: absolute;
    font-size: 2rem;
    line-height: 1;
    color: rgba(212, 175, 55, .55);
}

.testimonial__items--desc::before {
    left: -2px;
    top: -6px;
}

.testimonial__items--desc::after {
    content: "”";
    right: -2px;
    bottom: -10px;
}

/* Stars */
.testimonial__rating .rating__list--icon__svg {
    color: #ffb400;
}

/* Swiper pagination dots */
.testimonial__pagination.swiper-pagination-bullets {
    position: static;
    margin-top: 16px;
}

.testimonial__pagination .swiper-pagination-bullet {
    background: linear-gradient(90deg, #ff0000, #2f67f8 rgba(212, 175, 55, 0));
    width: 10px;
    height: 10px;
    opacity: 1;
    transition: transform .2s ease, background .2s ease;
}

.testimonial__pagination .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #2f67f8, #ff0000);
    transform: scale(1.25);
}

.testimonial__pagination .swiper-pagination-bullet {
    background-color: linear-gradient(90deg, #2f67f8, #ff0000);
    opacity: 0.5;
}

.testimonial__pagination .swiper-pagination-bullet-active {
    background-color: linear-gradient(90deg, #2f67f8, #ff0000);
    opacity: 1;
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */
@media (max-width: 991.98px) {
    .product__items--content {
        padding: 12px;
    }

    .testimonial__items {
        padding: 18px 14px;
    }
}

.whatwedeliverimgcol {
    border: 4px solid #ccc;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, .1),
        0 4px 12px rgba(0, 0, 0, .06);
    transition: transform .45s cubic-bezier(.2, .8, .3, 1),
        box-shadow .45s ease;
}

/* Hover effect */
.whatwedeliverimgcol:hover {
    border: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #2f67f8, #ff0000);
    transform: scale(1.05);
    /* slight pop-up zoom */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    /* shadow glow */
}

.whyusimgcol {
    border: 4px solid #ccc;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, .1),
        0 4px 12px rgba(0, 0, 0, .06);
    transition: transform .45s cubic-bezier(.2, .8, .3, 1),
        box-shadow .45s ease;
}

.whyusimgcol:hover {
    border: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #2f67f8, #ff0000);
    transform: scale(1.05);
    /* slight pop-up zoom */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    /* shadow glow */
}

/* Blog image container */
.blog__thumbnail {
    display: inline-block;
    overflow: hidden;
    border-radius: 12px;
    /* smooth corners */
}

/* Default blog thumbnail image */
.blog__thumbnail--img {
    border: 6px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, #2f67f8, #ff0000);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, .1),
        0 4px 12px rgba(0, 0, 0, .06);
    transition: transform .45s cubic-bezier(.2, .8, .3, 1),
        box-shadow .45s ease;
}

/* Hover effect */
.blog__thumbnail:hover .blog__thumbnail--img {
    transform: scale(1.05);
    /* slight pop-up zoom */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    /* shadow glow */
}

.blog__content--title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 12px 0;
}

.blog__content--btn:hover {
    border: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .blog__thumbnail--img {
        transition: border-color 0.3s ease;
    }

    .blog__thumbnail:hover .blog__thumbnail--img {
        transform: none;
        box-shadow: none;
    }
}

/* ===== RB Section Styles (Red/Blue only) ===== */
:root {
    --rb-blue: #2f67f8;
    --rb-red: #ff0000;
    --rb-grad: linear-gradient(90deg, var(--rb-blue), var(--rb-red));
}

.rb__section .rb-sub {
    opacity: .85;
    /* uses current text color; no extra colors */
}

/* Gradient text utility (blue→red) */
.rb-gradient-text {
    background: var(--rb-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Card with gradient border + pop/glow on hover */
.rb-card {
    position: relative;
    border-radius: 18px;
    padding: 24px 22px;
    transition: transform .25s ease, filter .25s ease;
}

/* Gradient border (mask trick, no extra colors) */
.rb-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;
    background: var(--rb-grad);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Subtle gradient glow on hover */
.rb-card:hover {
    transform: translateY(-6px);
}

.rb-card:hover::after {
    content: "";
    position: absolute;
    inset: -12px;
    background: var(--rb-grad);
    filter: blur(22px);
    opacity: .45;
    border-radius: inherit;
    z-index: -1;
}

/* Titles & copy */
.rb-card__title {
    margin: 0 0 8px;
    font-size: 1.125rem;
    line-height: 1.3;
}

.rb-card__desc {
    margin: 0;
}

/* CTA button with gradient outline → fills on hover */
.rb-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid transparent;
    background:
        linear-gradient(#0000, #0000) padding-box,
        /* transparent inner */
        var(--rb-grad) border-box;
    /* gradient stroke */
    color: transparent;
    background-clip: padding-box, border-box;
    position: relative;
    transition: transform .25s ease, filter .25s ease;
}

.rb-btn::before {
    /* gradient text inside the button */
    content: attr(aria-label);
}

.rb-btn {
    /* gradient label without duplicate content (works cross-browser) */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: var(--rb-grad);
    -webkit-text-fill-color: transparent;
}

.rb-btn:hover {
    transform: translateY(-3px);
    /* fill the pill with gradient on hover while keeping text readable */
    background:
        var(--rb-grad) padding-box,
        var(--rb-grad) border-box;
    color: #0000;
    /* keep text handled by gradient clip */
}

.rb-btn .rb-btn__arrow {
    /* arrow inherits currentColor; for gradient text we set solid via trick: */
    color: currentColor;
}

.slider__content {
    margin-top: 140px;
}

@media screen and (max-width: 768px) {
    .slider__content {
        margin-top: 50%;
    }
}

/* Brand Colors */
:root {
    --brand-blue: #2f67f8;
    --brand-red: #ff0000;
    --brand-light: #ffffff;
    --brand-dark: #111111;
}

/* Counter Section */
.ra-counter {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    padding: clamp(48px, 7vw, 96px) 20px;
    color: var(--brand-light);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient texture overlay */
.ra-counter::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, .05) 0,
            rgba(255, 255, 255, .05) 2px,
            transparent 2px,
            transparent 6px);
    pointer-events: none;
}

.ra-counter__wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ra-counter__card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.ra-counter__card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-red);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.ra-counter__num {
    font: 800 clamp(34px, 6vw, 54px) / 1.05 "Raleway", system-ui, sans-serif;
    margin: 0 0 6px;
    color: var(--brand-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

.ra-counter__label {
    font: 500 15px/1.35 "Montserrat", system-ui, sans-serif;
    letter-spacing: .2px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
}

/* Accent underline on hover */
.ra-counter__card:hover .ra-counter__label {
    text-decoration: underline;
    text-decoration-color: var(--brand-red);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 992px) {
    .ra-counter__wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ra-counter__wrap {
        grid-template-columns: 1fr;
    }
}