/* Home page (front/index.blade.php) */
.hp { --hp-accent: #07a8a9; --hp-ink: #1d2340; --hp-muted: #6b7191; --hp-line: #e6e9f2; --hp-soft: #eef8f8; color: var(--hp-ink); font-family: inherit; }
.hp *, .hp *::before, .hp *::after { box-sizing: border-box; }
.hp a { text-decoration: none; color: inherit; }
.hp ul { margin: 0; padding: 0; list-style: none; }
.hp .hp-sec { padding: 28px 0; }
.hp .hp-ico { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; color: var(--hp-accent); }

/* section headings */
.hp .hp-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 0 0 20px; }
.hp .hp-head h2 { margin: 0; font-size: 26px; line-height: 1.2; font-weight: 700; color: var(--hp-ink); text-transform: none; }
.hp .hp-head p { margin: 4px 0 0; font-size: 14.5px; color: var(--hp-muted); }

/* horizontal scrollers with arrows */
.hp .hp-scroll-wrap { position: relative; }
.hp .hp-scroll { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 4px 2px 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.hp .hp-scroll::-webkit-scrollbar { display: none; }
.hp .hp-scroll > * { scroll-snap-align: start; flex: 0 0 auto; }
.hp .hp-arrow {
  position: absolute; top: 44%; z-index: 3; width: 42px; height: 42px; margin-top: -21px; border: 0; border-radius: 50%; background: #fff; color: var(--hp-ink);
  box-shadow: 0 4px 16px rgba(29, 35, 64, .2); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 1; transition: opacity .15s, transform .15s;
}
.hp .hp-arrow:hover { transform: scale(1.06); }
.hp .hp-arrow i { font-size: 13px; }
.hp .hp-next { right: -14px; }
.hp .hp-prev { left: -14px; }
.hp .hp-arrow.is-hidden { opacity: 0; pointer-events: none; }

/* trust strip */
.hp .hp-trust { padding: 22px 0 6px; }
.hp .hp-trust ul { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; }
.hp .hp-trust li { display: flex; align-items: center; gap: 12px; }
.hp .hp-trust b, .hp .hp-serv-grid b { display: block; font-size: 14px; font-weight: 700; color: var(--hp-ink); line-height: 1.25; }
.hp .hp-trust small, .hp .hp-serv-grid small { display: block; font-size: 12.5px; color: var(--hp-muted); line-height: 1.3; }

/* category cards: six equal cards in one row, photo on top and the name inside the card */
.hp .hp-cats { padding-top: 26px; }
.hp .hp-cat-grid { display: grid; grid-template-columns: repeat(var(--hp-n, 6), minmax(0, 1fr)); gap: 18px; }
.hp .hp-cat-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--hp-line); border-radius: 16px; background: #fff; box-shadow: 0 2px 8px rgba(29, 35, 64, .05); transition: box-shadow .18s, transform .18s, border-color .18s; }
.hp .hp-cat-card:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(29, 35, 64, .12); border-color: var(--hp-accent); }
.hp .hp-cat-img { display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / .78; background: linear-gradient(160deg, #eaf5f8, #f4f9fb); overflow: hidden; }
.hp .hp-cat-img img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 10px; transition: transform .25s; }
.hp .hp-cat-card:hover .hp-cat-img img { transform: scale(1.06); }
.hp .hp-cat-t { display: block; padding: 12px 8px 13px; text-align: center; font-size: 15px; font-weight: 600; color: var(--hp-ink); }
/* service links */
.hp .hp-services { padding-top: 8px; }
.hp .hp-serv-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; padding: 30px 12px; border-radius: 18px; background: var(--hp-soft); }
.hp .hp-serv-grid a { display: flex; align-items: center; gap: 14px; padding: 8px 22px; transition: background .15s; }
.hp .hp-serv-grid a:hover { background: rgba(255, 255, 255, .55); }

