/* ==========================================================================
   Arwein storefront theme — "warm atelier". Tokens come from Settings → Appearance
   (partials/theme.php); every colour below goes through those variables so the same
   stylesheet serves any shop. Loaded after Crafto; overrides are scoped ≥ theme specificity.
   ========================================================================== */
:root {
  --primary-font: 'Manrope', sans-serif; --alt-font: 'Manrope', sans-serif;
  --arw-primary: #c8553d; --arw-primary-rgb: 200,85,61; --arw-accent: #e3a72f; --arw-accent-rgb: 227,167,47;
  --arw-bg: #f7f1e8; --arw-dark: #2a1f1c; --arw-dark-rgb: 42,31,28; --arw-display: 'Iowan Old Style', Palatino, Georgia, serif;
  --arw-ink: #3a2f2b; --arw-muted: #7a6d67; --arw-line: rgba(var(--arw-dark-rgb), .12);
  --arw-radius: 18px; --arw-shadow: 0 18px 40px -20px rgba(var(--arw-dark-rgb), .35);
  --arw-ease: cubic-bezier(.22, 1, .36, 1);
}
html { scroll-behavior: smooth; }
body { background: var(--arw-bg); color: var(--arw-ink); position: relative; }
/* paper grain (SVG noise), toggled by settings via body::before opacity */
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---- typography */
h1, h2, h3, .arw-display, .page-title-extra-large h1 { font-family: var(--arw-display); letter-spacing: -.01em; }
.text-dark-gray, .navbar .navbar-nav .nav-link, .breadcrumb-style-01 li a { color: var(--arw-dark) !important; }
.arw-eyebrow { font: 600 12px/1 'Manrope', sans-serif; letter-spacing: .22em; text-transform: uppercase; color: var(--arw-primary); }
.arw-section-title { font-family: var(--arw-display); font-size: clamp(30px, 4vw, 44px); line-height: 1.1; color: var(--arw-dark); margin: 0; }
.arw-section-title em { font-style: italic; color: var(--arw-primary); }
.arw-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.arw-link { color: var(--arw-primary); font-weight: 600; text-decoration: none; position: relative; }
.arw-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: currentColor; transform: scaleX(.3); transform-origin: left; transition: transform .3s var(--arw-ease); }
.arw-link:hover::after { transform: scaleX(1); }

/* ---- header: keep it in normal flow. Crafto positions the bar absolutely and pads the page via JS
   (.top-space-margin); with an empty static <header> the hero's margin collapses THROUGH it and the
   bar lands 98px down. In-flow header + zero top-space is deterministic on every page. */
