/** Shopify CDN: Minification failed

Line 20:11 Expected identifier but found whitespace
Line 20:13 Unexpected "{"
Line 20:23 Expected ":"
Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:25 Expected ":"
Line 22:9 Expected identifier but found whitespace
Line 22:11 Unexpected "{"
Line 22:21 Expected ":"
Line 23:7 Expected identifier but found whitespace
... and 25 more hidden warnings

**/
/* ============================================================
   PetLook theme — premium DTC style
   ============================================================ */
:root {
  --accent: {{ settings.color_accent }};
  --accent-2: {{ settings.color_accent_2 }};
  --text: {{ settings.color_text }};
  --bg: {{ settings.color_background }};
  --bg-alt: {{ settings.color_background_alt }};
  --btn: {{ settings.color_button }};
  --btn-text: {{ settings.color_button_text }};
  --btn-radius: {{ settings.button_radius }}px;
  --card-radius: {{ settings.card_radius }}px;
  --heading-font: {{ settings.heading_font_family }};
  --heading-scale: {{ settings.heading_scale | divided_by: 100.0 }};
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --width: 1280px;
  --gutter: 24px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.page-width { max-width: var(--width); margin: 0 auto; padding: 0 var(--gutter); }
.page-width-narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 72px 0; }
.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--btn-radius);
  font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  background: var(--btn); color: var(--btn-text);
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
  text-align: center; border: 2px solid transparent; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); opacity: .92; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--dark { background: var(--text); color: #fff; }
.btn--secondary { background: var(--bg-alt); color: var(--text); }
.btn--outline { background: transparent; border-color: currentColor; color: var(--text); }
.btn--large { padding: 17px 38px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Section heads ---------- */
.section__head { margin-bottom: 44px; }
.section__head--center { text-align: center; }
.section__eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px; font-weight: 700;
  color: var(--accent); margin: 0 0 12px;
}
.section__title { font-size: calc(40px * var(--heading-scale)); }
.section__title--lg { font-size: calc(52px * var(--heading-scale)); }
.section__cta { text-align: center; margin-top: 44px; }

/* ---------- Announcement bar ---------- */
.announcement-bar { overflow: hidden; font-size: 13px; font-weight: 600; }
.announcement-bar__track {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; padding: 10px 16px; text-align: center;
}
.announcement-bar__item { white-space: nowrap; }
@media (max-width: 749px) {
  .announcement-bar__track { animation: marquee 18s linear infinite; justify-content: flex-start; }
  .announcement-bar__track::after { content: ''; }
}

/* ---------- Header ---------- */
.header { background: var(--bg); border-bottom: 1px solid rgba(0,0,0,.06); position: relative; z-index: 50; }
.header[data-sticky="true"] { position: sticky; top: 0; }
.header__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 16px; padding: 16px var(--gutter); min-height: 64px;
}
.header__logo { justify-self: center; }
.header__logo img { max-height: 40px; width: auto; }
.header__logo-text { font-family: var(--heading-font); font-weight: 900; font-size: 26px; letter-spacing: -0.03em; }
.header__nav { display: flex; gap: 28px; align-items: center; grid-column: 1; }
.header__nav-item { position: relative; }
.header__nav-link { font-weight: 600; font-size: 15px; padding: 8px 0; display: inline-block; transition: color .15s; }
.header__nav-link:hover, .header__nav-link.is-active { color: var(--accent); }
.header__dropdown {
  position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1); border-radius: 12px; padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s;
}
.header__nav-item.has-dropdown:hover .header__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.header__dropdown-link { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; }
.header__dropdown-link:hover { background: var(--bg-alt); }
.header__actions { display: flex; gap: 6px; align-items: center; justify-self: end; grid-column: 3; }
.header__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%; position: relative; color: var(--text);
  transition: background .15s;
}
.header__icon:hover { background: var(--bg-alt); }
.header__icon svg { width: 22px; height: 22px; }
.header__menu-toggle { display: none; grid-column: 1; justify-self: start; }
.header__cart-count {
  position: absolute; top: 4px; right: 4px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* Search drawer */
.search-drawer {
  position: absolute; top: 100%; left: 0; right: 0; background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.08); padding: 24px 0;
  transform: translateY(-120%); transition: transform .3s ease; z-index: 40;
}
.search-drawer.is-open { transform: translateY(0); }
.search-drawer__inner { display: flex; align-items: center; gap: 16px; }
.search-drawer__form { flex: 1; display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--text); padding-bottom: 8px; }
.search-drawer__input { flex: 1; border: none; font-size: 22px; outline: none; font-family: var(--heading-font); background: transparent; }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.mobile-menu.is-open { visibility: visible; }
.mobile-menu__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); opacity: 0; transition: opacity .3s; }
.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: 84%; max-width: 360px;
  background: #fff; transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column; padding: 20px;
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-menu__title { font-family: var(--heading-font); font-weight: 900; font-size: 22px; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__link { padding: 14px 0; font-size: 18px; font-weight: 600; border-bottom: 1px solid rgba(0,0,0,.06); }
.mobile-menu__link--child { font-size: 15px; font-weight: 500; padding-left: 16px; opacity: .8; }
.mobile-menu__foot { margin-top: auto; }

/* ---------- Banner / hero ---------- */
.banner { position: relative; display: flex; align-items: center; overflow: hidden; }
.banner--medium { min-height: 480px; }
.banner--large { min-height: 640px; }
.banner--full { min-height: 92vh; }
.banner__media { position: absolute; inset: 0; }
.banner__image { width: 100%; height: 100%; object-fit: cover; }
.banner__image--mobile { display: none; }
.banner__overlay { position: absolute; inset: 0; background: #000; }
.banner__content { position: relative; width: 100%; z-index: 2; }
.banner__box { max-width: 560px; }
.banner--text-center .banner__box { margin: 0 auto; text-align: center; }
.banner--text-right .banner__box { margin-left: auto; text-align: right; }
.banner--placeholder { background: var(--bg-alt); }
.banner__subheading { text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 700; margin: 0 0 16px; }
.banner__heading { font-size: calc(68px * var(--heading-scale)); margin: 0 0 18px; }
.banner__text { font-size: 19px; margin: 0 0 24px; opacity: .95; }
.banner__text p { margin: 0; }
.banner__rating { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; margin-bottom: 28px; }
.banner--text-center .banner__rating { justify-content: center; }
.banner__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.banner--text-center .banner__buttons { justify-content: center; }
.stars { display: inline-flex; gap: 2px; color: #FFB100; }
.stars svg { width: 18px; height: 18px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; padding: 14px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee__group { display: flex; gap: 56px; padding-right: 56px; }
.marquee__item { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.marquee__item svg { width: 20px; height: 20px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Multicolumn / benefits ---------- */
.multicolumn__grid { display: grid; gap: 32px; }
.multicolumn__grid--2 { grid-template-columns: repeat(2, 1fr); }
.multicolumn__grid--3 { grid-template-columns: repeat(3, 1fr); }
.multicolumn__grid--4 { grid-template-columns: repeat(4, 1fr); }
.multicolumn__item { text-align: center; }
.multicolumn__icon {
  width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  color: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.multicolumn__icon svg { width: 34px; height: 34px; }
.multicolumn__image { margin: 0 auto 18px; }
.multicolumn__image img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto; }
.multicolumn__title { font-size: 20px; margin-bottom: 8px; }
.multicolumn__text { font-size: 15px; opacity: .8; }
.multicolumn__text p { margin: 0; }

/* ---------- Image with text ---------- */
.image-text__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.image-text--right .image-text__media { order: 2; }
.image-text__media { position: relative; border-radius: var(--card-radius); overflow: hidden; }
.image-text__img { width: 100%; border-radius: var(--card-radius); }
.image-text__badge {
  position: absolute; top: 18px; left: 18px; background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 700; padding: 7px 14px; border-radius: var(--radius-pill);
}
.image-text__rte { font-size: 17px; opacity: .85; margin: 18px 0; }
.image-text__rte p { margin: 0 0 12px; }
.image-text__checklist { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.image-text__checklist li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 16px; }
.image-text__checklist svg { width: 22px; height: 22px; color: var(--accent-2); flex-shrink: 0; }

/* ---------- Product grid / cards ---------- */
.product-grid { display: grid; gap: 28px; }
.product-grid--2 { grid-template-columns: repeat(2, 1fr); }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-grid--5 { grid-template-columns: repeat(5, 1fr); }

.card-product { position: relative; }
.card-product__media {
  position: relative; border-radius: var(--card-radius); overflow: hidden;
  background: var(--bg-alt); aspect-ratio: 1; margin-bottom: 14px;
}
.card-product__image { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .3s ease; }
.card-product__image--secondary { position: absolute; inset: 0; opacity: 0; }
.card-product:hover .card-product__image--primary { transform: scale(1.05); }
.card-product:hover .card-product__image--secondary { opacity: 1; }
.card-product__tag {
  position: absolute; top: 12px; left: 12px; font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .03em;
}
.card-product__tag--sale { background: var(--accent); color: #fff; }
.card-product__tag--soldout { background: #888; color: #fff; }
.card-product__vendor { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; opacity: .6; margin: 0 0 4px; }
.card-product__title { font-family: var(--body-font); font-size: 16px; font-weight: 600; margin: 0 0 6px; letter-spacing: 0; }
.card-product--sold-out .card-product__media { opacity: .7; }

/* ---------- Price ---------- */
.price { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; }
.price__compare { opacity: .5; font-weight: 400; }
.price__sale, .price--on-sale .price__sale { color: var(--accent); }
.price__badge { background: var(--accent); color: #fff; font-size: 12px; padding: 3px 8px; border-radius: var(--radius-pill); }

/* ---------- Collection list ---------- */
.collection-list__grid { display: grid; gap: 24px; }
.collection-list__grid--2 { grid-template-columns: repeat(2, 1fr); }
.collection-list__grid--3 { grid-template-columns: repeat(3, 1fr); }
.collection-list__grid--4 { grid-template-columns: repeat(4, 1fr); }
.collection-card { display: block; position: relative; }
.collection-card__media { border-radius: var(--card-radius); overflow: hidden; aspect-ratio: 1; background: var(--bg-alt); }
.collection-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.collection-card:hover .collection-card__media img { transform: scale(1.06); }
.collection-card__title {
  position: absolute; bottom: 16px; left: 16px; right: 16px; color: #fff;
  font-family: var(--heading-font); font-weight: 800; font-size: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}

/* ---------- Featured product ---------- */
.featured-product__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.featured-product__media { position: relative; border-radius: var(--card-radius); overflow: hidden; background: #fff; }
.featured-product__media img { width: 100%; }
.featured-product__badge {
  position: absolute; top: 18px; left: 18px; background: var(--accent); color: #fff;
  font-weight: 700; padding: 8px 16px; border-radius: var(--radius-pill); font-size: 14px;
}
.featured-product__title { font-size: calc(40px * var(--heading-scale)); margin: 8px 0 14px; }
.featured-product__rating { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.featured-product__text { font-size: 17px; opacity: .85; margin: 16px 0; }
.featured-product__features { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 12px; }
.featured-product__features li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.featured-product__features svg { width: 20px; height: 20px; color: var(--accent); }
.featured-product__form { margin: 24px 0 12px; }
.featured-product__link { display: inline-block; font-weight: 600; text-decoration: underline; opacity: .8; }
.featured-product__trust { display: flex; align-items: center; gap: 8px; font-size: 14px; opacity: .7; margin-top: 14px; }
.featured-product__trust svg { width: 18px; height: 18px; }

/* ---------- Testimonials ---------- */
.testimonials__rating { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; margin-top: 12px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { margin: 0; background: rgba(255,255,255,.06); border-radius: var(--card-radius); padding: 28px; }
.testimonial-card__stars { color: #FFB100; display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-card__stars svg { width: 18px; height: 18px; }
.testimonial-card__quote { font-size: 17px; line-height: 1.5; margin: 0 0 18px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.testimonial-card__author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-card__author span { display: flex; flex-direction: column; }
.testimonial-card__author em { opacity: .7; font-style: normal; }

/* ---------- Rich text CTA ---------- */
.rich-text__wrap { max-width: 720px; }
.rich-text--center .rich-text__wrap { margin: 0 auto; text-align: center; }
.rich-text__body { font-size: 18px; margin: 18px 0 28px; opacity: .95; }
.rich-text__body p { margin: 0 0 12px; }

/* ---------- FAQ ---------- */
.faq__wrap { max-width: 820px; margin: 0 auto; }
.faq__head { text-align: center; margin-bottom: 40px; }
.faq__list { display: grid; gap: 14px; }
.faq__item { background: #fff; border-radius: var(--card-radius); padding: 4px 24px; box-shadow: 0 4px 18px rgba(0,0,0,.04); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-weight: 700; font-size: 18px; cursor: pointer; list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon { transition: transform .25s; flex-shrink: 0; color: var(--accent); }
.faq__icon svg { width: 22px; height: 22px; }
.faq__item[open] .faq__icon { transform: rotate(180deg); }
.faq__answer { padding: 0 0 20px; opacity: .85; }
.faq__answer p { margin: 0 0 10px; }

/* ---------- Product page ---------- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding-top: 48px; padding-bottom: 72px; }
.product__main-image { border-radius: var(--card-radius); overflow: hidden; background: var(--bg-alt); }
.product__main-image img { width: 100%; }
.product__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.product__thumb { width: 76px; height: 76px; border-radius: 12px; overflow: hidden; border: 2px solid transparent; padding: 0; }
.product__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product__thumb.is-active { border-color: var(--text); }
.product__vendor { text-transform: uppercase; letter-spacing: .08em; font-size: 13px; opacity: .6; margin: 0 0 8px; }
.product__title { font-size: calc(38px * var(--heading-scale)); margin: 0 0 14px; }
.product__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 14px; }
.product__rating-text { opacity: .7; }
.product__price { font-size: 24px; margin-bottom: 18px; }
.product__price .price { font-size: 24px; }
.product__short-desc { font-size: 16px; opacity: .85; margin-bottom: 26px; }
.product__option { margin-bottom: 20px; }
.product__option-label { display: block; font-weight: 700; margin-bottom: 10px; }
.product__option-values { display: flex; gap: 10px; flex-wrap: wrap; }
.product__swatch { position: relative; }
.product__swatch input { position: absolute; opacity: 0; }
.product__swatch span {
  display: inline-flex; align-items: center; justify-content: center; padding: 11px 20px;
  border: 2px solid rgba(0,0,0,.15); border-radius: var(--radius-pill); font-weight: 600; transition: .15s;
}
.product__swatch input:checked + span { border-color: var(--text); background: var(--text); color: #fff; }
.product__quantity { margin-bottom: 18px; }
.product__quantity label { display: block; font-weight: 700; margin-bottom: 10px; }
.product__add { margin-bottom: 12px; }
.product__trust { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.product__trust li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.product__trust svg { width: 22px; height: 22px; color: var(--accent-2); }
.product__accordion { border-top: 1px solid rgba(0,0,0,.1); margin-top: 12px; }
.product__accordion details { border-bottom: 1px solid rgba(0,0,0,.1); }
.product__accordion summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-weight: 700; font-size: 17px; cursor: pointer; list-style: none;
}
.product__accordion summary::-webkit-details-marker { display: none; }
.product__accordion details[open] .faq__icon { transform: rotate(180deg); }
.product__rte { padding-bottom: 18px; opacity: .85; }

/* Quantity selector */
.qty-selector { display: inline-flex; align-items: center; border: 2px solid rgba(0,0,0,.15); border-radius: var(--radius-pill); overflow: hidden; }
.qty-selector__btn { width: 44px; height: 44px; font-size: 20px; font-weight: 600; color: var(--text); }
.qty-selector__input { width: 48px; text-align: center; border: none; font-size: 16px; font-weight: 600; outline: none; -moz-appearance: textfield; background: transparent; }
.qty-selector__input::-webkit-outer-spin-button, .qty-selector__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-selector--sm .qty-selector__btn { width: 34px; height: 34px; font-size: 16px; }
.qty-selector--sm .qty-selector__input { width: 36px; }

/* ---------- Collection page ---------- */
.collection-banner { text-align: center; padding: 56px 0 24px; }
.collection-banner__title { font-size: calc(48px * var(--heading-scale)); margin: 0 0 12px; }
.collection-banner__desc { max-width: 620px; margin: 0 auto; opacity: .8; }
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0 28px; flex-wrap: wrap; gap: 12px; }
.collection-toolbar__count { opacity: .7; margin: 0; font-size: 14px; }
.collection-toolbar__sort { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.collection-toolbar__sort select { padding: 9px 14px; border: 2px solid rgba(0,0,0,.12); border-radius: var(--radius-pill); font-weight: 600; font-family: inherit; }
.collection-empty { text-align: center; padding: 60px 0; opacity: .7; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin: 56px 0 0; flex-wrap: wrap; }
.pagination__link { min-width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 600; padding: 0 10px; transition: .15s; }
.pagination__link:hover { background: var(--bg-alt); }
.pagination__link.is-current { background: var(--text); color: #fff; }

/* ---------- Cart ---------- */
.cart-page { padding: 56px 0 80px; }
.cart-page__title { font-size: calc(42px * var(--heading-scale)); margin-bottom: 28px; }
.cart-progress { background: var(--bg-alt); border-radius: var(--card-radius); padding: 18px 22px; margin-bottom: 28px; }
.cart-progress__text { margin: 0 0 12px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.cart-progress__text svg { width: 20px; height: 20px; color: var(--accent-2); }
.cart-progress__bar { height: 8px; background: rgba(0,0,0,.1); border-radius: 4px; overflow: hidden; }
.cart-progress__bar span { display: block; height: 100%; background: var(--accent-2); transition: width .4s; }
.cart-form { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.cart-items { display: grid; gap: 20px; }
.cart-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.08); }
.cart-item__media img { border-radius: 12px; width: 96px; height: 96px; object-fit: cover; }
.cart-item__title { font-weight: 700; font-size: 16px; }
.cart-item__variant { opacity: .6; font-size: 14px; margin: 4px 0; }
.cart-item__price { font-weight: 600; }
.cart-item__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item__remove { font-size: 13px; opacity: .6; text-decoration: underline; }
.cart-item__line-price { font-weight: 700; }
.cart-summary { background: var(--bg-alt); border-radius: var(--card-radius); padding: 28px; position: sticky; top: 90px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 20px; margin-bottom: 8px; }
.cart-summary__note { font-size: 13px; opacity: .6; margin: 0 0 20px; }
.cart-summary__continue { display: block; text-align: center; margin-top: 14px; font-weight: 600; text-decoration: underline; }
.cart-empty { text-align: center; padding: 80px 0; }
.cart-empty p { font-size: 22px; margin-bottom: 24px; }

/* ---------- Footer ---------- */
.footer { background: var(--text); color: #fff; padding: 64px 0 28px; margin-top: 0; }
.footer__top { display: grid; grid-template-columns: 1.3fr 2fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__logo-text { font-family: var(--heading-font); font-weight: 900; font-size: 28px; }
.footer__tagline { opacity: .7; margin: 14px 0 20px; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; transition: .15s; }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); }
.footer__social svg { width: 20px; height: 20px; }
.footer__menus { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__heading { font-family: var(--body-font); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__list a { opacity: .7; font-size: 15px; transition: opacity .15s; }
.footer__list a:hover { opacity: 1; }
.footer__col--newsletter { grid-column: span 1; }
.footer__news-text { opacity: .7; font-size: 14px; margin-bottom: 14px; }
.footer__news-row { display: flex; gap: 8px; }
.footer__news-row input { flex: 1; padding: 12px 16px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; outline: none; }
.footer__news-row input::placeholder { color: rgba(255,255,255,.5); }
.footer__news-success { color: var(--accent-2); font-weight: 600; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 16px; }
.footer__copy { opacity: .6; font-size: 14px; margin: 0; }
.footer__payment { display: flex; gap: 6px; flex-wrap: wrap; }
.footer__payment-icon { height: 24px; width: auto; }

/* ---------- Account / forms ---------- */
.account-page { padding: 56px 0 80px; }
.account-page__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.account-page__title { font-size: calc(40px * var(--heading-scale)); margin: 0 0 24px; }
.account-card { background: var(--bg-alt); border-radius: var(--card-radius); padding: 32px; margin-bottom: 24px; }
.account-card h2 { font-size: 22px; margin-bottom: 18px; }
.account-card label { display: block; font-weight: 600; margin: 14px 0 6px; font-size: 14px; }
.account-card input, .account-card select { width: 100%; padding: 13px 16px; border: 2px solid rgba(0,0,0,.12); border-radius: 12px; font-size: 15px; font-family: inherit; outline: none; }
.account-card input:focus, .account-card select:focus { border-color: var(--text); }
.account-card .btn { margin-top: 20px; }
.account-link { color: var(--accent); font-weight: 600; text-decoration: underline; font-size: 14px; display: inline-block; margin: 12px 0; }
.account-alt { margin-top: 18px; font-size: 14px; text-align: center; }
.account-alt a { color: var(--accent); font-weight: 600; }
.account-errors, .password-page__error { background: #ffe9e4; color: #b3201a; padding: 12px 16px; border-radius: 12px; margin-bottom: 16px; font-size: 14px; }
.account-success { color: var(--accent-2); font-weight: 600; margin-bottom: 14px; }
.account-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.account-sidebar { background: var(--bg-alt); border-radius: var(--card-radius); padding: 28px; }
.account-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.account-table th, .account-table td { text-align: left; padding: 12px; border-bottom: 1px solid rgba(0,0,0,.08); }
.account-table th { font-weight: 700; }
.account-address { line-height: 1.5; margin: 12px 0; opacity: .85; }

/* ---------- Password page ---------- */
.password-page { min-height: 100vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.password-page__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.password-page__inner { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 480px; }
.password-page__logo { margin: 0 auto 24px; }
.password-page__brand { font-family: var(--heading-font); font-weight: 900; font-size: 40px; margin-bottom: 16px; }
.password-page__heading { font-size: 34px; margin-bottom: 14px; }
.password-page__text { opacity: .9; margin-bottom: 28px; }
.password-page__form { display: flex; gap: 10px; justify-content: center; max-width: 380px; margin: 0 auto 28px; }
.password-page__form input { flex: 1; padding: 13px 18px; border-radius: var(--radius-pill); border: none; outline: none; }
.password-page__newsletter { border-top: 1px solid rgba(255,255,255,.2); padding-top: 24px; }
.password-page__newsletter p { margin-bottom: 14px; }
.password-page .footer__news-row { max-width: 380px; margin: 0 auto; }

/* ---------- Page / article / blog ---------- */
.page-section { padding: 56px 0 80px; }
.page-section__title { font-size: calc(44px * var(--heading-scale)); margin-bottom: 28px; text-align: center; }
.rte p { margin: 0 0 16px; } .rte h2 { margin: 28px 0 14px; } .rte h3 { margin: 24px 0 12px; }
.rte ul, .rte ol { margin: 0 0 16px; padding-left: 22px; } .rte a { color: var(--accent); text-decoration: underline; }
.rte img { border-radius: var(--card-radius); margin: 20px 0; }

.blog { padding: 56px 0 80px; }
.blog__title { font-size: calc(44px * var(--heading-scale)); text-align: center; margin-bottom: 44px; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.article-card__media { border-radius: var(--card-radius); overflow: hidden; aspect-ratio: 16/10; background: var(--bg-alt); margin-bottom: 16px; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-card:hover .article-card__media img { transform: scale(1.05); }
.article-card__meta { font-size: 13px; opacity: .6; margin: 0 0 8px; }
.article-card__title { font-size: 22px; margin-bottom: 10px; }
.article-card__excerpt { opacity: .8; font-size: 15px; margin-bottom: 12px; }
.article-card__link { color: var(--accent); font-weight: 600; }

.article { padding: 56px 0 80px; }
.article__header { text-align: center; margin-bottom: 32px; }
.article__meta { font-size: 14px; opacity: .6; margin-bottom: 12px; }
.article__title { font-size: calc(48px * var(--heading-scale)); }
.article__image { border-radius: var(--card-radius); overflow: hidden; margin-bottom: 32px; }
.article__content { font-size: 17px; }
.article__back { display: inline-block; margin-top: 32px; font-weight: 600; color: var(--accent); }

/* ---------- Search / 404 ---------- */
.search-page { padding: 56px 0 80px; }
.search-page__title { font-size: calc(44px * var(--heading-scale)); margin-bottom: 24px; }
.search-page__form { display: flex; gap: 10px; max-width: 560px; margin-bottom: 32px; }
.search-page__form input { flex: 1; padding: 14px 20px; border: 2px solid rgba(0,0,0,.12); border-radius: var(--radius-pill); font-size: 16px; outline: none; }
.search-page__count { opacity: .7; margin-bottom: 24px; }
.search-page__empty { opacity: .7; }
.search-result-card { display: block; background: var(--bg-alt); border-radius: var(--card-radius); padding: 22px; }
.search-result-card h3 { margin-bottom: 8px; }

.error-404 { text-align: center; padding: 100px 0; }
.error-404__paw { color: var(--accent); display: inline-block; margin-bottom: 16px; }
.error-404__paw svg { width: 64px; height: 64px; }
.error-404__title { font-size: calc(56px * var(--heading-scale)); margin-bottom: 14px; }
.error-404__text { opacity: .7; margin-bottom: 28px; font-size: 18px; }

/* ---------- Cart notification ---------- */
.cart-notification {
  position: fixed; top: 80px; right: 20px; background: #fff; border-radius: var(--card-radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.18); padding: 20px 24px; z-index: 200; max-width: 320px;
  transform: translateX(120%); transition: transform .35s ease;
}
.cart-notification:not(.hidden) { transform: translateX(0); }
.cart-notification__text { font-weight: 700; margin: 0 0 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 990px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__menus { grid-template-columns: repeat(2, 1fr); }
  .account-layout { grid-template-columns: 1fr; }
  .cart-form { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 749px) {
  .section { padding: 48px 0; }
  .section__title { font-size: calc(30px * var(--heading-scale)); }
  .section__title--lg { font-size: calc(36px * var(--heading-scale)); }
  .header__nav { display: none; }
  .header__menu-toggle { display: inline-flex; }
  .header__icon--account { display: none; }
  .banner__heading { font-size: calc(40px * var(--heading-scale)); }
  .banner--large, .banner--full { min-height: 520px; }
  .banner__image--mobile { display: block; }
  .banner__image:not(.banner__image--mobile) { display: none; }
  .banner--text-right .banner__box, .banner__box { text-align: left; }
  .image-text__wrap { grid-template-columns: 1fr; gap: 32px; }
  .image-text--right .image-text__media { order: 0; }
  .featured-product__wrap { grid-template-columns: 1fr; gap: 32px; }
  .product { grid-template-columns: 1fr; gap: 28px; padding-top: 24px; }
  .product-grid--3, .product-grid--4, .product-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .multicolumn__grid--3, .multicolumn__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .collection-list__grid--3, .collection-list__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: 1fr; }
  .footer__menus { grid-template-columns: 1fr; }
  .product-grid { gap: 16px; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__actions { grid-column: 2; flex-direction: row; align-items: center; justify-content: space-between; }
}
