:root {
    --primary-950: #07372f;
    --primary-900: #08483c;
    --primary-800: #0b5d4b;
    --primary-700: #0e7560;
    --primary-600: #159077;
    --primary-100: #dff3ed;
    --primary-50: #eff9f6;
    --accent-600: #e18b18;
    --accent-500: #f2a524;
    --accent-400: #f6bd4b;
    --cream: #f8f5ed;
    --surface: #ffffff;
    --surface-soft: #f5f7f4;
    --ink: #17241f;
    --muted: #65736d;
    --line: #dfe7e2;
    --danger: #bc3f45;
    --success: #16845f;
    --warning-bg: #fff4dc;
    --shadow-sm: 0 8px 24px rgba(18, 49, 40, .07);
    --shadow-md: 0 18px 48px rgba(18, 49, 40, .12);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1240px;
    --font-body: "DM Sans", system-ui, sans-serif;
    --font-display: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.eyebrow { display: inline-block; margin-bottom: 8px; color: var(--primary-700); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.light { color: #d8fff4; }
h1, h2, h3 { margin-top: 0; font-family: var(--font-display); }
h1 { letter-spacing: -.045em; }
h2 { letter-spacing: -.035em; }
.section { padding-block: 38px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-heading h2 { margin: 0; font-size: clamp(1.5rem, 2.5vw, 2.15rem); }
.section-heading a { display: inline-flex; align-items: center; gap: 7px; color: var(--primary-700); font-weight: 700; }
.section-heading a .icon { width: 17px; }
.section-heading.inverse h2, .section-heading.inverse a { color: white; }

.button { min-height: 46px; padding: 11px 20px; border: 1px solid transparent; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 800; transition: transform .2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .2s cubic-bezier(0.16, 1, 0.3, 1), background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.button-primary { color: white; background: linear-gradient(135deg, var(--primary-800), var(--primary-700)); box-shadow: 0 8px 20px rgba(11, 93, 75, .25); }
.button-primary:hover { background: linear-gradient(135deg, var(--primary-700), var(--primary-600)); box-shadow: 0 12px 28px rgba(11, 93, 75, .35); }
.button-accent { color: var(--primary-950); background: linear-gradient(135deg, var(--accent-400), var(--accent-500)); box-shadow: 0 6px 18px rgba(242, 165, 36, .28); }
.button-accent:hover { box-shadow: 0 10px 24px rgba(242, 165, 36, .38); }
.button-outline { color: var(--primary-800); background: white; border-color: var(--primary-800); }
.button-outline:hover { background: var(--primary-50); border-color: var(--primary-600); }
.button-light { color: var(--primary-900); background: white; }
.button-whatsapp { color: white; background: #1fa766; box-shadow: 0 6px 18px rgba(31, 167, 102, .25); }
.button-block { width: 100%; }

.announcement-bar { color: white; background: var(--primary-950); font-size: .81rem; }
.announcement-track { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 20px; text-align: center; }
.announcement-separator { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-400); }
.site-header { position: sticky; z-index: 50; top: 0; background: rgba(255, 255, 255, .97); box-shadow: 0 1px 0 var(--line); backdrop-filter: blur(15px); }
.header-main { min-height: 84px; display: grid; grid-template-columns: auto auto minmax(240px, 1fr) auto; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { width: 110px; height: 70px; display: grid; place-items: center; overflow: hidden; color: white; background: white; border-radius: 13px; }
.brand-mark svg { width: 35px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark img { width: 100%; height: 100%; border-radius: inherit; object-fit: contain; background: white; }
.brand-mark .default-brand-logo { transform: scale(1.6) translateY(-14%); }
.brand-mark img[hidden], .brand-mark svg[hidden] { display: none !important; }
.brand-mark.has-logo { width: 110px; height: 70px; border-radius: 12px; background: white; transform: none; }
.brand-copy { display: grid; }
.brand-copy strong { color: var(--primary-950); font-family: var(--font-display); font-size: .98rem; font-weight: 800; letter-spacing: -.025em; }
.brand-copy small { color: var(--muted); font-size: .72rem; }
.branch-pill { min-width: 150px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 13px; display: flex; align-items: center; gap: 9px; color: var(--ink); background: var(--primary-50); text-align: left; }
.branch-pill > .icon:first-child { color: var(--primary-700); }
.branch-pill span { display: grid; min-width: 0; }
.branch-pill small { color: var(--muted); font-size: .65rem; }
.branch-pill strong { max-width: 105px; overflow: hidden; font-size: .8rem; text-overflow: ellipsis; white-space: nowrap; }
.branch-pill .icon-chevron { width: 15px; margin-left: auto; transform: rotate(90deg); }
.header-search { height: 46px; border: 1px solid var(--line); border-radius: 14px; display: flex; overflow: hidden; background: var(--surface-soft); transition: border .2s, box-shadow .2s; }
.header-search:focus-within { border-color: var(--primary-600); box-shadow: 0 0 0 3px var(--primary-100); }
.header-search input { width: 100%; padding: 0 15px; border: 0; outline: 0; background: transparent; }
.header-search button { width: 48px; border: 0; display: grid; place-items: center; color: white; background: var(--primary-800); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.header-action { position: relative; min-width: 38px; display: grid; justify-items: center; gap: 2px; color: var(--ink); font-size: .68rem; font-weight: 700; }
.header-action:hover { color: var(--primary-700); }
.header-action .icon { width: 22px; height: 22px; }
.language-action { padding: 0; border: 0; background: transparent; }
.language-action span { font-weight: 800; }
.cart-count { position: absolute; top: -8px; right: -4px; min-width: 18px; height: 18px; padding-inline: 4px; border: 2px solid white; border-radius: 20px; display: grid; place-items: center; color: white; background: var(--accent-600); font-size: .62rem; }
.category-nav-shell { border-top: 1px solid #edf1ee; }
.category-nav { height: 45px; display: flex; align-items: center; gap: 25px; overflow: hidden; }
.category-nav-all { display: flex; align-items: center; gap: 8px; color: var(--primary-800); font-weight: 800; white-space: nowrap; }
.category-nav-links { display: flex; align-items: center; gap: 23px; overflow-x: auto; font-size: .87rem; white-space: nowrap; scrollbar-width: none; }
.category-nav-links::-webkit-scrollbar { display: none; }
.category-nav-links a:hover { color: var(--primary-700); }

.hero-section { position: relative; padding-top: 22px; }
.hero-slider { min-height: 430px; overflow: hidden; border-radius: var(--radius-lg); background: var(--primary-900); box-shadow: var(--shadow-md); }
.hero-slide { position: relative; min-height: 430px; padding: 60px clamp(28px, 6vw, 78px); display: none; align-items: center; overflow: hidden; color: white; background-position: center; background-size: cover; }
.hero-slide::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5, 52, 43, .96) 0%, rgba(5, 52, 43, .72) 48%, rgba(5, 52, 43, .04) 100%); }
.hero-slide.is-active { display: flex; animation: heroIn .45s ease; }
@keyframes heroIn { from { opacity: .35; transform: scale(1.008); } to { opacity: 1; transform: none; } }
.hero-copy { position: relative; z-index: 2; width: min(610px, 62%); }
.hero-copy h1 { max-width: 700px; margin-bottom: 18px; font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: .99; }
.hero-copy p { max-width: 570px; margin-bottom: 28px; color: #d8eae5; font-size: 1.05rem; line-height: 1.7; }
.hero-visual { position: absolute; z-index: 1; right: 8%; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); }
.hero-visual > span { position: absolute; font-size: 4.2rem; filter: drop-shadow(0 12px 12px rgba(0,0,0,.18)); }
.hero-visual > span:nth-of-type(1) { top: 38px; left: 45px; transform: rotate(-12deg); }
.hero-visual > span:nth-of-type(2) { top: 35px; right: 45px; }
.hero-visual > span:nth-of-type(3) { bottom: 42px; left: 58px; transform: rotate(8deg); }
.hero-visual > span:nth-of-type(4) { right: 55px; bottom: 35px; }
.hero-orbit { position: absolute; border: 1px dashed rgba(255,255,255,.28); border-radius: 50%; }
.orbit-one { inset: 55px; }.orbit-two { inset: 105px; }
.hero-dots { position: absolute; z-index: 3; right: 40px; bottom: 24px; display: flex; gap: 7px; }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 10px; background: rgba(255,255,255,.5); transition: width .2s; }
.hero-dots button.active { width: 26px; background: white; }

.trust-strip { position: relative; z-index: 3; margin-top: -16px; padding: 17px 25px; border: 1px solid var(--line); border-radius: 18px; display: grid; grid-template-columns: repeat(3, 1fr); background: white; box-shadow: var(--shadow-sm); }
.trust-strip article { min-height: 50px; padding-inline: 18px; display: flex; align-items: center; gap: 13px; }
.trust-strip article + article { border-left: 1px solid var(--line); }
.trust-icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: var(--primary-700); background: var(--primary-50); }
.trust-strip article div { display: grid; gap: 2px; }
.trust-strip strong { font-size: .9rem; }.trust-strip small { color: var(--muted); font-size: .75rem; }

.category-scroll { display: flex; gap: 15px; overflow-x: auto; scroll-snap-type: x proximity; }
.category-chip { flex: 0 0 132px; padding: 15px 10px 13px; border: 1px solid var(--line); border-radius: 19px; display: grid; justify-items: center; gap: 9px; background: white; scroll-snap-align: start; transition: transform .2s, border .2s, box-shadow .2s; }
.category-chip:hover { border-color: var(--primary-600); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.category-icon { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; overflow: hidden; color: var(--primary-800); background: linear-gradient(145deg, var(--primary-50), var(--cream)); font-size: 1.8rem; font-weight: 800; }
.category-icon img { width: 100%; height: 100%; object-fit: cover; }
.category-chip strong { max-width: 110px; overflow: hidden; font-size: .83rem; text-align: center; text-overflow: ellipsis; white-space: nowrap; }

.deals-section { margin-block: 25px; padding-block: 48px; background: var(--primary-900); }
.product-carousel { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(195px, 230px); gap: 16px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; }
.product-card { position: relative; min-width: 0; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: white; scroll-snap-align: start; transition: transform .2s ease, box-shadow .2s ease, border .2s; }
.product-card:hover { border-color: #c9dbd3; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-image { position: relative; aspect-ratio: 1 / .82; display: grid; place-items: center; overflow: hidden; background: var(--surface-soft); }
.product-card-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; }
.product-card:hover .product-card-image img { transform: scale(1.035); }
.product-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--primary-700); background: radial-gradient(circle at 30% 30%, #f3fff9, #edf3ee); font-size: 2.5rem; }
.discount-badge, .stock-badge { position: absolute; z-index: 2; top: 10px; left: 10px; padding: 5px 8px; border-radius: 7px; color: white; background: var(--accent-600); font-size: .66rem; font-weight: 800; }
.stock-badge { background: var(--danger); }
.product-card-body { padding: 14px; }
.product-card-category { color: var(--primary-700); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-card h3 { min-height: 40px; margin: 6px 0 4px; display: -webkit-box; overflow: hidden; font-family: var(--font-body); font-size: .9rem; line-height: 1.35; line-clamp: 2; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }.product-card-unit { min-height: 17px; margin: 0; color: var(--muted); font-size: .72rem; }
.product-card-price { min-height: 29px; margin-top: 9px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; }
.product-card-price strong { color: var(--primary-900); font-family: var(--font-display); font-size: 1.04rem; }
.product-card-price del { color: #8c9792; font-size: .72rem; }
.product-card-actions { margin-top: 12px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 8px; }
.product-card-actions a, .quick-add { min-height: 39px; border-radius: 10px; display: grid; place-items: center; font-size: .77rem; font-weight: 800; }
.product-card-actions a { color: var(--primary-800); background: var(--primary-50); }
.quick-add { padding-inline: 9px; border: 0; display: flex; align-items: center; justify-content: center; gap: 5px; color: white; background: var(--primary-800); white-space: nowrap; }
.quick-add .icon { width: 16px; flex: 0 0 auto; }
.product-card.is-out-of-stock { opacity: .72; }
.shop-empty { grid-column: 1 / -1; }
.category-banner { margin-bottom: 18px; border-radius: 20px; overflow: hidden; }
.category-banner img { width: 100%; max-height: 210px; object-fit: cover; }
.category-heading-bar { margin-bottom: 18px; padding: 17px 22px; border-left: 5px solid var(--accent-500); border-radius: 12px; display: flex; justify-content: space-between; align-items: center; background: linear-gradient(90deg, var(--primary-50), white); }
.category-heading-bar h2 { margin: 0; font-size: clamp(1.3rem, 2vw, 1.8rem); }
.category-heading-bar a { color: var(--primary-700); font-size: .85rem; font-weight: 800; }
.category-product-sections > section:nth-child(even) { background: #fafbf9; }
.service-banner { margin-block: 55px; padding: 43px clamp(25px, 5vw, 60px); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: white; background: linear-gradient(120deg, var(--primary-950), var(--primary-700)); overflow: hidden; }
.service-banner h2 { max-width: 650px; margin-bottom: 10px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.service-banner p { margin: 0; color: #d4ebe4; }

.shop-hero, .inner-hero { padding-block: 48px; background: linear-gradient(120deg, var(--cream), var(--primary-50)); }
.shop-hero h1, .inner-hero h1 { margin: 0 0 8px; font-size: clamp(2rem, 4vw, 3.4rem); }
.shop-hero p, .inner-hero p { margin: 0; color: var(--muted); }
.inner-hero.compact { padding-block: 32px; }
.shop-layout { padding-block: 36px 70px; display: grid; grid-template-columns: 235px 1fr; gap: 32px; }
.shop-sidebar { align-self: start; position: sticky; top: 180px; padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.filter-heading { display: flex; justify-content: space-between; align-items: center; }
.filter-heading h2 { margin: 0; font-size: 1.1rem; }.filter-heading button { border: 0; color: var(--primary-700); background: none; font-size: .75rem; font-weight: 800; }
.filter-search { margin-top: 20px; display: grid; gap: 7px; color: var(--muted); font-size: .75rem; font-weight: 700; }
.filter-search div { height: 42px; padding-inline: 10px; border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: center; }
.filter-search input { width: 100%; border: 0; outline: 0; }.filter-search .icon { width: 17px; }
.shop-sidebar fieldset { margin: 24px 0 18px; padding: 0; border: 0; }
.shop-sidebar legend { margin-bottom: 12px; font-size: .82rem; font-weight: 800; }
.filter-options { max-height: 320px; display: grid; gap: 9px; overflow: auto; }
.filter-option, .toggle-row { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .8rem; }
.filter-option input, .toggle-row input { accent-color: var(--primary-700); }
.results-toolbar { min-height: 52px; margin-bottom: 17px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.results-toolbar strong { font-size: .9rem; }.results-toolbar select { padding: 10px 34px 10px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: white; }
.mobile-filter-button { display: none; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.load-more-wrap { padding-top: 28px; text-align: center; }

.breadcrumb { padding-block: 24px; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .8rem; }
.breadcrumb .icon { width: 13px; }.breadcrumb span { color: var(--ink); }
.product-detail { padding-bottom: 55px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(350px, .98fr); gap: clamp(35px, 6vw, 80px); }
.product-gallery-detail { display: grid; grid-template-columns: 82px 1fr; gap: 14px; }
.product-thumbnails { display: flex; flex-direction: column; gap: 10px; overflow-y: auto; }
.product-thumbnail { width: 78px; height: 78px; padding: 4px; border: 1px solid var(--line); border-radius: 12px; background: white; overflow: hidden; }
.product-thumbnail.active { border: 2px solid var(--primary-700); }.product-thumbnail img { width: 100%; height: 100%; object-fit: contain; }
.product-main-image { min-height: 520px; border-radius: 22px; display: grid; place-items: center; overflow: hidden; background: var(--surface-soft); }
.product-main-image img { width: 100%; height: 100%; max-height: 600px; object-fit: contain; }
.product-information { padding-top: 15px; }
.product-category-label { color: var(--primary-700); font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-information h1 { margin: 10px 0 7px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; }
.product-unit { color: var(--muted); }.product-price-large { min-height: 48px; margin-block: 20px 7px; display: flex; align-items: baseline; gap: 10px; }
.product-price-large strong { color: var(--primary-900); font-family: var(--font-display); font-size: 2rem; }.product-price-large del { color: #8c9792; }.product-price-large .save-label { padding: 4px 7px; border-radius: 6px; color: #8a4d00; background: var(--warning-bg); font-size: .72rem; font-weight: 800; }
.stock-line { display: inline-flex; padding: 6px 10px; border-radius: 8px; color: var(--success); background: var(--primary-50); font-size: .78rem; font-weight: 800; }
.stock-line.out { color: var(--danger); background: #fff0f0; }
.product-description { max-width: 630px; margin-block: 22px; color: var(--muted); line-height: 1.75; }
.variant-picker { margin-block: 22px; }.variant-picker > label { display: block; margin-bottom: 10px; font-size: .82rem; font-weight: 800; }
.variant-options { display: flex; flex-wrap: wrap; gap: 9px; }
.variant-option { padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: white; }.variant-option.active { border-color: var(--primary-700); color: var(--primary-800); background: var(--primary-50); box-shadow: 0 0 0 1px var(--primary-700); }.variant-option:disabled { opacity: .5; }
.purchase-row { margin-block: 28px; display: flex; gap: 12px; }
.quantity-stepper { height: 48px; border: 1px solid var(--line); border-radius: 12px; display: flex; overflow: hidden; }
.quantity-stepper button { width: 40px; border: 0; display: grid; place-items: center; background: white; }.quantity-stepper input { width: 48px; border: 0; outline: 0; text-align: center; appearance: textfield; -moz-appearance: textfield; }.quantity-stepper input::-webkit-inner-spin-button { display: none; }.add-product-button { flex: 1; max-width: 340px; }
.product-promises { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.product-promises > div { display: flex; gap: 10px; }.product-promises .icon { color: var(--primary-700); }.product-promises span { display: grid; }.product-promises small { color: var(--muted); }

.cart-layout, .checkout-layout { padding-block: 38px 80px; display: grid; grid-template-columns: 1fr 350px; gap: 30px; }
.cart-panel, .checkout-card, .order-summary, .checkout-summary { border: 1px solid var(--line); border-radius: 18px; background: white; }
.cart-panel { padding: 24px; }.cart-panel-head { padding-bottom: 17px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }.cart-panel-head h2 { margin: 0; font-size: 1.2rem; }.cart-panel-head button { border: 0; color: var(--danger); background: none; font-weight: 700; }
.cart-item { padding-block: 18px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 95px 1fr auto; gap: 17px; align-items: center; }
.cart-item:last-child { border-bottom: 0; }.cart-item-image { width: 95px; height: 85px; border-radius: 12px; display: grid; place-items: center; overflow: hidden; background: var(--surface-soft); }.cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item h3 { margin: 0 0 5px; font-family: var(--font-body); font-size: .95rem; }.cart-item p { margin: 0 0 9px; color: var(--muted); font-size: .77rem; }.cart-item-price { color: var(--primary-900); font-weight: 800; }.cart-item-controls { display: grid; justify-items: end; gap: 10px; }.cart-remove { border: 0; color: var(--danger); background: none; }.cart-remove .icon { width: 18px; }
.empty-state { padding: 55px 20px; display: grid; justify-items: center; text-align: center; }.empty-state-icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; color: var(--primary-700); background: var(--primary-50); }.empty-state-icon .icon { width: 32px; height: 32px; }.empty-state h3 { margin: 17px 0 5px; }.empty-state p { max-width: 420px; margin: 0 0 20px; color: var(--muted); }
.order-summary, .checkout-summary { align-self: start; position: sticky; top: 178px; padding: 24px; }.order-summary h2, .checkout-summary h2 { margin-bottom: 23px; font-size: 1.2rem; }
.summary-line, .summary-total { padding-block: 10px; display: flex; justify-content: space-between; gap: 20px; font-size: .84rem; }.summary-line span { color: var(--muted); }.summary-total { margin-top: 10px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 1.03rem; }.summary-total strong { color: var(--primary-900); font-family: var(--font-display); font-size: 1.28rem; }.summary-note, .checkout-hours { display: flex; gap: 8px; color: var(--muted); font-size: .73rem; line-height: 1.5; }.summary-note .icon, .checkout-hours .icon { flex: 0 0 auto; width: 17px; color: var(--primary-700); }.continue-shopping { margin-top: 15px; display: block; color: var(--primary-700); text-align: center; font-size: .8rem; font-weight: 800; }

.checkout-form { display: grid; gap: 20px; }.checkout-card { padding: 25px; }.checkout-card-title { margin-bottom: 22px; display: flex; gap: 13px; }.checkout-card-title > span { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: white; background: var(--primary-800); font-weight: 800; }.checkout-card-title h2 { margin: 2px 0 2px; font-size: 1.13rem; }.checkout-card-title p { margin: 0; color: var(--muted); font-size: .78rem; }
.fulfilment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }.fulfilment-options input { position: absolute; opacity: 0; }.fulfilment-options label > span { min-height: 110px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; display: grid; align-content: center; gap: 3px; cursor: pointer; }.fulfilment-options input:checked + span { border: 2px solid var(--primary-700); background: var(--primary-50); }.fulfilment-options .icon { margin-bottom: 6px; color: var(--primary-700); }.fulfilment-options small { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.form-grid label { display: grid; gap: 7px; }.form-grid label.full { grid-column: 1 / -1; }.form-grid label > span, .tracking-form label > span { color: var(--muted); font-size: .76rem; font-weight: 700; }.form-grid input, .form-grid textarea, .tracking-form input { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; outline: 0; background: white; }.form-grid input:focus, .form-grid textarea:focus, .tracking-form input:focus { border-color: var(--primary-600); box-shadow: 0 0 0 3px var(--primary-100); }
.checkout-item-mini { padding-block: 10px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; font-size: .78rem; }.checkout-item-mini span { color: var(--muted); }.minimum-message { margin-block: 14px; padding: 10px 11px; border-radius: 9px; color: #8a4d00; background: var(--warning-bg); font-size: .75rem; }.minimum-message.success { color: var(--success); background: var(--primary-50); }.checkout-summary .button { margin-top: 10px; }.checkout-actions-mobile { display: none; }.checkout-card.is-optional { opacity: .72; }
.success-modal { width: min(92vw, 480px); padding: 36px; border-radius: 24px; background: white; text-align: center; box-shadow: var(--shadow-md); }.success-check { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--success); font-size: 2rem; }.success-modal h2 { font-size: 1.7rem; }.success-modal p { color: var(--muted); }.success-order-number { margin-block: 18px; padding: 13px; border-radius: 10px; color: var(--primary-900); background: var(--primary-50); font-family: var(--font-display); font-weight: 800; }.success-actions { display: flex; justify-content: center; gap: 10px; }

.tracking-hero { padding-block: 56px; color: white; background: linear-gradient(120deg, var(--primary-950), var(--primary-700)); }.tracking-hero-inner { display: flex; justify-content: space-between; align-items: center; }.tracking-hero h1 { margin: 0 0 8px; font-size: clamp(2.2rem, 4vw, 3.6rem); }.tracking-hero p { margin: 0; color: #d5e9e3; }.tracking-art { width: 125px; height: 125px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); }.tracking-art .icon { width: 55px; height: 55px; }.tracking-shell { min-height: 420px; padding-block: 38px 80px; }.tracking-form { padding: 22px; border: 1px solid var(--line); border-radius: 17px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 13px; background: white; box-shadow: var(--shadow-sm); }.tracking-form label { display: grid; gap: 7px; }.tracking-result { margin-top: 25px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: white; }.tracking-head { display: flex; align-items: start; justify-content: space-between; gap: 15px; }.status-badge { display: inline-flex; padding: 6px 10px; border-radius: 20px; color: var(--primary-800); background: var(--primary-50); font-size: .72rem; font-weight: 800; text-transform: capitalize; }.status-badge.cancelled { color: var(--danger); background: #fff0f0; }.status-progress { margin-block: 28px; display: grid; grid-template-columns: repeat(5, 1fr); }.status-step { position: relative; display: grid; justify-items: center; gap: 8px; color: #97a29d; text-align: center; font-size: .7rem; }.status-step::before { position: absolute; z-index: 0; top: 13px; left: -50%; width: 100%; height: 2px; content: ""; background: var(--line); }.status-step:first-child::before { display: none; }.status-dot { z-index: 1; width: 28px; height: 28px; border: 3px solid white; border-radius: 50%; display: grid; place-items: center; background: var(--line); box-shadow: 0 0 0 1px var(--line); }.status-step.done { color: var(--primary-800); }.status-step.done::before, .status-step.done .status-dot { background: var(--primary-700); }.tracking-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }.tracking-detail-grid div { padding: 13px; border-radius: 10px; background: var(--surface-soft); }.tracking-detail-grid small { display: block; color: var(--muted); }.tracking-detail-grid strong { font-size: .85rem; }

.site-footer { padding: 55px 0 95px; color: #d8e8e3; background: var(--primary-950); }.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; }.footer-brand { margin-bottom: 13px; color: white; font-family: var(--font-display); font-weight: 800; }.footer-grid h3 { margin-bottom: 15px; color: white; font-size: .9rem; }.footer-grid p { max-width: 370px; margin-top: 0; color: #a9c2ba; font-size: .8rem; line-height: 1.7; }.footer-grid section { display: flex; flex-direction: column; gap: 9px; }.footer-grid a, .footer-grid span { color: #b9cec8; font-size: .78rem; }.footer-grid a:hover { color: white; }.footer-admin { text-decoration: underline; }.footer-bottom { margin-top: 42px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; color: #92ada5; font-size: .7rem; }
.mobile-nav { display: none; }

.modal-backdrop { position: fixed; z-index: 200; inset: 0; padding: 20px; display: none; place-items: center; background: rgba(5, 32, 27, .74); backdrop-filter: blur(8px); }.modal-backdrop.is-open { display: grid; }.branch-modal-card { width: min(920px, 96vw); min-height: 480px; border-radius: 28px; display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; background: white; box-shadow: 0 35px 90px rgba(0,0,0,.28); }.branch-modal-art { position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, var(--primary-950), var(--primary-700)); }.modal-basket { position: relative; z-index: 2; font-size: 8rem; filter: drop-shadow(0 24px 20px rgba(0,0,0,.22)); }.modal-leaf { position: absolute; color: rgba(255,255,255,.08); font-size: 15rem; }.leaf-one { top: -100px; left: -80px; }.leaf-two { right: -100px; bottom: -120px; }.branch-modal-copy { padding: clamp(30px, 5vw, 60px); }.branch-modal-copy h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.6rem); }.branch-modal-copy > p { color: var(--muted); line-height: 1.65; }.branch-choice-list { margin-top: 23px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.branch-choice { min-width: 0; min-height: 62px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 12px; display: flex; align-items: center; gap: 10px; color: var(--ink); background: white; text-align: left; }.branch-choice:hover { border-color: var(--primary-600); background: var(--primary-50); }.branch-choice-icon { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px; display: grid; place-items: center; color: var(--primary-700); background: var(--primary-50); }.branch-choice-name { min-width: 0; overflow: hidden; color: var(--primary-800); text-overflow: ellipsis; white-space: nowrap; }.choice-chevron { margin-left: auto; flex: 0 0 auto; }.modal-error { color: var(--danger) !important; }.toast-stack { position: fixed; z-index: 300; right: 18px; bottom: 20px; display: grid; gap: 9px; }.toast { min-width: 270px; max-width: 390px; padding: 13px 15px; border-left: 4px solid var(--primary-600); border-radius: 10px; color: var(--ink); background: white; box-shadow: var(--shadow-md); animation: toastIn .25s ease; }.toast.error { border-color: var(--danger); }.toast.success { border-color: var(--success); }@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }
.skeleton { position: relative; overflow: hidden; background: #e9eeeb; }.skeleton::after { position: absolute; inset: 0; content: ""; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent); animation: shimmer 1.35s infinite; }@keyframes shimmer { to { transform: translateX(100%); } }.category-skeleton { flex: 0 0 132px; height: 126px; border-radius: 18px; }.product-skeleton { height: 330px; border-radius: 18px; }.text-skeleton { width: 170px; height: 30px; display: block; border-radius: 7px; }
.button.disabled { pointer-events: none; opacity: .5; }

html[dir="rtl"] body { font-family: "Noto Nastaliq Urdu", "Noto Sans Arabic", "Segoe UI", sans-serif; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] .brand-copy strong { font-family: "Noto Nastaliq Urdu", "Noto Sans Arabic", "Segoe UI", sans-serif; letter-spacing: 0; }
html[dir="rtl"] .hero-copy, html[dir="rtl"] .product-card-body, html[dir="rtl"] .shop-sidebar, html[dir="rtl"] .product-information, html[dir="rtl"] .cart-panel, html[dir="rtl"] .order-summary, html[dir="rtl"] .checkout-card, html[dir="rtl"] .checkout-summary, html[dir="rtl"] .tracking-result, html[dir="rtl"] .footer-grid { text-align: right; }
html[dir="rtl"] input, html[dir="rtl"] textarea, html[dir="rtl"] select { text-align: right; }
html[dir="rtl"] .branch-pill, html[dir="rtl"] .branch-choice { text-align: right; }
html[dir="rtl"] .branch-pill .icon-chevron, html[dir="rtl"] .choice-chevron, html[dir="rtl"] .section-heading a .icon { transform: scaleX(-1); }
html[dir="rtl"] .cart-count { right: auto; left: -4px; }
html[dir="rtl"] .toast-stack { right: auto; left: 18px; }
html[dir="rtl"] .toast { border-right: 4px solid var(--primary-600); border-left: 0; }
html[dir="rtl"] .toast.error { border-right-color: var(--danger); }
html[dir="rtl"] .toast.success { border-right-color: var(--success); }
html[dir="rtl"] .category-heading-bar { border-right: 5px solid var(--accent-500); border-left: 0; }
html[dir="rtl"] .status-step::before { right: -50%; left: auto; }

@media (max-width: 1080px) {
    .header-main { grid-template-columns: auto 1fr auto; gap: 15px; }.branch-pill { grid-column: 1 / 2; grid-row: 2; }.header-search { grid-column: 2 / 4; grid-row: 2; margin-bottom: 12px; }.site-header { position: relative; }.shop-sidebar, .order-summary, .checkout-summary { top: 20px; }.product-grid { grid-template-columns: repeat(3, 1fr); }.hero-visual { right: 1%; opacity: .8; }.footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }.footer-grid section:last-child { display: none; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 24px), var(--container)); }.announcement-track { min-height: 30px; justify-content: flex-start; overflow: hidden; white-space: nowrap; }.announcement-track span:last-child, .announcement-separator { display: none; }
    .header-main { min-height: 68px; grid-template-columns: 1fr auto; gap: 10px; }.brand-mark, .brand-mark.has-logo { width: 90px; height: 54px; }.brand-mark svg { width: 30px; }.brand-copy strong { font-size: .83rem; }.brand-copy small { display: block; font-size: .58rem; line-height: 1.2; white-space: nowrap; }.header-actions .header-action:not(.cart-action):not(.language-action) { display: none; }.header-action span { display: none; }.language-action span { display: inline; font-size: .62rem; }.header-action.cart-action { display: grid; }.branch-pill { grid-column: 1 / 2; grid-row: 2; min-width: 0; }.header-search { grid-column: 1 / 3; grid-row: 3; margin-bottom: 10px; }.category-nav-shell { display: none; }
    .hero-section { width: 100%; padding-top: 0; }.hero-slider, .hero-slide { min-height: 470px; border-radius: 0 0 26px 26px; }.hero-slide { padding: 50px 24px 130px; align-items: start; }.hero-slide::after { background: linear-gradient(180deg, rgba(5,52,43,.94), rgba(5,52,43,.7)); }.hero-copy { width: 100%; }.hero-copy h1 { font-size: 2.45rem; }.hero-copy p { font-size: .93rem; }.hero-visual { right: 50%; bottom: -160px; width: 300px; height: 300px; transform: translateX(50%); opacity: .68; }.hero-dots { right: 20px; bottom: 16px; }
    .trust-strip { width: calc(100% - 24px); margin-top: 12px; padding: 0; grid-template-columns: 1fr; overflow: hidden; }.trust-strip article { padding: 13px 16px; }.trust-strip article + article { border-top: 1px solid var(--line); border-left: 0; }.trust-strip article:nth-child(3) { display: none; }
    .section { padding-block: 28px; }.section-heading { align-items: center; }.section-heading a { font-size: .76rem; }.category-chip { flex-basis: 106px; }.category-icon { width: 62px; height: 62px; }.product-carousel { grid-auto-columns: calc((100vw - 42px) / 2); gap: 10px; }.product-card-body { padding: 11px; }.product-card h3 { font-size: .8rem; }.product-card-actions { grid-template-columns: .8fr 1.2fr; gap: 6px; }.product-card-actions a, .quick-add { min-height: 36px; font-size: .62rem; }.quick-add { padding-inline: 5px; }.quick-add .icon { width: 14px; }.service-banner { margin-block: 25px 80px; padding: 28px 22px; align-items: start; flex-direction: column; }
    .shop-hero, .inner-hero { padding-block: 30px; }.shop-layout { padding-top: 20px; grid-template-columns: 1fr; }.shop-sidebar { position: fixed; z-index: 120; inset: auto 0 0; max-height: 80vh; border-radius: 22px 22px 0 0; display: none; overflow: auto; box-shadow: 0 -20px 50px rgba(0,0,0,.18); }.shop-sidebar.is-open { display: block; }.mobile-filter-button { padding: 8px 11px; border: 1px solid var(--line); border-radius: 9px; display: inline-flex; align-items: center; gap: 6px; background: white; }.mobile-filter-button .icon { width: 16px; }.results-toolbar { align-items: center; }.results-toolbar > div { display: flex; align-items: center; gap: 9px; }.results-toolbar strong { font-size: .76rem; }.results-toolbar select { max-width: 135px; font-size: .75rem; }.product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .breadcrumb { padding-block: 16px; }.product-detail { grid-template-columns: 1fr; gap: 25px; }.product-gallery-detail { grid-template-columns: 1fr; }.product-thumbnails { order: 2; flex-direction: row; }.product-thumbnail { flex: 0 0 66px; width: 66px; height: 66px; }.product-main-image { min-height: 340px; }.product-information { padding-top: 0; }.product-information h1 { font-size: 2rem; }.purchase-row { position: sticky; z-index: 20; bottom: 70px; margin-inline: -12px; padding: 10px 12px; background: rgba(255,255,255,.96); box-shadow: 0 -8px 20px rgba(0,0,0,.06); }.product-promises { grid-template-columns: 1fr; }
    .cart-layout, .checkout-layout { padding-top: 20px; grid-template-columns: 1fr; }.cart-panel { padding: 15px; }.cart-item { grid-template-columns: 72px 1fr; gap: 11px; }.cart-item-image { width: 72px; height: 68px; }.cart-item-controls { grid-column: 2; grid-row: 2; display: flex; justify-content: space-between; justify-items: initial; }.order-summary, .checkout-summary { position: static; }.checkout-summary .desktop-checkout-action { display: none; }.checkout-actions-mobile { display: grid; gap: 9px; }.fulfilment-options, .form-grid { grid-template-columns: 1fr; }.form-grid label.full { grid-column: auto; }.checkout-card { padding: 18px; }
    .tracking-hero { padding-block: 38px; }.tracking-art { display: none; }.tracking-form { grid-template-columns: 1fr; }.tracking-result { padding: 18px; }.status-progress { overflow-x: auto; grid-template-columns: repeat(5, minmax(85px, 1fr)); }.tracking-detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }.footer-grid section:first-child { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 5px; }.site-footer { padding-bottom: 110px; }.mobile-nav { position: fixed; z-index: 80; right: 10px; bottom: 9px; left: 10px; height: 62px; padding: 6px 12px; border: 1px solid rgba(255,255,255,.6); border-radius: 18px; display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.94); box-shadow: 0 12px 35px rgba(0,0,0,.18); backdrop-filter: blur(15px); }.mobile-nav a { position: relative; display: grid; place-items: center; align-content: center; gap: 2px; color: var(--muted); font-size: .62rem; }.mobile-nav a.active { color: var(--primary-700); }.mobile-nav .icon { width: 20px; height: 20px; }.mobile-nav .cart-count { top: 0; right: 20%; }
    .branch-modal-card { min-height: 0; grid-template-columns: 1fr; }.branch-modal-art { min-height: 120px; }.modal-basket { font-size: 4.7rem; }.branch-modal-copy { padding: 25px 20px; }.branch-choice-list { grid-template-columns: 1fr; max-height: 275px; overflow: auto; }.success-actions { flex-direction: column; }
}

@media (max-width: 390px) {
    .product-carousel { grid-auto-columns: calc((100vw - 34px) / 2); }.product-grid { gap: 8px; }.product-card-body { padding: 9px; }.product-card-price strong { font-size: .92rem; }.footer-grid { grid-template-columns: 1fr; }.footer-grid section:first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