header.header-with-topbar { position: relative; z-index: 99; }
header.header-with-topbar .header-top-bar, header.header-with-topbar .navbar.disable-fixed { position: relative !important; top: auto !important; }
main > .top-space-margin, .top-space-margin { margin-top: 0 !important; }
/* ---- header */
header .navbar.header-light.bg-white { background: rgba(255,255,255,.82) !important; backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--arw-line); }
.arw-wordmark { font: 700 28px/1 var(--arw-display); color: var(--arw-dark); letter-spacing: -.02em; display: inline-block; padding: 12px 0; }
.arw-wordmark::first-letter { color: var(--arw-primary); }
.navbar .navbar-nav .nav-link { font-weight: 600; }
.navbar .navbar-nav > .nav-item > .nav-link { position: relative; }
.navbar .navbar-nav > .nav-item > .nav-link::after { content: ""; position: absolute; left: 0; bottom: 8px; width: 100%; height: 2px; background: var(--arw-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--arw-ease); }
.navbar .navbar-nav > .nav-item:hover > .nav-link::after { transform: scaleX(1); }
.header-cart-icon .cart-count { background: var(--arw-primary) !important; transition: transform .25s var(--arw-ease); }
.header-cart-icon .cart-count.pop { animation: arw-pop .45s var(--arw-ease); }
.arw-lang a { color: inherit; }
.header-top-bar.bg-base-color { background: var(--arw-dark) !important; color: #fff; }
.header-top-bar .text-dark-gray { color: #fff !important; }
.visually-hidden-focusable:not(:focus):not(:focus-within) { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.visually-hidden-focusable:focus { position: fixed; top: 8px; left: 8px; z-index: 10000; background: #fff; padding: 8px 12px; }

/* ---- buttons */
.btn.btn-dark-gray, .btn.btn-arw { background: var(--arw-primary) !important; border-color: var(--arw-primary) !important; color: #fff !important; position: relative; overflow: hidden; transition: transform .2s var(--arw-ease), box-shadow .2s var(--arw-ease), background .2s; }
.btn.btn-dark-gray::after, .btn.btn-arw::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-20deg); transition: left .6s var(--arw-ease); }
.btn.btn-dark-gray:hover, .btn.btn-arw:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(var(--arw-primary-rgb), .7); }
.btn.btn-dark-gray:hover::after, .btn.btn-arw:hover::after { left: 120%; }
.btn.btn-dark-gray:active, .btn.btn-arw:active { transform: translateY(0) scale(.98); }
.btn.btn-white { color: var(--arw-dark) !important; }
.btn.btn-transparent-light-gray { border-color: var(--arw-line) !important; }
.btn.btn-transparent-light-gray:hover { background: var(--arw-dark) !important; color: #fff !important; }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(var(--arw-accent-rgb), .8); outline-offset: 2px; }

/* ---- reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--arw-ease), transform .7s var(--arw-ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--arw-ease), transform .6s var(--arw-ease); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > :nth-child(2) { transition-delay: .06s } [data-reveal-stagger].in > :nth-child(3) { transition-delay: .12s } [data-reveal-stagger].in > :nth-child(4) { transition-delay: .18s }
[data-reveal-stagger].in > :nth-child(5) { transition-delay: .24s } [data-reveal-stagger].in > :nth-child(6) { transition-delay: .30s } [data-reveal-stagger].in > :nth-child(7) { transition-delay: .36s } [data-reveal-stagger].in > :nth-child(8) { transition-delay: .42s }
@keyframes arw-pop { 0% { transform: scale(1) } 40% { transform: scale(1.5) } 100% { transform: scale(1) } }
@keyframes arw-float { 0%,100% { transform: translateY(0) rotate(0) } 50% { transform: translateY(-14px) rotate(3deg) } }
@keyframes arw-rise { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
@keyframes arw-marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .arw-hero-slide *, .arw-blob, .arw-marquee-track, .arw-badge, .arw-low-stock i { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- hero (slider) */
.arw-hero { position: relative; }
.arw-hero-slide { position: relative; min-height: 600px; display: flex; align-items: center; padding: 100px 0; background: var(--arw-dark); overflow: hidden; }
@media (max-width: 767px) { .arw-hero-slide { min-height: 480px; padding: 64px 0; } }
.arw-hero-bg, .arw-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.arw-hero-img { transform: scale(1.06); transition: transform 7s linear; }
.swiper-slide-active .arw-hero-img { transform: scale(1); }
.arw-hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(var(--arw-dark-rgb), .72) 10%, rgba(var(--arw-dark-rgb), .25) 60%, transparent); }
.arw-hero-slide.theme-dark::after { background: linear-gradient(100deg, rgba(255,255,255,.72) 10%, rgba(255,255,255,.3) 60%, transparent); }
.arw-hero-content { z-index: 2; color: #fff; }
.arw-hero-slide.theme-dark .arw-hero-content { color: var(--arw-dark); }
.arw-hero-content h1, .arw-hero-content h2 { color: inherit; font-family: var(--arw-display); font-size: clamp(40px, 6.5vw, 86px); line-height: .98; letter-spacing: -.025em; }
.arw-hero-content .arw-eyebrow { color: var(--arw-accent); }
.swiper-slide-active .arw-hero-content > .row > div > * { animation: arw-rise .8s var(--arw-ease) both; }
.swiper-slide-active .arw-hero-content > .row > div > :nth-child(2) { animation-delay: .12s } .swiper-slide-active .arw-hero-content > .row > div > :nth-child(3) { animation-delay: .24s } .swiper-slide-active .arw-hero-content > .row > div > :nth-child(4) { animation-delay: .36s }
.arw-hero-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--arw-dark); font-size: 26px; line-height: 1; cursor: pointer; transition: transform .2s var(--arw-ease), background .2s; }
.arw-hero-nav:hover { background: var(--arw-accent); transform: translateY(-50%) scale(1.08); }
.arw-hero-prev { left: 18px; } .arw-hero-next { right: 18px; }
@media (max-width: 991px) { .arw-hero-nav { display: none; } }
.arw-hero-pagination { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 3; text-align: center; }
.arw-hero-pagination .swiper-pagination-bullet { width: 28px; height: 4px; border-radius: 2px; background: #fff; opacity: .5; transition: opacity .2s, width .3s var(--arw-ease); }
.arw-hero-pagination .swiper-pagination-bullet-active { opacity: 1; width: 44px; background: var(--arw-accent); }
/* decorative blobs for the text hero (no slides) */
.arw-hero-text { position: relative; overflow: hidden; background: radial-gradient(1200px 600px at 10% -10%, rgba(var(--arw-accent-rgb), .35), transparent 60%), radial-gradient(900px 500px at 95% 110%, rgba(var(--arw-primary-rgb), .28), transparent 60%), var(--arw-bg); }
.arw-blob { position: absolute; border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; filter: blur(2px); opacity: .55; animation: arw-float 9s ease-in-out infinite; pointer-events: none; }

/* ---- category tiles */
.arw-cat-tile { display: block; position: relative; border-radius: var(--arw-radius); overflow: hidden; aspect-ratio: 4 / 5; background: #e9e1d6; color: #fff; text-decoration: none; box-shadow: var(--arw-shadow); transition: transform .35s var(--arw-ease), box-shadow .35s var(--arw-ease); }
.arw-cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--arw-ease); }
.arw-cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(var(--arw-dark-rgb), .85), rgba(var(--arw-dark-rgb), .05) 60%); }
.arw-cat-tile .arw-cat-name { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; font: 600 20px/1.2 var(--arw-display); color: #fff; display: flex; align-items: center; justify-content: space-between; }
.arw-cat-tile .arw-cat-name i { transition: transform .3s var(--arw-ease); }
.arw-cat-tile:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -24px rgba(var(--arw-dark-rgb), .5); }
.arw-cat-tile:hover img { transform: scale(1.08); }
.arw-cat-tile:hover .arw-cat-name i { transform: translateX(6px); }
.arw-cat-tile.is-wide { aspect-ratio: auto; height: 100%; min-height: 260px; }