/* bestsellers */
.hp .hp-tabs { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.hp .hp-tabs button { height: 38px; padding: 0 18px; border: 1px solid var(--hp-line); border-radius: 999px; background: #fff; color: var(--hp-ink); font-size: 14px; font-weight: 600; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.hp .hp-tabs button:hover { border-color: var(--hp-accent); color: var(--hp-accent); }
.hp .hp-tabs button.is-active { background: var(--hp-accent); border-color: var(--hp-accent); color: #fff; }
.hp .hp-panel { display: none; }
.hp .hp-panel.is-active { display: block; animation: hpIn .22s ease-out; }
@keyframes hpIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hp .hp-panel.is-active { animation: none; } }
.hp .hp-cards { gap: 18px; }
.hp .hp-card { position: relative; display: flex; flex-direction: column; width: 222px; background: #fff; border: 1px solid var(--hp-line); border-radius: 18px; overflow: hidden; transition: border-color .15s; }
.hp .hp-card:hover { border-color: var(--hp-accent); }
.hp .hp-img { position: relative; display: flex; align-items: center; justify-content: center; height: 176px; background: #f7f9fc; }
.hp .hp-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; mix-blend-mode: multiply; }
.hp .hp-off { position: absolute; left: 10px; top: 10px; padding: 4px 9px; border-radius: 999px; background: #e8f7ee; color: #17784a; font-size: 11.5px; font-weight: 700; }
.hp .hp-wish { position: absolute; right: 10px; top: 10px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #fff; color: #4a5070; box-shadow: 0 2px 8px rgba(29, 35, 64, .14); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color .15s, transform .15s; }
.hp .hp-wish:hover { color: #e0245e; transform: scale(1.08); }
.hp .hp-body { display: flex; flex-direction: column; gap: 4px; padding: 14px 14px 16px; flex: 1; }
.hp .hp-name { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; font-size: 14.5px; font-weight: 600; line-height: 1.35; color: var(--hp-ink); }
.hp .hp-name:hover { color: var(--hp-accent); }
.hp .hp-cat { font-size: 12.5px; color: var(--hp-muted); }
.hp .hp-rate { font-size: 12.5px; font-weight: 600; color: #b26a00; }
.hp .hp-rate i { color: #f5a300; font-size: 11px; }
.hp .hp-rate em { font-style: normal; font-weight: 400; color: var(--hp-muted); }
.hp .hp-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.hp .hp-price strong { font-size: 18px; font-weight: 700; color: var(--hp-ink); }
.hp .hp-price del { font-size: 13px; color: #9aa0bd; }
.hp .hp-add { display: flex; align-items: center; justify-content: center; width: 100%; height: 42px; margin-top: 10px; border: 0; border-radius: 999px; background: var(--hp-accent); color: #fff !important; font-size: 14px; font-weight: 700; cursor: pointer; transition: filter .15s; }
.hp .hp-add:hover { filter: brightness(.93); }
.hp .hp-add.is-out { background: #e9ecf6; color: #6b7191 !important; cursor: not-allowed; }

/* promo cards */
.hp .hp-promo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.hp .hp-promo { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 210px; padding: 0 0 0 32px; overflow: hidden; border-radius: 22px; }
.hp .hp-promo-a { background: linear-gradient(135deg, #e3f3fb, #cfe9f6); }
.hp .hp-promo-b { background: linear-gradient(135deg, #fdf0e1, #f8dfc0); }
.hp .hp-promo-txt { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 26px 0; max-width: 56%; }
.hp .hp-promo-txt b { font-size: 24px; line-height: 1.2; font-weight: 700; color: var(--hp-ink); }
.hp .hp-promo-txt small { font-size: 14.5px; color: #4a5070; }
.hp .hp-btn { display: inline-flex; align-items: center; gap: 10px; height: 42px; margin-top: 8px; padding: 0 20px; border-radius: 999px; background: #0f2a4a; color: #fff; font-size: 14px; font-weight: 600; transition: filter .15s; }
.hp .hp-btn i { font-size: 12px; transition: transform .15s; }
.hp .hp-promo:hover .hp-btn i { transform: translateX(3px); }
.hp .hp-promo img { flex: 0 1 auto; align-self: stretch; width: 44%; max-height: 210px; object-fit: contain; mix-blend-mode: multiply; padding: 14px 18px 14px 0; transition: transform .3s; }
.hp .hp-promo:hover img { transform: scale(1.05); }

/* shape / wear tiles */
.hp .hp-tiles { gap: 14px; }
.hp .hp-shape { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 148px; padding: 18px 10px 14px; border: 1px solid var(--hp-line); border-radius: 18px; background: #fff; font-size: 15px; font-weight: 600; text-align: center; transition: box-shadow .18s, transform .18s, border-color .18s; }
.hp .hp-shape:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(29, 35, 64, .1); border-color: var(--hp-accent); color: var(--hp-accent); }
.hp .hp-shape-i { display: inline-flex; align-items: center; justify-content: center; width: 96px; height: 62px; border-radius: 14px; background: #f2f5fa; color: #2b3563; }
.hp .hp-shape-i svg { width: 62px; height: auto; }
.hp .hp-shape-i.hp-lens svg { width: 44px; height: 44px; }
.hp .hp-shape:hover .hp-shape-i { background: #dff3f3; color: var(--hp-accent); }

/* why us */
.hp .hp-why { margin: 18px 0; padding: 38px 0; background: var(--hp-soft); }
.hp .hp-why h2 { margin: 0; font-size: 26px; font-weight: 700; text-transform: none; }
.hp .hp-why p { margin: 4px 0 22px; color: var(--hp-muted); font-size: 14.5px; }
.hp .hp-why ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.hp .hp-why li { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 16px; background: #fff; }
.hp .hp-why li .hp-ico { width: 48px; height: 48px; border-radius: 50%; background: var(--hp-soft); }
.hp .hp-why li b { font-size: 15px; font-weight: 700; }

/* more ways */
.hp .hp-ways-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.hp .hp-ways-grid a { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; padding: 26px; border: 1px solid var(--hp-line); border-radius: 20px; background: #fff; transition: box-shadow .18s, transform .18s, border-color .18s; }
.hp .hp-ways-grid a:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(29, 35, 64, .1); border-color: var(--hp-accent); }
.hp .hp-ways-grid .hp-ico { width: 56px; height: 56px; margin-bottom: 8px; border-radius: 16px; background: var(--hp-soft); }
.hp .hp-ways-grid b { font-size: 17px; font-weight: 700; }
.hp .hp-ways-grid small { font-size: 14px; line-height: 1.45; color: var(--hp-muted); }
.hp .hp-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--hp-accent); }
.hp .hp-link i { font-size: 12px; transition: transform .15s; }
.hp .hp-ways-grid a:hover .hp-link i { transform: translateX(3px); }

/* brands */
.hp .hp-logos { gap: 18px; align-items: center; }
.hp .hp-logos a { display: flex; align-items: center; justify-content: center; width: 168px; height: 84px; padding: 10px 16px; border: 1px solid var(--hp-line); border-radius: 14px; background: #fff; }
.hp .hp-logos img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1); opacity: .8; transition: filter .2s, opacity .2s; }
.hp .hp-logos a:hover img { filter: none; opacity: 1; }

/* about */

/* ---------- tablets and phones ---------- */
@media (max-width: 991.98px) {
  .hp .hp-cat-grid { gap: 14px; }
  .hp .hp-serv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 14px; }
  .hp .hp-ways-grid { grid-template-columns: 1fr; }
  .hp .hp-arrow { display: none; }
  .hp .hp-scroll { margin-right: -15px; padding-right: 15px; }
}
@media (max-width: 767.98px) {
  .hp .hp-sec { padding: 20px 0; }
  .hp .hp-head h2, .hp .hp-why h2 { font-size: 22px; }
  .hp .hp-trust ul { flex-wrap: nowrap; overflow-x: auto; gap: 26px; padding-bottom: 6px; scrollbar-width: none; }
  .hp .hp-trust ul::-webkit-scrollbar { display: none; }
  .hp .hp-trust li { flex: 0 0 auto; }
  .hp .hp-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .hp .hp-cat-t { font-size: 14px; padding: 10px 6px 11px; }
  .hp .hp-card { width: 176px; }
  .hp .hp-img { height: 140px; }
  .hp .hp-promo-grid { grid-template-columns: 1fr; }
  .hp .hp-promo { min-height: 180px; padding-left: 22px; }
  .hp .hp-promo-txt b { font-size: 20px; }
  .hp .hp-shape { width: 128px; }
  .hp .hp-logos a { width: 132px; height: 72px; }
  .hp .hp-tabs { overflow-x: auto; flex-wrap: nowrap; max-width: 100%; scrollbar-width: none; }
  .hp .hp-tabs::-webkit-scrollbar { display: none; }
  .hp .hp-tabs button { flex: 0 0 auto; }
}
@media (max-width: 575.98px) {
  .hp .hp-serv-grid { grid-template-columns: 1fr; padding: 16px 10px; row-gap: 0; }
  .hp .hp-serv-grid a { padding: 14px 12px; }
}

/* service strip: larger icons and text, matched to the design reference */
.hp .hp-serv-grid a { gap: 16px; }
.hp .hp-serv-grid .hp-ico svg { width: 46px; height: 46px; stroke-width: 1.9; }
.hp .hp-serv-grid b { font-size: 17px; font-weight: 700; line-height: 1.2; letter-spacing: .1px; }
.hp .hp-serv-grid small { margin-top: 3px; font-size: 14px; line-height: 1.3; }
@media (max-width: 767.98px) {
  .hp .hp-serv-grid .hp-ico svg { width: 40px; height: 40px; }
  .hp .hp-serv-grid b { font-size: 16px; }
}

/* ---------- bestseller row: five full cards, room for the hover shadow, arrows outside the row ---------- */
.hp .hp-scroll.hp-cards { gap: 18px; margin: -2px; padding: 2px; scroll-padding-left: 2px; scroll-snap-type: x mandatory; }
.hp .hp-panel .hp-scroll-wrap { overflow: visible; }
@media (min-width: 992px) {
  .hp .hp-scroll.hp-cards > .hp-card { flex: 0 0 calc((100% - 72px) / 5); width: auto; min-width: 0; }
}
@media (max-width: 991.98px) {
  .hp .hp-scroll.hp-cards { margin: -2px -15px -2px -2px; padding: 2px 15px 2px 2px; }
}
/* arrows sit half outside the row, fully outside when the screen is wide enough */
.hp .hp-arrow.hp-next { right: -21px; }
.hp .hp-arrow.hp-prev { left: -21px; }
@media (min-width: 1300px) {
  .hp .hp-arrow.hp-next { right: -58px; }
  .hp .hp-arrow.hp-prev { left: -58px; }
}

/* ---------- shape and wear-time tiles: five per row, no box border, hover shadow kept, arrows like the bestsellers ---------- */
.hp .hp-scroll.hp-tiles { gap: 18px; margin: -8px -8px -28px; padding: 8px 8px 28px; scroll-padding-left: 8px; scroll-snap-type: x mandatory; }
.hp .hp-shape { border: 0; background: #fff; }
.hp .hp-shape:hover { border: 0; }
@media (min-width: 992px) {
  .hp .hp-scroll.hp-tiles > .hp-shape { flex: 0 0 calc((100% - 72px) / 5); width: auto; min-width: 0; }
}
@media (max-width: 991.98px) {
  .hp .hp-scroll.hp-tiles { margin: -8px -15px -28px -8px; padding: 8px 15px 28px 8px; }
}

/* shape / wear tiles: the grey icon box fills the whole tile width, the name sits below it */
.hp .hp-shape { padding: 0 0 12px; gap: 12px; border-radius: 16px; overflow: hidden; }
.hp .hp-shape-i { width: 100%; height: 104px; border-radius: 16px; }
.hp .hp-shape-i svg { width: 96px; }
.hp .hp-shape-i.hp-lens svg { width: 54px; height: 54px; }
.hp .hp-shape > span:last-child { padding: 0 8px; }
@media (max-width: 767.98px) {
  .hp .hp-shape-i { height: 88px; }
  .hp .hp-shape-i svg { width: 66px; }
  .hp .hp-shape-i.hp-lens svg { width: 46px; height: 46px; }
}

/* shape / wear tiles: hover only changes colours (no shadow, no lift), so no extra room is needed around the row */
.hp .hp-shape { transition: color .15s; }
.hp .hp-shape:hover { transform: none; box-shadow: none; border: 0; }
.hp .hp-scroll.hp-tiles { margin: -2px; padding: 2px; scroll-padding-left: 2px; }
@media (max-width: 991.98px) {
  .hp .hp-scroll.hp-tiles { margin: -2px -15px -2px -2px; padding: 2px 15px 2px 2px; }
}

/* top brands: logos glide by on their own, pause on hover, soft fade at both ends */
.hp .hp-marquee { position: relative; overflow: hidden; padding: 4px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.hp .hp-marquee-track { display: flex; width: max-content; animation: hpMarquee 60s linear infinite; will-change: transform; }
.hp .hp-marquee:hover .hp-marquee-track { animation-play-state: paused; }
.hp .hp-marquee-set { display: flex; flex: 0 0 auto; gap: 18px; padding-right: 18px; }
.hp .hp-marquee-set a { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 168px; height: 84px; padding: 10px 16px; border: 1px solid var(--hp-line); border-radius: 14px; background: #fff; }
.hp .hp-marquee-set img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1); opacity: .8; transition: filter .2s, opacity .2s; }
.hp .hp-marquee-set a:hover { border-color: var(--hp-accent); }
.hp .hp-marquee-set a:hover img { filter: none; opacity: 1; }
@keyframes hpMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .hp .hp-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .hp .hp-marquee-track { animation: none; }
  .hp .hp-marquee-set[aria-hidden="true"] { display: none; }
}
@media (max-width: 767.98px) {
  .hp .hp-marquee-set a { width: 132px; height: 72px; }
}

/* why us: title plus a short line under it */
.hp .hp-why li { align-items: flex-start; gap: 16px; padding: 22px 20px; }
.hp .hp-why li .hp-ico { width: 54px; height: 54px; }
.hp .hp-why-t { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hp .hp-why-t b { font-size: 16px; line-height: 1.25; font-weight: 700; }
.hp .hp-why-t small { font-size: 14px; line-height: 1.45; color: var(--hp-muted); }

/* ---------- frequently asked questions ---------- */
.hp .hp-faq { padding: 52px 0 64px; background: linear-gradient(180deg, #f3fafa 0%, #eef8f8 100%); }
.hp .hp-faq-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.hp .hp-faq-eyebrow { display: block; margin-bottom: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: var(--hp-muted); }
.hp .hp-faq-head h2 { margin: 0 0 10px; font-size: 38px; line-height: 1.15; font-weight: 400; color: var(--hp-ink); text-transform: none; }
.hp .hp-faq-head h2 b { font-weight: 700; }
.hp .hp-faq-head p { margin: 0; font-size: 16px; color: var(--hp-muted); }
.hp .hp-faq-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.hp .hp-faq-col { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.hp .hp-faq-item { border-radius: 20px; background: #fff; box-shadow: 0 1px 2px rgba(29, 35, 64, .04); }
.hp .hp-faq-item h3 { margin: 0; }
.hp .hp-faq-q { display: flex; align-items: center; gap: 18px; width: 100%; padding: 22px 26px; border: 0; background: none; text-align: left; cursor: pointer; color: var(--hp-ink); font-family: inherit; }
.hp .hp-faq-q:focus { outline: none; }
.hp .hp-faq-q:focus-visible { outline: 2px solid var(--hp-accent); outline-offset: -2px; border-radius: 20px; }
.hp .hp-faq-ico { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: var(--hp-soft); color: var(--hp-accent); }
.hp .hp-faq-qt { flex: 1; min-width: 0; font-size: 17px; line-height: 1.4; font-weight: 600; color: var(--hp-ink); }
.hp .hp-faq-pm { position: relative; flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--hp-soft); transition: background .15s; }
.hp .hp-faq-pm::before, .hp .hp-faq-pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px; border-radius: 2px; background: var(--hp-accent); transition: transform .2s; }
.hp .hp-faq-pm::after { transform: rotate(90deg); }
.hp .hp-faq-item.is-open .hp-faq-pm::after { transform: rotate(0); }
.hp .hp-faq-q:hover .hp-faq-pm { background: #dff3f3; }
.hp .hp-faq-a { margin: 0 26px; padding: 4px 0 24px 72px; border-top: 1px solid #edf0f6; }
.hp .hp-faq-a[hidden] { display: none; }
.hp .hp-faq-a p { margin: 16px 0 0; font-size: 15px; line-height: 1.7; color: #4a5070; }
.hp .hp-faq-item.is-open .hp-faq-a { animation: hpIn .2s ease-out; }
@media (prefers-reduced-motion: reduce) { .hp .hp-faq-item.is-open .hp-faq-a { animation: none; } .hp .hp-faq-pm::before, .hp .hp-faq-pm::after { transition: none; } }
@media (max-width: 991.98px) {
  .hp .hp-faq { padding: 40px 0 48px; }
  .hp .hp-faq-cols { grid-template-columns: 1fr; gap: 16px; }
  .hp .hp-faq-col { display: contents; }
  .hp .hp-faq-head h2 { font-size: 30px; }
}
@media (max-width: 575.98px) {
  .hp .hp-faq-q { padding: 16px 16px; gap: 12px; }
  .hp .hp-faq-ico { width: 44px; height: 44px; }
  .hp .hp-faq-ico svg { width: 22px; height: 22px; }
  .hp .hp-faq-qt { font-size: 15.5px; }
  .hp .hp-faq-a { margin: 0 16px; padding: 2px 0 18px 0; }
  .hp .hp-faq-head h2 { font-size: 26px; }
}

/* ---------- about block above the footer ---------- */
.hp .hp-about { padding: 34px 0 58px; }
.hp .hp-about-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); gap: 44px; align-items: center; }
.hp .hp-about-img { overflow: hidden; border-radius: 22px; background: linear-gradient(135deg, #e9f6f6, #d6eeee); }
.hp .hp-about-img img { display: block; width: 100%; height: auto; max-height: 420px; object-fit: cover; }
.hp .hp-about-ph { display: flex; flex-direction: column; justify-content: center; gap: 18px; min-height: 280px; padding: 34px 40px; color: #0f6f70; }
.hp .hp-about-ph span { max-width: 340px; font-size: 32px; line-height: 1.2; font-weight: 700; }
.hp .hp-about-ph svg { align-self: flex-end; opacity: .3; width: 220px; height: auto; }
.hp .hp-about-txt h2 { margin: 0 0 14px; font-size: 32px; line-height: 1.2; font-weight: 700; color: var(--hp-ink); text-transform: none; }
.hp .hp-about-txt p { margin: 0 0 26px; max-width: 560px; font-size: 16px; line-height: 1.7; color: #4a5070; }
.hp .hp-about-feats { display: flex; flex-wrap: wrap; gap: 18px 34px; }
.hp .hp-about-feats li { display: flex; align-items: center; gap: 12px; }
.hp .hp-about-feats .hp-ico { width: 48px; height: 48px; border: 1.5px solid var(--hp-accent); border-radius: 50%; }
.hp .hp-about-feats b { display: block; font-size: 15.5px; font-weight: 700; color: var(--hp-ink); line-height: 1.25; }
.hp .hp-about-feats small { display: block; font-size: 13.5px; color: var(--hp-muted); line-height: 1.3; }
@media (max-width: 991.98px) {
  .hp .hp-about { padding: 26px 0 40px; }
  .hp .hp-about-grid { grid-template-columns: 1fr; gap: 24px; }
  .hp .hp-about-txt h2 { font-size: 26px; }
  .hp .hp-about-ph { min-height: 220px; padding: 26px; }
  .hp .hp-about-ph span { font-size: 26px; }
}
.hp .hp-about-grid { gap: 40px; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
.hp .hp-about-feats { flex-wrap: nowrap; gap: 20px; }
.hp .hp-about-feats li { gap: 10px; min-width: 0; }
.hp .hp-about-feats .hp-ico { width: 42px; height: 42px; }
.hp .hp-about-feats .hp-ico svg { width: 21px; height: 21px; }
.hp .hp-about-feats b { font-size: 15px; }
.hp .hp-about-feats small { font-size: 13px; }
@media (max-width: 991.98px) { .hp .hp-about-feats { flex-wrap: wrap; } }
/* highlights wrap onto a second line instead of squeezing their text */
.hp .hp-about-feats { flex-wrap: wrap; gap: 18px 32px; }
.hp .hp-about-feats li { flex: 0 0 auto; }
.hp .hp-about-feats b, .hp .hp-about-feats small { white-space: nowrap; }
@media (max-width: 991.98px) {
  .hp .hp-about-grid { grid-template-columns: 1fr; gap: 24px; }
  .hp .hp-about-feats b, .hp .hp-about-feats small { white-space: normal; }
}

/* about block: proportions matched to the design reference (picture about 44%, text 56%, three highlights in one row) */
@media (min-width: 992px) {
  .hp .hp-about-grid { grid-template-columns: minmax(0, 44fr) minmax(0, 56fr); gap: 48px; align-items: center; }
  .hp .hp-about-txt h2 { font-size: 28px; margin-bottom: 12px; }
  .hp .hp-about-txt p { max-width: none; font-size: 15px; line-height: 1.65; margin-bottom: 26px; }
  .hp .hp-about-feats { flex-wrap: nowrap; gap: 16px; justify-content: flex-start; }
  .hp .hp-about-feats li { flex: 0 1 auto; gap: 9px; }
  .hp .hp-about-feats .hp-ico { width: 40px; height: 40px; }
  .hp .hp-about-feats .hp-ico svg { width: 20px; height: 20px; }
  .hp .hp-about-feats b { font-size: 14px; }
  .hp .hp-about-feats small { font-size: 12.5px; }
}
.hp .hp-about-txt h2, .hp .hp-about-txt p { hyphens: none; -webkit-hyphens: none; word-break: normal; overflow-wrap: normal; }
.hp .hp-about-img { border-radius: 18px; }
.hp .hp-about-img img { max-height: none; height: auto; }

/* ---------- hero slides: phone banner and image-only slides ---------- */
@media (max-width: 767.98px) {
  .hero-area .hero-area-slider .intro-carousel .intro-content.has-mobile-bg { background-image: var(--sl-m) !important; }
}
.hero-area .hero-area-slider .intro-carousel a.intro-content.hp-slide-img { display: block; height: auto; padding: 0; background: none; line-height: 0; }
.hero-area .hero-area-slider .intro-carousel a.intro-content.hp-slide-img img { display: block; width: 100%; height: auto; }
/* service strip on phones: one compact row, icon above a short label */
@media (max-width: 575.98px) {
  .hp .hp-serv-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; padding: 14px 6px; row-gap: 0; }
  .hp .hp-serv-grid a, .hp .hp-serv-grid a + a { flex-direction: column; align-items: center; gap: 8px; padding: 4px 2px; border: 0; text-align: center; }
  .hp .hp-serv-grid .hp-ico svg { width: 30px; height: 30px; }
  .hp .hp-serv-grid b { font-size: 12.5px; line-height: 1.25; hyphens: none; word-break: normal; }
  .hp .hp-serv-grid small { display: none; }
}

/* bestsellers on phones: a two-column grid of the first eight products and a "view all" button, no sideways scrolling */
.hp .hp-more { display: none; }
@media (max-width: 767.98px) {
  .hp .hp-scroll.hp-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; overflow: visible; margin: 0; padding: 0; scroll-snap-type: none; }
  .hp .hp-scroll.hp-cards > .hp-card { width: auto; min-width: 0; }
  .hp .hp-scroll.hp-cards > .hp-card:nth-child(n+9) { display: none; }
  .hp .hp-more { display: flex; align-items: center; justify-content: center; gap: 10px; height: 50px; margin-top: 18px; border: 1.5px solid var(--hp-accent); border-radius: 999px; background: #fff; color: var(--hp-accent); font-size: 15px; font-weight: 700; }
  .hp .hp-more:active, .hp .hp-more:hover { background: var(--hp-accent); color: #fff; }
  .hp .hp-more i { font-size: 12px; }
  .hp .hp-card { border-radius: 14px; }
  .hp .hp-img { height: 130px; }
  .hp .hp-body { padding: 10px 10px 12px; }
  .hp .hp-name { font-size: 13.5px; }
  .hp .hp-price strong { font-size: 16px; }
  .hp .hp-add { height: 38px; font-size: 13.5px; margin-top: 8px; }
}
/* frame-shape and wear-time tiles on phones: every tile visible, three per row, no sideways scrolling */
@media (max-width: 767.98px) {
  .hp .hp-scroll.hp-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px 10px; overflow: visible; margin: 0; padding: 0; scroll-snap-type: none; }
  .hp .hp-scroll.hp-tiles > .hp-shape { width: auto; min-width: 0; flex: none; gap: 8px; padding: 0 0 6px; font-size: 13px; line-height: 1.25; }
  .hp .hp-shape-i { height: 64px; border-radius: 12px; }
  .hp .hp-shape-i svg { width: 56px; }
  .hp .hp-shape-i.hp-lens svg { width: 38px; height: 38px; }
  .hp .hp-shape > span:last-child { padding: 0 2px; }
  .hp .hp-shapes .hp-arrow, .hp .hp-wear .hp-arrow { display: none; }
}
