/* Extracted from home-fashion.html inline <style> blocks for caching + smaller HTML. */

/* ----------------------------------------------------------
   PrinterStream — pre-Swiper FOUC guard.
   Before Swiper's JS runs, the .swiper-wrapper isn't a flex row and
   .swiper-slide isn't width-constrained, so the first product card
   (with a tall 330×440 image) renders at natural size and we get the
   "huge t-shirt centered" flash on hard reload.  These rules clamp the
   wrapper before init.  Swiper adds `.swiper-initialized` once ready —
   the second rule undoes the clamps so paginated layouts work.
   Reference: https://swiperjs.com/swiper-api#slider-states
   ---------------------------------------------------------- */
.swiper:not(.swiper-initialized) {
    overflow: hidden;
}
.swiper:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}
/* Each slide hidden except the very first one so we don't render every
   product card stacked at full width before init. */
.swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 100%;
    max-width: 100%;
}
.swiper:not(.swiper-initialized) .swiper-slide ~ .swiper-slide {
    display: none;
}
/* Hero uses fade — the one slide should still cover the hero block at
   the heights the CSS below declares, not at the image's natural size. */
.home-hero .swiper:not(.swiper-initialized) .swiper-slide .sld_image img {
    width: 100%;
    object-fit: cover;
}
/* Multi-item grid sliders must NOT collapse to one full-width card before
   Swiper boots — on desktop that produced the "one giant t-shirt" flash,
   because the blanket guard above forces flex:0 0 100% and hides siblings.
   Re-show the siblings and approximate each slider's per-view count + spacing
   so the pre-init layout already matches the final grid. The `> .swiper-slide`
   selector matches the hide rule's specificity and, being later, wins.
   Swiper recomputes exact pixel widths once it initialises. */