/* ---- product cards */
.arw-grid { display: grid; gap: 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .arw-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .arw-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.arw-card { position: relative; background: #fff; border-radius: var(--arw-radius); overflow: hidden; box-shadow: 0 1px 0 var(--arw-line); transition: transform .35s var(--arw-ease), box-shadow .35s var(--arw-ease); }
.arw-card:hover { transform: translateY(-6px); box-shadow: var(--arw-shadow); }
.arw-card-top { position: relative; }
.arw-card-media { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #f1ebe2; }
.arw-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--arw-ease); }
.arw-card:hover .arw-card-media img { transform: scale(1.07); }
.arw-badges { position: absolute; top: 14px; left: 14px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.arw-badges.is-inline { position: static; flex-direction: row; flex-wrap: wrap; }
.arw-badge { font: 700 11px/1 'Manrope', sans-serif; letter-spacing: .12em; text-transform: uppercase; padding: 8px 11px; border-radius: 999px; color: #fff; background: var(--arw-primary); box-shadow: 0 6px 14px -8px rgba(var(--arw-dark-rgb), .6); animation: arw-badge-in .5s var(--arw-ease) both; }
.arw-badges > :nth-child(2) { animation-delay: .12s; }
.arw-badge.is-primary, .arw-badge.is-sale { background: var(--arw-primary); }
.arw-badge.is-accent, .arw-badge.is-new { background: var(--arw-accent); color: var(--arw-dark); }
.arw-badge.is-dark { background: var(--arw-dark); }
.arw-badge.is-success, .arw-badge.is-ship { background: #2f8f5b; }
.arw-badge.is-info { background: #2f6f9c; }
.arw-badge.is-best { background: linear-gradient(120deg, var(--arw-accent), var(--arw-primary)); }
.arw-badge.is-out { background: var(--arw-muted); }
.arw-low-stock { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font: 600 12px/1 'Manrope', sans-serif; color: var(--arw-primary); }
.arw-low-stock i { width: 8px; height: 8px; border-radius: 50%; background: var(--arw-primary); animation: arw-pulse 1.8s ease-out infinite; }
@keyframes arw-badge-in { from { opacity: 0; transform: translateX(-8px) scale(.9) } to { opacity: 1; transform: none } }
@keyframes arw-pulse { 0% { box-shadow: 0 0 0 0 rgba(var(--arw-primary-rgb), .6) } 100% { box-shadow: 0 0 0 10px rgba(var(--arw-primary-rgb), 0) } }
.arw-card-actions { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; display: flex; gap: 8px; opacity: 0; transform: translateY(10px); transition: opacity .3s var(--arw-ease), transform .3s var(--arw-ease); }
.arw-card:hover .arw-card-actions, .arw-card:focus-within .arw-card-actions { opacity: 1; transform: none; }
@media (hover: none) { .arw-card-actions { opacity: 1; transform: none; } }
.arw-card-actions .btn { flex: 1; padding: 11px 12px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; border-radius: 999px; }
.arw-card-body { padding: 16px 18px 20px; text-align: left; }
.arw-card-brand { font: 600 11px/1 'Manrope', sans-serif; letter-spacing: .18em; text-transform: uppercase; color: var(--arw-muted); margin-bottom: 6px; }
.arw-card-title { font: 600 17px/1.3 var(--arw-display); color: var(--arw-dark); text-decoration: none; display: block; margin-bottom: 8px; }
.arw-card-title:hover { color: var(--arw-primary); }
.arw-card-price { font-weight: 700; color: var(--arw-dark); display: flex; align-items: baseline; gap: 8px; }
.arw-card-price del { color: var(--arw-muted); font-weight: 400; }
.arw-card-price .arw-price { color: var(--arw-primary); }
.arw-swatches { display: flex; gap: 5px; margin-top: 10px; }
.arw-swatches span { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1px var(--arw-line); }

/* ---- feature strip / promo / brands */
.arw-why { display: grid; gap: 14px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 576px) { .arw-why { gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px) { .arw-why { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 575px) { .arw-why-item { padding: 16px; } .arw-why-item i { flex-basis: 40px; width: 40px; height: 40px; } }
.arw-why-item { display: flex; gap: 14px; align-items: flex-start; padding: 22px; background: #fff; border-radius: var(--arw-radius); box-shadow: 0 1px 0 var(--arw-line); transition: transform .3s var(--arw-ease), box-shadow .3s var(--arw-ease); }
.arw-why-item:hover { transform: translateY(-4px); box-shadow: var(--arw-shadow); }
.arw-why-item i { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; color: var(--arw-primary); background: rgba(var(--arw-primary-rgb), .1); }
.arw-why-item strong { display: block; color: var(--arw-dark); font-size: 16px; margin-bottom: 2px; }
.arw-why-item span { font-size: 14px; color: var(--arw-muted); }
.arw-promo { position: relative; display: flex; align-items: flex-end; min-height: 300px; border-radius: var(--arw-radius); overflow: hidden; color: #fff; text-decoration: none; background: var(--arw-dark); box-shadow: var(--arw-shadow); }
.arw-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--arw-ease); }
.arw-promo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(var(--arw-dark-rgb), .85), rgba(var(--arw-dark-rgb), .1) 70%); }
.arw-promo:hover img { transform: scale(1.06); }
.arw-promo-body { position: relative; z-index: 2; padding: 28px; }
.arw-promo-body .arw-promo-title { color: #fff; font-family: var(--arw-display); font-size: clamp(24px, 3vw, 34px); margin: 6px 0 8px; }
.arw-promo-body p { color: rgba(255,255,255,.85); margin-bottom: 14px; }
.arw-marquee { overflow: hidden; border-top: 1px solid var(--arw-line); border-bottom: 1px solid var(--arw-line); padding: 18px 0; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.arw-marquee-track { display: flex; gap: 64px; width: max-content; animation: arw-marquee 28s linear infinite; }
.arw-marquee:hover .arw-marquee-track { animation-play-state: paused; }
.arw-marquee a { font: 700 22px/1 var(--arw-display); color: var(--arw-muted); text-decoration: none; white-space: nowrap; transition: color .2s; }
.arw-marquee a:hover { color: var(--arw-primary); }

/* ---- page header bands (category / account / checkout) */
.arw-band { position: relative; overflow: hidden; background: radial-gradient(800px 300px at 20% 0%, rgba(var(--arw-accent-rgb), .3), transparent 60%), radial-gradient(700px 300px at 90% 100%, rgba(var(--arw-primary-rgb), .22), transparent 60%), #fff; }
.arw-band.has-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.arw-band.has-image::after { content: ""; position: absolute; inset: 0; background: rgba(var(--arw-dark-rgb), .62); }
.arw-band.has-image .container { position: relative; z-index: 2; }
.arw-band.has-image h1, .arw-band.has-image p, .arw-band.has-image .breadcrumb-style-01 li, .arw-band.has-image .breadcrumb-style-01 li a { color: #fff !important; }
.bg-gradient-very-light-gray { background: radial-gradient(800px 300px at 20% 0%, rgba(var(--arw-accent-rgb), .25), transparent 60%), #fff !important; }
.bg-very-light-gray { background: rgba(255,255,255,.55) !important; }
.arw-chip { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 999px; background: #fff; color: var(--arw-dark); border: 1px solid var(--arw-line); font-weight: 600; font-size: 13px; text-decoration: none; transition: all .2s var(--arw-ease); }
.arw-chip:hover { background: var(--arw-dark); color: #fff; border-color: var(--arw-dark); transform: translateY(-2px); }

/* ---- product page */
.product-info h1 { font-family: var(--arw-display); font-size: clamp(28px, 3.4vw, 40px); }
.arw-price { color: var(--arw-primary); }
.shop-color li label span { width: 34px; height: 34px; border-radius: 50%; box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--arw-line); transition: transform .2s var(--arw-ease), box-shadow .2s; }
.shop-color li input:checked + label span { transform: scale(1.12); box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--arw-primary); }
.shop-size li label span { min-width: 46px; border-radius: 12px; border: 1px solid var(--arw-line); font-weight: 600; transition: all .2s; }
.shop-size li input:checked + label span { background: var(--arw-dark); color: #fff; border-color: var(--arw-dark); }
.product-image .swiper-slide img { aspect-ratio: 600 / 765; object-fit: cover; border-radius: var(--arw-radius); }
.single-product-thumb img { border-radius: 10px; }
.arw-specs th { border-top: 0; }
.arw-specs { background: #fff; border-radius: 14px; overflow: hidden; }
.arw-trust { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 13px; color: var(--arw-muted); }
.arw-trust span { display: inline-flex; align-items: center; gap: 6px; }
.arw-trust i { color: var(--arw-primary); }
.quantity { border-radius: 999px; overflow: hidden; }
.w-40 { width: 40%; }
.arw-form .form-control { border: 1px solid var(--arw-line); padding: 12px 15px; border-radius: 12px; background: #fff; transition: box-shadow .2s, border-color .2s; }
.arw-form .form-control:focus { border-color: var(--arw-primary); box-shadow: 0 0 0 4px rgba(var(--arw-primary-rgb), .15); }
.arw-form .form-control.is-invalid { border-color: #dc3545; }
.mt-n15px { margin-top: -15px; }
#arw-flash .alert { border-radius: 12px; }

/* ---- cms / popup / footer */
.arw-cms h2 { font-family: var(--arw-display); font-size: 28px; margin: 32px 0 12px; color: var(--arw-dark); }
.arw-cms h3 { font-family: var(--arw-display); font-size: 22px; margin: 24px 0 10px; color: var(--arw-dark); }
.arw-cms p, .arw-cms ul, .arw-cms ol { margin-bottom: 16px; } .arw-cms ul { list-style: disc; padding-left: 22px; } .arw-cms ol { padding-left: 22px; }
.arw-cms blockquote { border-left: 3px solid var(--arw-accent); padding-left: 16px; color: var(--arw-muted); }
.arw-cms table { width: 100%; border-collapse: collapse; margin-bottom: 20px; background: #fff; } .arw-cms th, .arw-cms td { border: 1px solid var(--arw-line); padding: 8px 10px; }
.arw-cms img { max-width: 100%; height: auto; display: block; margin: 10px auto 20px; border-radius: var(--arw-radius); }
.arw-cms .ql-video { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; margin-bottom: 20px; border-radius: var(--arw-radius); }
.arw-cms .ql-align-center { text-align: center; } .arw-cms .ql-align-right { text-align: right; } .arw-cms .ql-align-justify { text-align: justify; }
.arw-popup .modal-dialog { max-width: 560px; }
.arw-popup .modal-content { border-radius: var(--arw-radius); }
.arw-popup-close { position: absolute; top: 12px; right: 12px; z-index: 5; background-color: #fff; border-radius: 50%; padding: 10px; opacity: .9; }
.arw-popup-img { aspect-ratio: 5 / 3; object-fit: cover; }
.arw-footer { background: var(--arw-dark); color: rgba(255,255,255,.72); position: relative; overflow: hidden; padding: 72px 0 0; font-size: 15px; }
.arw-footer::before { content: ""; position: absolute; width: 640px; height: 640px; right: -260px; top: -320px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--arw-primary-rgb), .35), transparent 65%); pointer-events: none; }
.arw-footer::after { content: ""; position: absolute; width: 420px; height: 420px; left: -200px; bottom: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--arw-accent-rgb), .18), transparent 65%); pointer-events: none; }
.arw-footer .container { position: relative; z-index: 1; }
.arw-footer a { color: rgba(255,255,255,.78); text-decoration: none; transition: color .2s, transform .2s var(--arw-ease); }
.arw-footer a:hover { color: var(--arw-accent); }
.arw-footer-grid { display: grid; gap: 40px 32px; grid-template-columns: 1fr; padding-bottom: 56px; }
@media (min-width: 576px) { .arw-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .arw-footer-brand { grid-column: 1 / -1; } }
/* --cols is set inline by the partial (number of link columns) — a flexible track cannot be mixed with repeat(auto-fit). */
@media (min-width: 992px) { .arw-footer-grid { grid-template-columns: 1.5fr repeat(var(--cols, 3), minmax(0, 1fr)); } .arw-footer-brand { grid-column: auto; padding-right: 32px; } }
.arw-footer-logo { font: 700 30px/1 var(--arw-display); color: #fff !important; letter-spacing: -.02em; display: inline-block; margin-bottom: 12px; }
.arw-footer-logo::first-letter { color: var(--arw-accent); }
.arw-footer-tagline { max-width: 34ch; margin-bottom: 22px; color: rgba(255,255,255,.62); }
.arw-footer-contact { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.arw-footer-contact li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.arw-footer-contact i { flex: 0 0 18px; margin-top: 3px; color: var(--arw-accent); font-size: 16px; }
.arw-footer-heading { display: block; font: 700 11px/1 'Manrope', sans-serif; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.arw-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.arw-footer-col a { display: inline-block; }
.arw-footer-col a:hover { transform: translateX(4px); }
.arw-footer-social ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; }
.arw-footer-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; font-size: 15px; }
.arw-footer-social a:hover { background: var(--arw-primary); color: #fff; transform: translateY(-3px); }
.arw-footer-bar { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 26px; display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.55); }
.arw-footer-pay { display: inline-flex; align-items: center; gap: 10px; }
.arw-footer-pay span { display: inline-flex; align-items: center; gap: 6px; margin-right: 6px; }
.arw-footer-pay .fa-brands { font-size: 26px; color: rgba(255,255,255,.7); }
.scroll-progress .scroll-line { background: var(--arw-line); }
.scroll-progress .scroll-point { background: var(--arw-primary); }
.arw-filters .form-select { max-width: 100%; }
@media (max-width: 575px) { .arw-filters .form-select { flex: 1 1 140px; } }

/* ---- language switcher (icon + dropdown) */
.arw-lang { position: relative; }
.arw-lang-btn { display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 12px; border: 1px solid var(--arw-line); border-radius: 999px; background: #fff; color: var(--arw-dark); font: 700 12px/1 'Manrope', sans-serif; letter-spacing: .08em; cursor: pointer; transition: background .2s, border-color .2s, transform .2s var(--arw-ease); }
.arw-lang-btn i { font-size: 17px; line-height: 1; }
.arw-lang-btn:hover, .arw-lang-btn[aria-expanded="true"] { background: var(--arw-dark); color: #fff; border-color: var(--arw-dark); }
.arw-lang-menu { position: absolute; top: calc(100% + 10px); right: 0; z-index: 1000; min-width: 180px; margin: 0; padding: 6px; list-style: none; background: #fff; border: 1px solid var(--arw-line); border-radius: 14px; box-shadow: var(--arw-shadow); animation: arw-rise .25s var(--arw-ease) both; }
.arw-lang-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: var(--arw-dark); font: 600 14px/1 'Manrope', sans-serif; text-decoration: none; }
.arw-lang-menu a:hover { background: rgba(var(--arw-primary-rgb), .08); color: var(--arw-primary); }
.arw-lang-menu a.is-current { color: var(--arw-primary); }
.arw-lang-menu a i { margin-left: auto; font-size: 14px; }
.arw-lang-abbr { font: 700 11px/1 'Manrope', sans-serif; letter-spacing: .1em; color: #fff; background: var(--arw-dark); border-radius: 6px; padding: 5px 6px; min-width: 30px; text-align: center; }
.arw-lang-menu a.is-current .arw-lang-abbr { background: var(--arw-primary); }
@media (max-width: 991px) { .arw-lang-btn { height: 36px; padding: 0 10px; } .arw-lang-code { display: none; } }

/* ---- checkboxes, radios, selects (storefront forms) */
.form-check { display: flex; align-items: flex-start; gap: 10px; padding-left: 0; margin-bottom: 10px; min-height: 0; cursor: pointer; }
.form-check .form-check-input, .form-check-input, input.form-check-input[type="checkbox"], input.form-check-input[type="radio"] { float: none; flex: 0 0 auto; width: 22px !important; height: 22px !important; min-width: 22px; padding: 0; margin: 1px 0 0; appearance: none; -webkit-appearance: none; background: #fff; border: 2px solid rgba(var(--arw-dark-rgb), .3); border-radius: 7px; cursor: pointer; display: grid; place-items: center; transition: border-color .2s, background .2s, box-shadow .2s, transform .15s var(--arw-ease); }
.form-check-input[type="radio"] { border-radius: 50%; }
.form-check-input::before { content: ""; width: 12px; height: 12px; transform: scale(0); transition: transform .18s var(--arw-ease); }
.form-check-input[type="checkbox"]::before { background: no-repeat center / 12px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3.2 3.2L13 4.5'/%3E%3C/svg%3E"); }
.form-check-input[type="radio"]::before { width: 10px; height: 10px; border-radius: 50%; background: #fff; }
.form-check-input:hover { border-color: var(--arw-primary); }
/* Crafto hides bare input[type=checkbox] (opacity 0, absolute) for its own .box pattern — force ours visible. */
input.form-check-input[type="checkbox"], input.form-check-input[type="radio"] { opacity: 1 !important; visibility: visible !important; position: static !important; }
input.form-check-input[type="checkbox"]:checked, input.form-check-input[type="radio"]:checked, .form-check-input:checked { background: var(--arw-primary) !important; border-color: var(--arw-primary) !important; background-image: none !important; }
.form-check-input:checked::before { transform: scale(1); }
.form-check-input:active { transform: scale(.92); }
.form-check-input:focus { outline: none; box-shadow: 0 0 0 4px rgba(var(--arw-primary-rgb), .18); }
.form-check-input:focus-visible { outline: 3px solid rgba(var(--arw-accent-rgb), .8); outline-offset: 2px; }
.form-check-input:disabled { opacity: .45; cursor: not-allowed; }
.form-check-label { cursor: pointer; line-height: 1.5; color: var(--arw-ink); }
.form-check-label a { color: var(--arw-primary); font-weight: 600; }
.form-select { border: 1px solid var(--arw-line); border-radius: 12px; padding: 11px 40px 11px 15px; background-color: #fff; color: var(--arw-dark); font-weight: 600; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%232a1f1c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 14px; transition: box-shadow .2s, border-color .2s; }
.form-select:focus { border-color: var(--arw-primary); box-shadow: 0 0 0 4px rgba(var(--arw-primary-rgb), .15); outline: none; }

/* ---- shared page components (cart, checkout, account, cms) */
.arw-page-head { padding: 56px 0 40px; }
@media (max-width: 767px) { .arw-page-head { padding: 36px 0 28px; } }
.arw-page-head .breadcrumb-style-01 { margin-top: 14px; }
.arw-panel { background: #fff; border-radius: var(--arw-radius); padding: 30px; box-shadow: 0 1px 0 var(--arw-line), var(--arw-shadow); }
@media (max-width: 575px) { .arw-panel { padding: 22px 18px; } }
.arw-panel-title { font: 600 20px/1.2 var(--arw-display); color: var(--arw-dark); margin: 0 0 18px; }
.arw-sticky { position: sticky; top: 130px; }
.arw-empty { text-align: center; padding: 60px 30px; }
.arw-empty i { font-size: 44px; color: var(--arw-primary); display: block; margin-bottom: 14px; }
.arw-note { background: rgba(var(--arw-accent-rgb), .12); border-left: 3px solid var(--arw-accent); border-radius: 12px; padding: 18px 20px; }
.form-control, .arw-form textarea.form-control { border: 1px solid var(--arw-line); padding: 12px 15px; border-radius: 12px; background: #fff; color: var(--arw-dark); transition: box-shadow .2s, border-color .2s; }
.form-control:focus { border-color: var(--arw-primary); box-shadow: 0 0 0 4px rgba(var(--arw-primary-rgb), .15); outline: none; }
.form-label { color: var(--arw-dark); font-weight: 600; margin-bottom: 6px; }
/* cart lines */
.arw-cart-lines { display: grid; gap: 14px; }
.arw-cart-line { display: grid; grid-template-columns: 72px 1fr auto auto auto; gap: 16px; align-items: center; background: #fff; border-radius: var(--arw-radius); padding: 14px 16px; box-shadow: 0 1px 0 var(--arw-line); transition: transform .3s var(--arw-ease), box-shadow .3s var(--arw-ease); }
.arw-cart-line:hover { box-shadow: var(--arw-shadow); }
.arw-cart-thumb { display: block; width: 72px; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; background: #f1ebe2; }
.arw-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.arw-cart-name { font: 600 16px/1.3 var(--arw-display); color: var(--arw-dark); text-decoration: none; display: block; }
.arw-cart-name:hover { color: var(--arw-primary); }
.arw-cart-meta { font-size: 13px; color: var(--arw-muted); margin-top: 3px; }
.arw-cart-qty .form-control { width: 76px; text-align: center; padding: 10px 8px; font-weight: 600; }
.arw-cart-total { font-weight: 700; color: var(--arw-dark); white-space: nowrap; min-width: 90px; text-align: right; }
.arw-cart-remove { width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; color: var(--arw-muted); display: grid; place-items: center; cursor: pointer; transition: background .2s, color .2s; }
.arw-cart-remove:hover { background: rgba(var(--arw-primary-rgb), .1); color: var(--arw-primary); }
@media (max-width: 575px) { .arw-cart-line { grid-template-columns: 64px 1fr auto; grid-template-areas: "thumb info remove" "thumb qty total"; } .arw-cart-thumb { grid-area: thumb; width: 64px; } .arw-cart-info { grid-area: info; } .arw-cart-qty { grid-area: qty; } .arw-cart-total { grid-area: total; } .arw-cart-remove { grid-area: remove; justify-self: end; } }
/* totals list */
.arw-totals { margin: 0 0 22px; }
.arw-totals > div { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; color: var(--arw-ink); }
.arw-totals > div.is-muted { color: var(--arw-muted); font-size: 14px; }
.arw-totals > div.is-total { border-top: 1px solid var(--arw-line); margin-top: 8px; padding-top: 16px; font: 700 20px/1.2 var(--arw-display); color: var(--arw-dark); }
.arw-totals dt { font-weight: inherit; }
.arw-totals dd { margin: 0; font-weight: 600; white-space: nowrap; }
.arw-totals .arw-price { color: #2f8f5b; }
/* tables + status pills */
.arw-table { --bs-table-bg: transparent; }
.arw-table th { font: 600 11px/1 'Manrope', sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--arw-muted); border-bottom: 1px solid var(--arw-line); padding: 10px 8px; }
.arw-table td { padding: 12px 8px; border-color: var(--arw-line); vertical-align: middle; }
.arw-table a { color: var(--arw-primary); }
.arw-status { display: inline-block; font: 700 11px/1 'Manrope', sans-serif; letter-spacing: .1em; text-transform: uppercase; padding: 7px 10px; border-radius: 999px; background: rgba(var(--arw-dark-rgb), .08); color: var(--arw-dark); }
.arw-status.is-paid, .arw-status.is-delivered { background: rgba(47,143,91,.14); color: #2f8f5b; }
.arw-status.is-shipped, .arw-status.is-preparing { background: rgba(var(--arw-accent-rgb), .22); color: #7a5a00; }
.arw-status.is-cancelled, .arw-status.is-refunded { background: rgba(220,53,69,.12); color: #b02a37; }
.arw-status.is-pending { background: rgba(var(--arw-primary-rgb), .12); color: var(--arw-primary); }

/* ---- cookie consent banner */
.arw-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1050; }
.arw-consent-inner { max-width: 960px; margin: 0 auto; background: #fff; border-radius: var(--arw-radius); box-shadow: 0 24px 60px -20px rgba(var(--arw-dark-rgb), .5); padding: 20px 22px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; animation: arw-rise .4s var(--arw-ease) both; border: 1px solid var(--arw-line); }
.arw-consent-text { flex: 1 1 320px; font-size: 14px; color: var(--arw-ink); }
.arw-consent-text strong { display: block; font: 600 17px/1.2 var(--arw-display); color: var(--arw-dark); margin-bottom: 4px; }
.arw-consent-text p { margin: 0; }
.arw-consent-text a { color: var(--arw-primary); font-weight: 600; }
.arw-consent-opts { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 12px; }
.arw-consent-opts .form-check { margin: 0; }
.arw-consent-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.arw-consent-actions .btn { padding: 11px 18px; font-size: 12px; }
.arw-consent-manage { background: none; border: 0; padding: 6px 4px; font-size: 13px; cursor: pointer; }
@media (max-width: 575px) { .arw-consent { left: 8px; right: 8px; bottom: 8px; } .arw-consent-actions { width: 100%; } .arw-consent-actions .btn { flex: 1 1 auto; } }
@media (prefers-reduced-motion: reduce) { .arw-consent-inner { animation: none; } }

/* ---- Turnstile + Google sign-in */
.arw-turnstile { display: flex; justify-content: center; min-height: 65px; }
@media (max-width: 380px) { .arw-turnstile .cf-turnstile { transform: scale(.86); transform-origin: 50% 0; } } /* widget has a hard 300px minimum */
.arw-or { display: flex; align-items: center; gap: 12px; margin: 22px 0 16px; color: var(--arw-muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.arw-or::before, .arw-or::after { content: ""; flex: 1; height: 1px; background: var(--arw-line); }
.arw-google-btn { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 13px 18px; border: 1px solid var(--arw-line); border-radius: 999px; background: #fff; color: var(--arw-dark); font: 600 14px/1 'Manrope', sans-serif; text-decoration: none; transition: box-shadow .2s var(--arw-ease), transform .2s var(--arw-ease), border-color .2s; }
.arw-google-btn:hover { border-color: var(--arw-dark); box-shadow: var(--arw-shadow); transform: translateY(-2px); color: var(--arw-dark); }
