.site-header { position: sticky; top: 0; z-index: 60; background: color-mix(in srgb, var(--surface) 94%, transparent); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-row { height: 90px; display: flex; align-items: center; gap: 28px; }
.brand-lockup { width: 225px; flex: 0 0 auto; overflow: hidden; }
.brand-lockup img { width: 225px; height: 68px; object-fit: cover; object-position: center; }
.location-block { min-width: 190px; display: flex; align-items: center; gap: 10px; }
.location-pin { color: var(--green); display: grid; place-items: center; }
.location-text strong, .location-text span { display: block; }
.location-text strong { font-size: .86rem; }
.location-text span { color: var(--muted); font-size: .75rem; }
.search { flex: 1 1 380px; min-width: 220px; position: relative; }
.search-icon { position: absolute; z-index: 2; left: 15px; top: 24px; transform: translateY(-50%); color: #343a37; pointer-events: none; }
.search input { width: 100%; height: 48px; padding: 0 18px 0 46px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: var(--surface); transition: border-color .18s ease, box-shadow .18s ease; }
.search input:focus, .search input:focus-visible { outline: none; border-color: #d9ded8; box-shadow: 0 0 0 2px rgba(22,139,74,.08); }
.search:focus-within { outline: none; }
.search input::placeholder { color: transparent; }
.search input::-webkit-search-cancel-button { cursor: pointer; }
.animated-search-placeholder { position: absolute; z-index: 1; left: 46px; right: 17px; top: 24px; transform: translateY(-50%); overflow: hidden; color: var(--muted); font-size: .86rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; pointer-events: none; transition: opacity .16s ease; }
.animated-search-placeholder [data-placeholder-term] { display: inline-block; transition: opacity .18s ease, transform .18s ease; }
.animated-search-placeholder [data-placeholder-term].swap-out { opacity: 0; transform: translateY(-5px); }
.search.is-search-active .animated-search-placeholder { opacity: 0; visibility: hidden; }
.search-suggestions { position: absolute; z-index: 250; top: calc(100% + 9px); left: 0; right: 0; max-height: 440px; overflow-y: auto; padding: 8px; border: 1px solid #e5ded4; border-radius: 15px; color: #171716; background: #fffdf8; box-shadow: 0 18px 50px rgba(40,25,12,.18); }
.search-suggestions[hidden] { display: none; }
.suggestion-item { min-height: 62px; padding: 8px 9px; border-radius: 10px; display: grid; grid-template-columns: 46px minmax(0,1fr) auto; align-items: center; gap: 11px; color: #171716; cursor: pointer; }
.suggestion-item:hover, .suggestion-item.active { background: #f7eee3; }
.suggestion-item img, .suggestion-placeholder { width: 44px; height: 44px; border: 1px solid #eee5da; border-radius: 9px; background: #fff; }
.suggestion-item img { object-fit: cover; }
.suggestion-placeholder { display: grid; place-items: center; color: var(--red); }
.suggestion-copy { min-width: 0; }
.suggestion-copy strong, .suggestion-copy small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.suggestion-copy strong { font-size: .86rem; }
.suggestion-copy small { margin-top: 2px; color: #74736f; font-size: .72rem; }
.suggestion-type { border-radius: 99px; padding: 4px 8px; color: #69645d; background: #f4f0ea; font-size: .65rem; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
.suggestion-empty { padding: 22px 14px; text-align: center; color: #69645d; font-size: .84rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(15px, 1.8vw, 29px); font-size: .84rem; font-weight: 650; white-space: nowrap; }
.desktop-nav a:hover { color: var(--red); }
.header-actions { display: flex; gap: 8px; }
.header-actions .icon-btn { color: #202522; background: #fff; border-color: #e1e2df; }
.header-actions .icon-btn:hover { color: var(--green); border-color: #bfd5c5; background: #f7fbf8; transform: translateY(-1px); }
.menu-toggle { display: none; }
.mobile-menu-panel { margin-top: -4px; margin-bottom: 12px; padding: 10px; display: flex; justify-content: flex-end; gap: 5px; border: 1px solid #e5ded4; border-radius: 12px; color: #171716; background: #fffdf8; box-shadow: var(--shadow-sm); }
.mobile-menu-panel[hidden] { display: none; }
.mobile-menu-panel a { padding: 9px 14px; border-radius: 8px; font-size: .84rem; font-weight: 700; }
.mobile-menu-panel a:hover { color: var(--red); background: #f7eee3; }
.mobile-search { display: none; padding-bottom: 12px; }
.mobile-nav { display: none; }

.hero-shell { padding-top: 20px; }
.hero { position: relative; overflow: hidden; border-radius: 22px; background: var(--cream); box-shadow: var(--shadow-sm); }
.hero-track { position: relative; aspect-ratio: 1920/720; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .65s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-dots { position: absolute; bottom: 16px; left: 50%; display: flex; gap: 8px; transform: translateX(-50%); z-index: 2; }
.hero-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #b8b6b1; cursor: pointer; }
.hero-dot.active { width: 25px; border-radius: 99px; background: var(--red); }
.hero-control { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(255,255,255,.88); color: #111; box-shadow: var(--shadow-sm); cursor: pointer; }
.hero-control.prev { left: 14px; }
.hero-control.next { right: 14px; }
.hero-shop { position: absolute; z-index: 3; left: 5.8%; bottom: 9%; min-width: 132px; box-shadow: 0 9px 24px rgba(10,118,53,.22); }
.hero-shop:hover { box-shadow: 0 12px 28px rgba(10,118,53,.3); }

.brand-rail, .product-grid { display: grid; gap: 18px; }
.brand-rail { grid-template-columns: repeat(4, 1fr); }
.brand-card { min-height: 150px; padding: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: .2s ease; overflow: hidden; }
.brand-card:hover { border-color: #d9c9b6; transform: translateY(-3px); }
.brand-card img { width: 104px; height: 78px; object-fit: contain; margin-bottom: 9px; }
.brand-card img[src*="girdharilal"] { transform: scale(2.35); }
.brand-card img[src*="m4b"] { transform: scale(1.5); }
.brand-card img[src*="omji"] { transform: scale(1.08); }
.brand-card strong { font-size: .9rem; }
.brand-card small { color: var(--muted); }
.more-brands { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 13px; background: var(--cream); font-size: 1.6rem; }
.more-brand-card { background: linear-gradient(145deg, var(--cream), var(--green-soft)); }
.more-brand-card .more-brands { color: var(--green); background: color-mix(in srgb, var(--surface) 74%, var(--green-soft)); border: 1px solid #c9e2d0; }
.more-brand-card:hover { border-color: #abd4b7; }
.filter-row { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin: 8px 0 26px; }
.chips { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { min-width: 86px; height: 40px; padding: 0 18px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); cursor: pointer; white-space: nowrap; }
.chip.active, .chip:hover { border-color: var(--red); color: var(--red); }
.sorters { display: flex; gap: 10px; }
.sorters select { height: 40px; border: 1px solid var(--line); border-radius: 99px; padding: 0 34px 0 15px; color: var(--ink); background: var(--surface); }
.product-grid { grid-template-columns: repeat(var(--grid-cols, 5), minmax(0, 1fr)); }
.product-card { min-width: 0; overflow: hidden; position: relative; box-shadow: none; transition: .22s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card__media { position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 10px 12px; background: var(--product-bg, #f8f1e8); }
.product-card__media img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center center; transform: none; }
.product-card:hover .product-card__media img { transform: none; }
.wish-btn { position: absolute; z-index: 2; right: 10px; top: 10px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.92); color: #333; cursor: pointer; font-size: 1.1rem; }
.wish-btn.active { color: var(--red); }
.product-info { padding: 14px; }
.product-info h3 { margin: 0 0 4px; font-size: 1rem; line-height: 1.3; }
.product-meta { min-height: 38px; color: var(--muted); font-size: .8rem; }
.product-buy { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; }
.price { font-size: 1.12rem; font-weight: 800; }
.add-btn { min-height: 36px; padding: 0 13px; border-radius: 8px; font-size: .78rem; }
.stepper { display: inline-flex; align-items: center; border: 1px solid #acd3b8; border-radius: 9px; overflow: hidden; }
.stepper button { width: 34px; height: 34px; border: 0; background: var(--green-soft); color: var(--green); cursor: pointer; font-weight: 800; }
.stepper span { min-width: 30px; text-align: center; font-weight: 700; }
.trust-strip { margin: 30px 0; padding: 20px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; border: 1px solid #f1ddd2; border-radius: var(--radius); background: linear-gradient(90deg, #fff7f4, var(--surface), #f7fff8); }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 13px; }
.trust-icon { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; color: var(--green); }
.trust-icon svg { width: 27px; height: 27px; stroke-width: 1.8; }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: .86rem; }
.trust-item span { color: var(--muted); font-size: .76rem; }

.site-footer { margin-top: 46px; background: var(--cream); border-top: 1px solid var(--line); }
.footer-grid { padding: 48px 0 32px; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr) 1.3fr; gap: 40px; }
.footer-brand img { width: 230px; height: 76px; object-fit: cover; }
.footer-brand p { max-width: 360px; color: var(--muted); font-size: .88rem; }
.footer-col h3 { margin: 7px 0 14px; font-size: .92rem; }
.footer-col a, .footer-col span { display: block; margin: 8px 0; color: var(--muted); font-size: .84rem; }
.footer-contact-link { display: flex !important; align-items: center; gap: 13px; }
.footer-contact-link:hover { color: var(--green); }
.footer-bottom { padding: 18px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: .78rem; }

.modal-backdrop { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; background: rgba(15,12,10,.64); backdrop-filter: blur(5px); opacity: 0; pointer-events: none; transition: .22s ease; }
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.login-modal { width: min(100%, 500px); padding: 34px; position: relative; transform: translateY(20px) scale(.98); transition: .22s ease; background: linear-gradient(180deg, #f0fbff, #fff); color: #151515; }
.modal-backdrop.open .login-modal { transform: none; }
.modal-close { position: absolute; right: 18px; top: 18px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #222; color: #fff; font-size: 1.1rem; cursor: pointer; }
.login-icon { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 16px; display: grid; place-items: center; background: #fff; box-shadow: var(--shadow-sm); font-size: 1.8rem; }
.login-modal h2, .login-modal > p { text-align: center; }
.login-modal h2 { margin: 0 0 6px; font-size: 1.8rem; }
.login-modal > p { margin: 0 20px 24px; color: #72777c; }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.field label { font-size: .8rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 47px; border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; color: var(--ink); background: var(--surface); }
.login-modal .field input { background: #f5f7f9; color: #111; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 50px; }
.password-toggle { position: absolute; right: 8px; top: 8px; height: 32px; border: 0; background: transparent; cursor: pointer; }
.modal-row { display: flex; justify-content: flex-end; margin: -3px 0 14px; }
.divider { display: flex; align-items: center; gap: 12px; color: #8c8f92; font-size: .78rem; margin: 20px 0; }
.divider::before, .divider::after { content: ''; height: 1px; flex: 1; background: #dfe3e5; }
.google-btn { width: 100%; background: #f5f5f5; color: #111; }
.create-account { margin-top: 18px !important; font-size: .85rem; }

/* Dedicated My Account login/register page (myaccount/form-login.php override) —
   reuses the .login-modal card visual language but as a static, centered page
   section instead of a fixed-position overlay. */
.account-auth { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 34px 0 12px; }
.account-auth .login-modal { position: static; width: min(100%, 460px); transform: none; box-shadow: var(--shadow-sm); border: 1px solid var(--line); border-radius: 22px; }
.account-auth .modal-close { display: none; }
.auth-logo { display: block; width: 148px; height: auto; margin: 0 auto 18px; object-fit: contain; }
.auth-title { margin: 0 0 6px; text-align: center; font-size: 1.6rem; }
.auth-subtitle { margin: 0 0 22px; text-align: center; color: #72777c; }
.auth-note { margin: 0 0 15px; color: var(--muted); font-size: .85rem; }
.account-auth .woocommerce-error,
.account-auth .woocommerce-message,
.account-auth .woocommerce-info { list-style: none; margin: 0 0 18px; padding: 12px 16px; border-radius: 10px; font-size: .86rem; background: #fdeceb; color: var(--red); border: 1px solid #f4c9c5; }
.account-auth .woocommerce-message { background: var(--green-soft); color: var(--green); border-color: #c9e2d0; }