.home-product-slider:not(.swiper-initialized) .swiper-wrapper,
.home-category-slider:not(.swiper-initialized) .swiper-wrapper,
.home-highlight-products:not(.swiper-initialized) .swiper-wrapper {
    gap: 16px;
}
.home-product-slider:not(.swiper-initialized) .swiper-wrapper > .swiper-slide,
.home-category-slider:not(.swiper-initialized) .swiper-wrapper > .swiper-slide,
.home-highlight-products:not(.swiper-initialized) .swiper-wrapper > .swiper-slide {
    display: block;
    flex: 0 0 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
}
@media (max-width: 575.98px) {
    .home-product-slider:not(.swiper-initialized) .swiper-wrapper > .swiper-slide {
        flex-basis: 100%;
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .home-product-slider:not(.swiper-initialized) .swiper-wrapper,
    .home-category-slider:not(.swiper-initialized) .swiper-wrapper,
    .home-highlight-products:not(.swiper-initialized) .swiper-wrapper { gap: 20px; }
    .home-product-slider:not(.swiper-initialized) .swiper-wrapper > .swiper-slide,
    .home-category-slider:not(.swiper-initialized) .swiper-wrapper > .swiper-slide {
        flex: 0 0 calc((100% - 40px) / 3);
        max-width: calc((100% - 40px) / 3);
    }
    .home-highlight-products:not(.swiper-initialized) .swiper-wrapper > .swiper-slide {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
}
@media (min-width: 1200px) {
    .home-product-slider:not(.swiper-initialized) .swiper-wrapper,
    .home-category-slider:not(.swiper-initialized) .swiper-wrapper { gap: 24px; }
    .home-product-slider:not(.swiper-initialized) .swiper-wrapper > .swiper-slide,
    .home-category-slider:not(.swiper-initialized) .swiper-wrapper > .swiper-slide {
        flex: 0 0 calc((100% - 72px) / 4);
        max-width: calc((100% - 72px) / 4);
    }
    .home-highlight-products:not(.swiper-initialized) .swiper-wrapper { gap: 24px; }
    .home-highlight-products:not(.swiper-initialized) .swiper-wrapper > .swiper-slide {
        flex: 0 0 calc((100% - 48px) / 3);
        max-width: calc((100% - 48px) / 3);
    }
}
        .home-hero .slideshow-wrap{position:relative;min-height:730px}.home-hero .sld_image img{width:100%;height:730px;object-fit:cover}.home-hero .sld_content{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;text-align:center}.home-hero .content-sld_wrap{max-width:840px;margin:0 auto;padding:120px 0 80px}.home-hero .sub-text_sld{text-transform:uppercase;letter-spacing:.22em;font-size:13px;color:#f3f0ea;margin-bottom:16px}.home-hero .title_sld{font-size:clamp(46px,6vw,92px);line-height:.96;color:#fff;margin-bottom:18px;text-shadow:0 18px 48px rgba(0,0,0,.18)}.home-hero .desc_sld{max-width:620px;margin:0 auto;color:rgba(255,255,255,.92);font-size:19px;line-height:1.6}.home-hero__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(17,17,17,.18) 0%,rgba(17,17,17,.30) 100%)}.home-hero-nav{width:62px;height:62px;border-radius:50%;border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.16);backdrop-filter:blur(12px);color:#fff;transition:transform .2s ease,background .2s ease,border-color .2s ease}.home-hero-nav:hover{transform:translateY(-2px);background:rgba(255,255,255,.26);border-color:rgba(255,255,255,.5)}.home-title{margin-bottom:10px;font-size:clamp(30px,4vw,44px)}.home-subtitle{max-width:620px;margin:0 auto;color:#667085}.home-product-slider .swiper-slide{height:auto}.home-rich-card{height:100%}.home-rich-card .card-product_wrapper{border-radius:20px;overflow:hidden;background:#f3f0ed}.home-rich-card .product-img{display:block;position:relative;overflow:hidden;background:#f3f0ed}.home-rich-card .product-img img{width:100%;aspect-ratio:330/440;object-fit:cover;transition:transform .45s ease,opacity .45s ease}.home-rich-card .product-img__secondary{position:absolute;inset:0;opacity:0;transform:scale(1.04)}.home-rich-card .product-img.has-secondary:hover .product-img__primary{opacity:0;transform:scale(1.02)}.home-rich-card .product-img.has-secondary:hover .product-img__secondary{opacity:1;transform:scale(1)}.home-rich-card .product-action_list{top:18px;right:18px;gap:10px}.home-rich-card .box-icon,.home-instagram-eye,.home-compare-remove{width:44px;height:44px;border-radius:999px;border:0;background:rgba(255,255,255,.96);box-shadow:0 12px 24px rgba(17,17,17,.12);color:#111;display:inline-flex;align-items:center;justify-content:center;transition:transform .2s ease,background .2s ease}.home-rich-card .box-icon:hover,.home-instagram-eye:hover,.home-compare-remove:hover{transform:translateY(-2px);background:#fff}.home-rich-card .product-action_bot{left:18px;right:18px;bottom:18px}.home-rich-card .product-action_bot .tf-btn{border-radius:999px;min-height:50px}.home-rich-card .name-product{display:block;min-height:48px;font-size:20px}.home-rich-card .price-wrap{display:flex;align-items:center;gap:8px;flex-wrap:wrap}.home-rich-card .price-new{font-size:22px}.home-swatch-btn{width:22px;height:22px;border-radius:50%;border:1px solid rgba(17,17,17,.18);padding:0;background:#fff;position:relative}.home-swatch-btn::after{content:"";position:absolute;inset:3px;border-radius:50%;background:var(--swatch-color,#111)}.home-size-chip{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:30px;border-radius:999px;padding:0 10px;background:#f5f3ef;color:#111;font-size:12px;font-weight:600;margin-right:6px}.home-category-card{display:block;border-radius:28px;overflow:hidden;position:relative;height:100%}.home-category-card img{width:100%;aspect-ratio:4/5;object-fit:cover;transition:transform .35s ease}.home-category-card:hover img{transform:scale(1.04)}.home-category-card__content{position:absolute;inset:auto 18px 18px 18px;padding:18px 20px;border-radius:24px;background:rgba(255,255,255,.92);backdrop-filter:blur(10px)}.home-highlights{background:linear-gradient(180deg,#fff 0%,#fbf8f5 100%)}.home-highlights .card-product_wrapper{background:#f1ece6}.home-review-card{height:100%}.home-review-photo{border-radius:22px;overflow:hidden;margin-bottom:20px}.home-review-photo img{width:100%;aspect-ratio:4/4.6;object-fit:cover}.home-review-stars{color:#111;letter-spacing:2px;margin-bottom:14px}.home-review-quote{font-size:17px;line-height:1.65;margin-bottom:14px}.home-review-meta{color:#98a2b3}
        .home-promo-wrap{border-radius:32px;overflow:hidden;background:#dac8b4}.home-promo-marquee{overflow:hidden;white-space:nowrap;background:#111;color:#fff;padding:16px 0}.home-promo-marquee__track{display:inline-flex;align-items:center;gap:26px;min-width:200%;animation:home-marquee 24s linear infinite;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:.24em}.home-promo-marquee__dot{width:8px;height:8px;border-radius:50%;background:#f15c4f;display:inline-block}@keyframes home-marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}.home-promo-main{position:relative;min-height:560px}.home-promo-main img{width:100%;height:560px;object-fit:cover}.home-promo-overlay{position:absolute;inset:0;display:flex;align-items:center;background:linear-gradient(90deg,rgba(34,28,23,.34) 0%,rgba(34,28,23,.08) 52%,rgba(34,28,23,0) 100%)}.home-promo-content{max-width:540px;padding:44px;color:#fff}.home-promo-content h2{font-size:clamp(38px,5vw,74px);line-height:.98;color:#fff;margin-bottom:18px}.home-instagram-card{display:block;position:relative;border-radius:18px;overflow:hidden;background:#ece7e2}.home-instagram-card img{width:100%;aspect-ratio:1/1.08;object-fit:cover;transition:transform .35s ease}.home-instagram-card:hover img{transform:scale(1.05)}.home-instagram-card__overlay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;opacity:0;background:rgba(17,17,17,.14);transition:opacity .25s ease}.home-instagram-card:hover .home-instagram-card__overlay{opacity:1}.home-instagram-card__handle{position:absolute;left:16px;bottom:16px;padding:8px 14px;border-radius:999px;background:rgba(255,255,255,.9);color:#111;font-size:12px;font-weight:700}.home-modal-gallery{display:grid;gap:18px}.home-modal-gallery img{width:100%;border-radius:18px;object-fit:cover;background:#f5f0ea}.home-modal-main-image{aspect-ratio:3/4}.home-modal-thumb{aspect-ratio:3/4;max-width:104px}.home-modal-color-list,.home-modal-size-list,.home-compare-list{display:flex;flex-wrap:wrap;gap:10px}.home-modal-color-btn,.home-modal-size-btn{border:1px solid rgba(17,17,17,.14);background:#fff;border-radius:14px;transition:all .2s ease}.home-modal-color-btn{width:62px;height:62px;padding:4px;overflow:hidden}.home-modal-color-btn img{width:100%;height:100%;object-fit:cover;border-radius:10px}.home-modal-size-btn{min-width:54px;height:46px;padding:0 16px;font-weight:600}.home-modal-color-btn.is-active,.home-modal-size-btn.is-active{border-color:#111;background:#111;color:#fff}.home-modal-actions{display:grid;grid-template-columns:160px 1fr;gap:12px;margin-top:22px}.home-qty{display:flex;align-items:center;justify-content:space-between;gap:10px;min-height:58px;padding:0 18px;border-radius:999px;border:1px solid rgba(17,17,17,.12);background:#fff}.home-qty button{border:0;background:transparent;font-size:20px}.home-compare-item{width:140px;flex:0 0 auto;position:relative}.home-compare-item img{width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:14px;margin-bottom:10px}.home-compare-remove{position:absolute;top:8px;right:8px;width:32px;height:32px;font-size:14px}.home-compare-empty{color:#667085}.home-toast-stack{position:fixed;right:20px;top:20px;z-index:2600;display:flex;flex-direction:column;gap:10px}.home-toast{min-width:260px;padding:14px 16px;border-radius:16px;background:#111;color:#fff;box-shadow:0 18px 32px rgba(17,17,17,.18)}.home-toast.is-error{background:#8f1f1f}@media (max-width:1199.98px){.home-hero .slideshow-wrap,.home-hero .sld_image img{min-height:650px;height:650px}.home-promo-main,.home-promo-main img{min-height:480px;height:480px}}@media (max-width:991.98px){.home-hero .slideshow-wrap,.home-hero .sld_image img{min-height:560px;height:560px}.home-modal-actions{grid-template-columns:1fr}}@media (max-width:767.98px){.home-hero .slideshow-wrap,.home-hero .sld_image img{min-height:500px;height:500px}.home-hero .content-sld_wrap{padding:100px 0 64px}.home-hero .desc_sld{font-size:16px}.home-promo-main,.home-promo-main img{min-height:380px;height:380px}.home-promo-content{padding:28px}}
    
        .home-rich-card .box-icon,
        .home-instagram-eye,
        .home-compare-remove { color: #111 !important; }
        .home-rich-card .box-icon .icon,
        .home-rich-card .box-icon:hover .icon,
        .home-instagram-eye .icon,
        .home-instagram-eye:hover .icon { color: #111 !important; }
        .home-rich-card .box-icon:hover,
        .home-instagram-eye:hover,
        .home-compare-remove:hover { background: #fff; }
        .home-category-card { min-height: 100%; border-radius: 30px; isolation: isolate; position: relative; border: 1px solid rgba(17,17,17,.08); box-shadow: 0 20px 44px rgba(17,17,17,.08); overflow: hidden; background: #f6f0ea; }
        .home-category-card img { height: 360px; aspect-ratio: auto; }
        .home-category-card__overlay { display: block; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,13,21,.08) 8%, rgba(9,13,21,.18) 40%, rgba(9,13,21,.64) 100%); }
        .home-category-card__content { position: absolute; inset: auto 18px 18px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border-radius: 22px; background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(14px); transition: transform .28s ease, box-shadow .28s ease; border: 1px solid rgba(255,255,255,.18); }
        .home-category-card__body { display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1 1 auto; }
        .home-category-card__icon { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 14px; background: rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); }
        .home-category-card__icon i { font-size: 18px; }
        .home-category-card__meta, .home-category-card__desc { display: none; }
        .home-category-card__title { display: block; font-size: 24px; line-height: 1; margin: 0; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .home-category-card__arrow { width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; background: rgba(255,255,255,.96); color: #111; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 14px 28px rgba(17,17,17,.2); }
        .home-category-card:hover img { transform: scale(1.06); }
        .home-category-card:hover .home-category-card__content { transform: translateY(-6px); box-shadow: 0 18px 32px rgba(9,13,21,.22); }
        .home-category-slider { padding-bottom: 18px; }
        .home-category-slider .swiper-wrapper { align-items: stretch; }
        .home-category-slider .swiper-slide { width: min(100%, 280px); height: auto; display: flex; }
        .home-category-slider .swiper-slide > * { width: 100%; }
        .home-category-slider-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
        .home-category-slider-nav .tf-sw-nav { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(17,17,17,.1); background: #fff; color: #111; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 14px 28px rgba(17,17,17,.08); }
        .home-highlight-shell { padding: 12px; border-radius: 34px; background: #f8f3ee; }
        .home-highlight-banner { position: relative; min-height: 100%; border-radius: 28px; overflow: hidden; }
        .home-highlight-banner img { width: 100%; height: 100%; min-height: 640px; object-fit: cover; }
        .home-highlight-banner__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,17,17,.1) 0%, rgba(17,17,17,.62) 100%); }
        .home-highlight-banner__content { position: absolute; left: 28px; right: 28px; bottom: 28px; color: #fff; }
        .home-highlight-banner__eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: rgba(255,255,255,.82); margin-bottom: 12px; }
        .home-highlight-banner__title { display: block; font-size: clamp(34px,4vw,56px); line-height: .95; color: #fff; margin-bottom: 16px; }
        .home-highlight-banner__content p { color: rgba(255,255,255,.86); max-width: 320px; }
        .home-highlight-products .swiper-slide { height: auto; }
        .home-highlight-products .card-product_wrapper { background: #f1ece6; }
        .home-promo-banner { position: relative; min-height: 560px; border-radius: 32px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; background: #b96d3d; }
        .home-promo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        .home-promo-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,16,12,.54) 0%, rgba(64,36,20,.24) 42%, rgba(90,49,25,.1) 100%); }
        .home-promo-content { position: relative; z-index: 2; display: flex; align-items: center; min-height: 470px; max-width: 620px; padding: 52px 46px 42px; color: #fff; }
        .home-promo-copy { width: 100%; }
        .home-promo-content h2 { display: block; max-width: 460px; font-size: clamp(40px,5vw,74px); line-height: .92; color: #fff; margin: 0 0 20px; letter-spacing: -.05em; text-wrap: balance; }
        .home-promo-content p { max-width: 360px; color: rgba(255,255,255,.9); font-size: 18px; line-height: 1.6; margin: 0; }
        .home-promo-ticker { position: relative; z-index: 2; overflow: hidden; padding: 18px 0; background: rgba(28,17,12,.78); backdrop-filter: blur(4px); }
        .home-promo-ticker__track { display: inline-flex; align-items: center; gap: 34px; width: max-content; padding: 0 40px; animation: home-marquee 24s linear infinite; white-space: nowrap; font-size: clamp(24px,3.4vw,48px); font-weight: 500; line-height: 1.05; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.85); text-transform: uppercase; }
        .home-promo-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
        .home-promo-point { display: inline-flex; align-items: center; gap: 8px; min-height: 38px; padding: 0 14px; border-radius: 999px; background: rgba(255,255,255,.14); color: rgba(255,255,255,.92); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
        .home-promo-point i { font-size: 14px; color: #fff; }
        .home-custom-shell { padding: 18px; border-radius: 34px; background: linear-gradient(135deg, #f6eee6 0%, #efe2d4 100%); color: #111; overflow: hidden; }
        .home-custom-eyebrow { display: inline-flex; margin-bottom: 10px; color: #8a7258; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; }
        .home-custom-form { padding: 34px; border-radius: 26px; background: rgba(255,255,255,.94); color: #111; height: 100%; border: 1px solid rgba(17,17,17,.06); box-shadow: 0 18px 34px rgba(17,17,17,.06); }
        .home-custom-form-title { font-size: clamp(28px,3.3vw,42px); line-height: 1; margin-bottom: 10px; }
        .home-custom-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 8px; margin-bottom: 8px; }
        .home-custom-point { min-height: 100%; padding: 16px 16px 14px; border-radius: 18px; background: #f8f3ed; border: 1px solid rgba(17,17,17,.06); }
        .home-custom-point-icon { width: 38px; height: 38px; border-radius: 12px; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: #111; box-shadow: 0 10px 20px rgba(17,17,17,.06); margin-bottom: 12px; }
        .home-custom-point strong { display: block; margin-bottom: 6px; color: #111; font-size: 14px; }
        .home-custom-point p { margin: 0; color: #5f5549; font-size: 13px; line-height: 1.55; }
        .home-custom-form .form-control, .home-custom-form .form-select { min-height: 52px; border-radius: 16px; border-color: rgba(17,17,17,.1); }
        .home-custom-form textarea.form-control { min-height: 150px; }
        .home-custom-form .tf-btn { min-height: 54px; border-radius: 999px; }
        .home-custom-form .form-error { min-height: 18px; margin-top: 6px; color: #b42318; font-size: 12px; }
        /* "For teams and companies" section — restyled (May 2026) to match
           the warm cream / coral-accent palette used by hero, highlights and
           promo blocks.  Was previously a dark slab that clashed with the
           rest of the home page. */
        .home-company-shell {
            position: relative;
            padding: 18px;
            border-radius: 34px;
            background: linear-gradient(135deg, #fbf6ee 0%, #f4ebde 100%);
            border: 1px solid rgba(17, 17, 17, .06);
            box-shadow: 0 26px 56px rgba(89, 64, 31, .08);
            color: #111;
            overflow: hidden;
        }
        .home-company-shell::before {
            /* Soft coral wash in the top-right corner — echoes the sale
               badges from the product grid without dominating the section. */
            content: "";
            position: absolute;
            inset: -40% -20% auto auto;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(239, 75, 67, .14), rgba(239, 75, 67, 0) 70%);
            pointer-events: none;
        }
        .home-company-stage {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
            gap: 22px;
            align-items: stretch;
        }
        .home-company-copy {
            padding: 38px;
            border-radius: 28px;
            background: rgba(255, 255, 255, .72);
            border: 1px solid rgba(17, 17, 17, .06);
            backdrop-filter: blur(6px);
        }
        .home-company-copy h2 {
            font-size: clamp(34px, 4.4vw, 56px);
            line-height: 1;
            letter-spacing: -.02em;
            color: #111;
            margin-bottom: 16px;
        }
        .home-company-copy p {
            max-width: 560px;
            color: #5f5649;
            font-size: 17px;
            line-height: 1.72;
            margin-bottom: 0;
        }
        .home-company-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 18px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(239, 75, 67, .12);
            color: #c34735;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
        }
        .home-company-points {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin: 28px 0;
        }
        .home-company-point {
            padding: 18px;
            border-radius: 18px;
            background: #fff;
            border: 1px solid rgba(17, 17, 17, .06);
            transition: transform .2s ease, box-shadow .2s ease;
        }
        .home-company-point:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(17, 17, 17, .07);
        }
        .home-company-point strong {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: #111;
        }
        .home-company-point span {
            display: block;
            color: #6d6d6d;
            font-size: 13px;
            line-height: 1.7;
        }
        .home-company-media {
            position: relative;
            min-height: 100%;
            border-radius: 28px;
            overflow: hidden;
            background: #ece2cf;
            box-shadow: 0 18px 38px rgba(89, 64, 31, .12);
        }
        .home-company-media img {
            width: 100%;
            height: 100%;
            min-height: 540px;
            object-fit: cover;
        }
        .home-company-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(17, 17, 17, 0) 50%, rgba(17, 17, 17, .12) 100%);
        }
        .home-company-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 28px;
        }
        .home-company-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 54px;
            padding: 0 22px;
            border-radius: 999px;
            font-weight: 700;
        }
        .home-company-pill.tf-btn.btn-white {
            background: #111;
            color: #fff;
            border-color: #111;
        }
        .home-company-pill.tf-btn.btn-white:hover {
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(17, 17, 17, .18);
        }
        .home-company-note {
            margin-top: 14px;
            color: #98a2b3;
            font-size: 13px;
        }
        .home-notify-modal .modal-dialog { max-width: 520px; }
        .home-notify-modal .modal-content { border: 0; border-radius: 30px; padding: 28px; }
        .home-notify-meta { display: grid; gap: 6px; margin: 16px 0 18px; padding: 16px 18px; border-radius: 20px; background: #f8f3ed; color: #5e5549; font-size: 13px; line-height: 1.6; }
        .home-notify-meta strong { color: #111; font-size: 16px; }
        @media (max-width: 991.98px) { .home-category-card img { height: 320px; } .home-highlight-banner img { min-height: 420px; } }
        @media (max-width: 991.98px) { .home-company-stage { grid-template-columns: 1fr; } .home-company-media img { min-height: 340px; } .home-company-points { grid-template-columns: 1fr; } }
        @media (max-width: 767.98px) { .home-category-card img { height: 260px; } .home-category-card__content { inset: auto 14px 14px 14px; padding: 12px 12px 12px 13px; gap: 10px; } .home-category-card__body { gap: 10px; } .home-category-card__icon { width: 36px; height: 36px; flex-basis: 36px; border-radius: 12px; } .home-category-card__icon i { font-size: 15px; } .home-category-card__title { font-size: 18px; } .home-category-card__arrow { width: 40px; height: 40px; flex-basis: 40px; } .home-highlight-banner img { min-height: 360px; } .home-promo-banner { min-height: 440px; } .home-promo-content { min-height: 340px; max-width: 100%; padding: 28px 24px 28px; } .home-promo-content h2 { max-width: 240px; font-size: 56px; } .home-promo-content p { font-size: 15px; max-width: 100%; } .home-promo-points { gap: 8px; } .home-promo-point { min-height: 34px; padding: 0 12px; font-size: 11px; } .home-promo-ticker { padding: 14px 0; } .home-promo-ticker__track { font-size: 20px; padding: 0 20px; gap: 22px; } .home-custom-form { padding: 22px; } .home-custom-shell { padding: 10px; border-radius: 26px; } .home-custom-form-title { font-size: 26px; } .home-custom-points { grid-template-columns: 1fr; gap: 10px; } .home-custom-point { padding: 14px; } .home-custom-form textarea.form-control { min-height: 126px; } .home-highlight-products .swiper-slide { width: min(100%, 274px); } .home-highlights .home-rich-card .name-product { min-height: auto; font-size: 18px; } .home-highlights .card-product_info { padding-top: 14px; } .home-company-copy { padding: 24px; } .home-company-copy h2 { font-size: 34px; } .home-company-copy p { font-size: 15px; } .home-company-media img { min-height: 280px; } }
    
        #homeQuickAddModal .modal-dialog { max-width: 560px; }
        #homeQuickAddModal .modal-content,
        #homeSizeGuideModal .modal-content { border: 0; border-radius: 28px; overflow: hidden; }
        #homeQuickAddModal .modal-content { padding: 26px 28px 24px; }
        .home-quickadd-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
        .home-quickadd-head h5 { font-size: 20px; margin: 0; }
        .home-quickadd-close { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: #111; }
        .home-quickadd-mini { display: grid; grid-template-columns: 72px minmax(0,1fr); gap: 18px; align-items: start; margin-bottom: 24px; }
        .home-quickadd-mini-media { width: 72px; height: 96px; border-radius: 12px; object-fit: cover; background: #f2ede7; }
        .home-quickadd-category { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: #6b7280; margin-bottom: 6px; }
        .home-quickadd-name { font-size: 18px; line-height: 1.2; margin-bottom: 10px; }
        .home-quickadd-price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
        .home-quickadd-price { font-size: 18px; line-height: 1; color: #e24c4b; margin: 0; }
        #homeQuickAddComparePrice { font-size: 18px; color: #b4b4b4; }
        #homeQuickAddSaleBadge, #homeQuickViewSaleBadge { display: none; align-items: center; justify-content: center; min-height: 28px; padding: 0 12px; border-radius: 999px; background: #e24c4b; color: #fff; font-size: 13px; font-weight: 700; }
        .home-quickadd-description { color: #667085; line-height: 1.55; margin-bottom: 0; }
        .home-quickadd-block { margin-bottom: 22px; }
        .home-quickadd-label { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
        .home-quickadd-label-main { font-size: 14px; color: #111; }
        .home-quickadd-label-main strong { font-weight: 500; }
        .home-quickadd-sizeguide { padding: 0; border: 0; background: transparent; text-decoration: underline; text-underline-offset: 4px; color: #111; font-size: 14px; font-weight: 600; }
        #homeQuickAddColors.home-modal-color-list { gap: 12px; }
        #homeQuickAddColors .home-modal-color-btn { width: 54px; height: 54px; padding: 3px; border-radius: 4px; background: #f5f1eb; }
        #homeQuickAddColors .home-modal-color-btn img { border-radius: 2px; }
        #homeQuickAddSizes.home-modal-size-list { gap: 12px; align-items: center; }
        #homeQuickAddSizes .home-modal-size-btn { min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 4px; border-color: rgba(17,17,17,.12); background: #fff; color: #111; font-size: 14px; line-height: 1; }
        #homeQuickAddSizes .home-modal-size-btn.is-active { background: #111; border-color: #111; color: #fff; }
        #homeQuickAddSizes .home-modal-size-btn.is-disabled { background: #f3f3f3; border-color: #e6e6e6; color: #c6c6c6; cursor: not-allowed; }
        .home-quickadd-qty-label { margin-bottom: 12px; font-size: 14px; color: #111; }
        .home-quickadd-actions { display: grid; grid-template-columns: 126px minmax(0,1fr); gap: 10px; margin-bottom: 12px; }
        .home-qty { min-height: 50px; padding: 0 16px; }
        .home-qty button { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1; }
        #homeQuickAddSubmit,
        #homeQuickAddBuyNow { min-height: 50px; border-radius: 999px; font-size: 15px; font-weight: 700; }
        #homeQuickAddBuyNow { background: #e24c4b; border-color: #e24c4b; }
        .home-quickadd-footer-link { display: inline-flex; margin-top: 6px; color: #111; text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }
        #homeSizeGuideModal .modal-dialog { max-width: 860px; }
        #homeSizeGuideModal .modal-content { padding: 30px 26px; }
        .home-sizeguide-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 22px; }
        .home-sizeguide-head h4 { margin: 0; }
        .home-sizeguide-table-title { margin-bottom: 16px; }
        @media (max-width: 767.98px) {
            #homeQuickAddModal .modal-content { padding: 20px 18px 18px; }
            .home-quickadd-mini { grid-template-columns: 72px minmax(0,1fr); gap: 14px; }
            .home-quickadd-actions { grid-template-columns: 1fr; }
            #homeSizeGuideModal .modal-content { padding: 24px 18px; }
        }
    
        #homeQuickViewCanvas{--bs-offcanvas-width:min(100vw,980px)}
        #homeQuickViewCanvas.offcanvas-end{width:min(100vw,980px)!important}
        #homeQuickViewCanvas .wrap-canvas { width: min(100vw, 980px); }
        #homeQuickViewCanvas .canvas-header { padding: 24px 28px 14px; }
        #homeQuickViewCanvas .canvas-body { padding: 0 28px 28px; }
        #homeQuickViewCanvas .canvas-body > .row.g-4 { --bs-gutter-x: 28px; --bs-gutter-y: 24px; align-items: start; }
        #homeQuickViewCanvas .home-quickview-copy { padding-top: 6px; }
        #homeQuickViewCanvas .home-modal-gallery { display: grid; grid-template-columns: 1fr; gap: 18px; }
        #homeQuickViewCanvas .home-modal-gallery img { width: 100%; aspect-ratio: 0.78; object-fit: cover; border-radius: 20px; background: #f4efe9; }
        #homeQuickViewCanvas .product-infor-meta { display: none; }
        #homeQuickViewCanvas .product-infor-price { margin-bottom: 18px; }
        #homeQuickViewCanvas .product-infor-price h4 { color: #e24c4b; margin: 0; }
        #homeQuickViewCanvas .product-infor-price .cl-text-3 { color: #c9c9c9 !important; }
        #homeQuickViewCanvas .product-infor-desc { margin-bottom: 24px; line-height: 1.7; max-width: 430px; }
        #homeQuickViewCanvas .home-modal-color-list { gap: 14px; margin-top: 12px; margin-bottom: 12px; }
        #homeQuickViewCanvas .home-modal-color-btn { width: 56px; height: 56px; padding: 3px; border-radius: 12px; background: #f4efe9; }
        #homeQuickViewCanvas .home-modal-color-btn img { border-radius: 9px; }
        #homeQuickViewCanvas .home-modal-size-list { gap: 12px; align-items: center; margin-top: 12px; margin-bottom: 12px; }
        #homeQuickViewCanvas .home-modal-size-btn { min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 14px; border-radius: 6px; line-height: 1; }
        #homeQuickViewCanvas .home-modal-size-btn.is-active { background: #111; border-color: #111; color: #fff; }
        #homeQuickViewCanvas .home-modal-size-btn.is-disabled { background: #f4f4f4; border-color: #e7e7e7; color: #c9c9c9; }
        #homeQuickViewCanvas .home-modal-actions { grid-template-columns: 180px minmax(0, 1fr); gap: 14px; margin-top: 10px; }
        #homeQuickViewCanvas .home-qty { min-height: 50px; }
        #homeQuickViewCanvas .variant-picker_label { margin-bottom: 0; }
        #homeQuickViewSubmit, #homeQuickViewBuyNow { min-height: 50px; border-radius: 999px; }
        #homeQuickViewBuyNow { margin-top: 14px; }
        #homeQuickViewDetails { display: inline-flex; margin-top: 16px; color: #111; text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
        #homeQuickViewSizeGuide { padding: 0; border: 0; background: transparent; color: #111; text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
        @media (max-width: 991.98px) { #homeQuickViewCanvas.offcanvas-end{width:min(100vw,820px)!important} }
        @media (max-width: 767.98px) { #homeQuickViewCanvas .canvas-body { padding: 0 18px 20px; } #homeQuickViewCanvas .home-modal-actions { grid-template-columns: 1fr; gap: 12px; } #homeQuickViewCanvas .home-modal-gallery { gap: 12px; } #homeQuickViewCanvas.offcanvas-end{width:100vw!important} }
    
        .home-sale-marquee { position: absolute; left: 18px; right: 18px; bottom: 78px; z-index: 2; overflow: hidden; border-radius: 999px; background: #111; padding: 7px 0; color: #fff; box-shadow: 0 10px 22px rgba(17,17,17,.18); }
        .home-sale-marquee__track { display: inline-flex; align-items: center; gap: 18px; min-width: 200%; animation: home-marquee 15s linear infinite; white-space: nowrap; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
        .home-sale-marquee__track i { font-size: 11px; color: #f15c4f; }
        .home-category-card__body { min-width: 0; flex: 1 1 auto; }
        .home-custom-shell { padding: 16px; border-radius: 34px; background: linear-gradient(180deg, #fbf7f2 0%, #f3ede5 100%); border: 1px solid rgba(17,17,17,.06); overflow: hidden; box-shadow: 0 22px 48px rgba(17,17,17,.08); }
        #homeCustomDesignModal .modal-dialog { max-width: 860px; }
        #homeCustomDesignModal .modal-content { border: 0; border-radius: 32px; overflow: hidden; background: #fbf7f2; }
        #homeCustomDesignModal .modal-body { padding: 16px; }
        .home-custom-modal-close { position: absolute; top: 18px; right: 18px; z-index: 4; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.94); color: #111; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 16px 28px rgba(17,17,17,.14); }
        @media (max-width: 991.98px) { .home-custom-form { padding: 28px; } }
        @media (max-width: 767.98px) { #homeCustomDesignModal .modal-body { padding: 10px; } .home-custom-form { padding: 20px; border-radius: 22px; } .home-custom-shell { padding: 8px; border-radius: 24px; } }

/* ----------------------------------------------------------
   Product-kind aware card aspect ratios.
   The catalog mixes apparel (tall, 3:4) with accessories — mugs are
   square in product photos and bucket hats need a wider crop or the
   brim gets clipped.  The card markup hard-codes width="330" height="440",
   which forces the apparel ratio; these rules override the intrinsic
   dimensions whenever ${product.productKind} is set on the outer
   .card-product element. Falls back gracefully for legacy rows where
   the attribute is missing.
   ---------------------------------------------------------- */
.card-product[data-product-kind] .product-img img,
.card-product[data-product-kind] .shop-card-media img { height: auto; width: 100%; }
.card-product[data-product-kind="TSHIRT"] .product-img img,
.card-product[data-product-kind="HOODIE"] .product-img img,
.card-product[data-product-kind="SWEATSHIRT"] .product-img img,
.card-product[data-product-kind="TSHIRT"] .shop-card-media img,
.card-product[data-product-kind="HOODIE"] .shop-card-media img,
.card-product[data-product-kind="SWEATSHIRT"] .shop-card-media img { aspect-ratio: 0.75; object-fit: cover; }
.card-product[data-product-kind="MUG"] .product-img img,
.card-product[data-product-kind="MUG"] .shop-card-media img { aspect-ratio: 1 / 1; object-fit: cover; }
.card-product[data-product-kind="BUCKET_HAT"] .product-img img,
.card-product[data-product-kind="BUCKET_HAT"] .shop-card-media img { aspect-ratio: 4 / 3; object-fit: cover; }

