/* Головна — каталог у стилі cart / product-page */

.home-page {
  --home-ink: #101828;
  --home-muted: #475467;
  --home-soft: #667085;
  --home-border: #e9edf5;
  --home-input-border: #d0d8e4;
  --home-surface: #fff;
  --home-bg: #f6f7fb;
  --home-accent: #3b68f6;
  --home-accent-ring: rgba(108, 142, 242, 0.22);
  --home-radius: 14px;
  --home-radius-sm: 10px;
  --home-shadow: 0 8px 24px rgba(16, 24, 40, 0.045);
  --home-shadow-hover: 0 12px 28px rgba(16, 24, 40, 0.09);

  background: var(--home-bg);
  padding: 16px 0 40px;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow: hidden;
}

.home-page .home-shell {
  position: relative;
}

.home-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 14px;
}

.home-section {
  margin-bottom: 24px;
}

.home-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.home-section-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--home-ink);
}

.home-section-subtitle {
  margin: 4px 0 0;
  color: var(--home-soft);
  font-size: 0.78rem;
}

.home-section-link {
  font-size: 0.82rem;
  color: #475467;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
}

.home-section-link:hover {
  color: #1d4ed8;
}

.home-hero-slider {
  margin-bottom: 16px;
  position: relative;
}

.home-hero-slider__track {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  background: #fff;
  touch-action: pan-y;
  user-select: none;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.home-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.home-hero-slide__image-link {
  display: block;
}

.home-hero-slide img {
  width: 100%;
  height: min(52vw, 360px);
  object-fit: cover;
  display: block;
}

.home-hero-slide__overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.58);
  color: #fff;
}

.home-hero-slide__overlay h2 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.home-hero-slide__overlay p {
  margin: 0;
  font-size: 0.84rem;
}

.home-hero-slide__cta {
  display: inline-flex;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 9px;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
}

.home-hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.home-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.12s ease;
}

.home-hero-dot.is-active {
  background: #4f46e5;
  transform: scale(1.2);
}

.home-hero-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.62);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  font-size: 1.1rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

.home-hero-nav:hover {
  background: rgba(15, 23, 42, 0.8);
}

.home-hero-nav--prev {
  left: 12px;
}

.home-hero-nav--next {
  right: 12px;
}

@media (min-width: 992px) {
  .home-hero-nav {
    display: inline-flex;
  }
}

.home-search-card {
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  padding: 10px;
}

.home-search-form {
  display: flex;
  gap: 8px;
}

.home-search-input {
  flex: 1;
  min-height: 42px;
  border: 1px solid #d0d8e4;
  border-radius: 10px;
  padding: 0 12px;
}

.home-search-btn {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  background: var(--home-accent);
  color: #fff;
  font-weight: 700;
}

.home-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 16px;
}

.home-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

@media (min-width: 920px) {
  .home-quick-links {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.home-quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  padding: 8px;
  text-decoration: none;
  color: inherit;
}

.home-quick-link.is-active {
  border-color: #8fa178;
  background: #eef4e7;
}

.home-quick-link__media {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-quick-link__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-quick-link__emoji {
  color: #94a3b8;
}

.home-quick-link__text strong {
  display: block;
  font-size: 0.8rem;
  color: var(--home-ink);
  line-height: 1.2;
}

.home-quick-link__text span {
  display: block;
  color: var(--home-soft);
  font-size: 0.72rem;
  line-height: 1.2;
  margin-top: 2px;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid #d0d8e4;
  background: #fff;
  color: #344054;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0 12px;
}

.home-chip.is-active {
  border-color: #a5b4fc;
  background: #eef2ff;
  color: #312e81;
}

.home-scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(168px, 220px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.home-product-card--row {
  min-height: 100%;
}

.home-gift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 760px) {
  .home-gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-product-card--gift .home-product-media {
  aspect-ratio: 16 / 10;
}

.home-interior-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-section--interior .home-section-subtitle {
  margin-bottom: 12px;
}

.home-section--catalog {
  scroll-margin-top: 86px;
}

.home-section--catalog .home-section-title {
  margin-bottom: 12px;
}

.home-section--catalog .home-section-subtitle {
  margin-bottom: 12px;
}

.home-catalog-cta__text {
  margin: 0 0 16px;
  color: var(--home-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 38rem;
}

/* Специфічність вища за Bootstrap `a` / `a:hover` (#3167eb), інакше лишається синій лінк */
.home-page a.home-catalog-cta__btn,
.home-page a.home-catalog-cta__btn:link,
.home-page a.home-catalog-cta__btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none !important;
  background: var(--hk-primary, #6b7a52) !important;
  color: #fff !important;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.12s ease;
}

.home-page a.home-catalog-cta__btn:hover,
.home-page a.home-catalog-cta__btn:focus {
  background: var(--hk-primary-hover, #55633f) !important;
  color: #fff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .home-interior-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-interior-card {
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 14px;
  overflow: hidden;
}

.home-interior-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.home-interior-card__caption {
  padding: 10px;
}

.home-interior-card__caption strong {
  display: block;
  margin: 0 0 4px;
  font-size: 0.86rem;
}

.home-interior-card__caption p {
  margin: 0;
  color: var(--home-soft);
  font-size: 0.78rem;
}

.home-hero {
  margin-bottom: 22px;
}

.home-search-meta {
  margin: -8px 0 16px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--home-soft);
}

.home-search-meta strong {
  color: var(--home-ink);
  font-weight: 700;
}

.home-search-meta-page {
  font-weight: 500;
  color: var(--home-soft);
}

a.home-admin-open-btn,
button.home-admin-open-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  border: 1px solid #c7d2fe !important;
  border-radius: 10px;
  background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%) !important;
  color: #312e81 !important;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    background-color 0.16s ease,
    transform 0.12s ease,
    box-shadow 0.16s ease;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.14) !important;
  text-decoration: none !important;
  appearance: none;
  -webkit-appearance: none;
}

a.home-admin-open-btn:hover,
button.home-admin-open-btn:hover {
  background: linear-gradient(180deg, #e0e7ff 0%, #c7d2fe 100%);
  border-color: #a5b4fc;
  transform: translateY(-1px);
}

.home-admin-open-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(99, 102, 241, 0.22),
    0 2px 8px rgba(79, 70, 229, 0.14);
}

.home-admin-open-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
}

.home-hero-title {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.home-hero-lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--home-soft);
  max-width: 42rem;
}

@media (max-width: 719px) {
  .home-hero-lead--catalog {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/* Фільтри: мобільний — іконки + чіп (нативний select поверх); десктоп — класичні поля */
.home-toolbar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 22px;
  padding: 12px 12px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  box-shadow: var(--home-shadow);
}

.home-page-indicator {
  margin: -8px 2px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--home-text-primary, #2b2b2b);
}

.home-field--filter {
  flex: 1 1 0;
  min-width: 0;
  gap: 0;
}

.home-label--desktop-only {
  display: none;
}

.home-filter-slot {
  position: relative;
  min-height: 88px;
  border-radius: var(--home-radius-sm);
  border: 1px solid var(--home-input-border);
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.home-filter-slot:hover {
  border-color: #b8c4d6;
}

.home-filter-slot:focus-within {
  border-color: #6c8ef2;
  box-shadow: 0 0 0 3px var(--home-accent-ring);
}

.home-chip-preview {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  text-align: center;
}

.home-chip-preview__icon {
  font-size: 1.35rem;
  color: var(--home-accent);
  line-height: 1;
}

.home-chip-preview__hint {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-soft);
}

.home-chip-preview__value {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--home-ink);
  line-height: 1.25;
  max-width: 100%;
  padding: 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-field--filter .home-select--toolbar {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 88px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  opacity: 0;
  cursor: pointer;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  box-shadow: none;
}

.home-field--filter .home-select--toolbar:focus {
  outline: none;
}

@media (min-width: 720px) {
  .home-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 12px;
    padding: 16px 18px;
  }

  .home-field--filter {
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: auto;
  }

  .home-label--desktop-only {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--home-soft);
  }

  .home-chip-preview {
    display: none;
  }

  .home-filter-slot {
    position: static;
    min-height: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }

  .home-filter-slot:hover {
    border-color: transparent;
  }

  .home-filter-slot:focus-within {
    box-shadow: none;
  }

  .home-field--filter .home-select--toolbar {
    position: static;
    opacity: 1;
    min-height: 44px;
    height: 44px;
    width: 100%;
    padding: 0 40px 0 14px;
    border-radius: var(--home-radius-sm);
    border: 1px solid var(--home-input-border);
    background-color: var(--home-surface);
    font-size: 0.90625rem;
    font-weight: 500;
    color: var(--home-ink);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23667085' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    transition:
      border-color 0.15s ease,
      box-shadow 0.15s ease;
  }

  .home-field--filter .home-select--toolbar:hover {
    border-color: #b8c4d6;
  }

  .home-field--filter .home-select--toolbar:focus {
    outline: none;
    border-color: #6c8ef2;
    box-shadow: 0 0 0 3px var(--home-accent-ring);
  }
}

/* Сітка товарів */
.home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .home-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (min-width: 900px) {
  .home-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

.home-product-card {
  display: flex;
  flex-direction: column;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

a.home-product-card:hover {
  box-shadow: var(--home-shadow-hover);
  transform: translateY(-3px);
  border-color: #dce3ee;
}

.home-product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: #f8fafc;
  overflow: hidden;
}

.home-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

a.home-product-card:hover .home-product-media img {
  transform: scale(1.04);
}

.home-product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #98a2b3;
  font-size: 2rem;
}

.home-product-body {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--home-border);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-product-name {
  margin: 0 0 8px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--home-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

a.home-product-card:hover .home-product-name {
  color: var(--home-accent);
}

.home-product-price {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.02em;
}

.home-product-price .price-display--promo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.home-product-price .price-display__compare {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--home-soft);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.home-product-price .price-display__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.home-product-price .price-display__current {
  font-size: 1rem;
  font-weight: 700;
  color: var(--home-accent);
  letter-spacing: -0.02em;
}

.home-product-price .price-display__badge {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #a6f4c5;
}

.home-product-price .price-display--plain {
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.02em;
}

.home-product-meta {
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--home-soft);
  line-height: 1.35;
}

.home-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--home-border);
  color: var(--home-soft);
  backdrop-filter: blur(6px);
}

.home-product-badge.is-stock {
  color: #027a48;
  background: rgba(236, 253, 243, 0.95);
  border-color: #a6f4c5;
}

.home-product-badge.is-order {
  color: #b54708;
  background: rgba(255, 247, 237, 0.95);
  border-color: #fed7aa;
  text-transform: none;
  letter-spacing: 0;
}

/* Порожній стан */
.home-empty {
  text-align: center;
  padding: 48px 20px;
  background: var(--home-surface);
  border: 1px dashed var(--home-input-border);
  border-radius: var(--home-radius);
  color: var(--home-soft);
  font-size: 0.9375rem;
}

/* Пагінація */
.home-pagination-wrap {
  display: flex;
  justify-content: center;
}

.home-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-pagination a,
.home-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--home-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--home-input-border);
  background: var(--home-surface);
  color: var(--home-muted);
  transition:
    background 0.12s ease,
    border-color 0.12s ease,
    color 0.12s ease;
}

.home-pagination a:hover {
  border-color: var(--home-accent);
  color: var(--home-accent);
  background: rgba(59, 104, 246, 0.06);
}

.home-pagination .is-active span,
.home-pagination .is-active a {
  background: var(--home-accent);
  border-color: var(--home-accent);
  color: #fff;
  pointer-events: none;
}

.home-pagination .is-disabled span {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f8fafc;
}

.home-pagination .is-ellipsis span {
  border: 0;
  background: transparent;
  min-width: 28px;
  color: var(--home-soft);
}

/* Holubka warm palette override */
.home-page {
  --home-ink: #2b2b2b;
  --home-muted: #5c5c5c;
  --home-soft: #9a9a9a;
  --home-border: #e4d8cc;
  --home-input-border: #e4d8cc;
  --home-surface: #ffffff;
  --home-bg: #f6f2ee;
  --home-accent: #6b7a52;
  --home-accent-ring: rgba(107, 122, 82, 0.22);
}

.home-page .home-shell {
  background: transparent;
}

.home-page .home-section-link {
  color: #6b7a52;
}

.home-page .home-section-link:hover {
  color: #55633f;
}

.home-page .home-search-card,
.home-page .home-quick-link,
.home-page .home-product-card,
.home-page .home-interior-card,
.home-page .home-hero-slider__track,
.home-page .home-toolbar {
  border-color: #efe7df;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.home-page .home-search-btn {
  background: #d4a373;
  color: #fff;
}

.home-page .home-search-btn:hover {
  background: #c38e5d;
}

.home-page .home-chip.is-active {
  border-color: #8fa178;
  background: #eef4e7;
  color: #55633f;
}

.home-page .home-hero-slide__cta {
  background: #d4a373;
  color: #fff;
}

.home-page .home-hero-slide__cta:hover {
  background: #c38e5d;
}

.home-page .home-hero-dot.is-active {
  background: #6b7a52;
}

.home-page .home-hero-nav {
  background: rgba(85, 99, 63, 0.75);
  border-color: rgba(239, 231, 223, 0.8);
}

.home-page .home-hero-nav:hover {
  background: rgba(85, 99, 63, 0.95);
}

.home-page .home-product-badge.is-stock {
  background: #e8f5e9;
  color: #4caf50;
  border-color: #cfead2;
}

.home-page .home-product-badge.is-order {
  background: #fff3e5;
  color: #ffb74d;
  border-color: #f5dec2;
}

/* Final responsive polish (mobile + desktop) */
.home-page {
  font-family: "Inter", "Nunito", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.home-page .home-shell {
  max-width: 1240px;
  padding: 0 16px;
}

.home-page .home-section {
  margin-bottom: 28px;
}

.home-page .home-section-title {
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.home-page .home-section-subtitle {
  margin-top: 6px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.home-page .home-section-link {
  font-size: 0.88rem;
}

.home-page .home-hero-slider {
  margin-bottom: 18px;
}

.home-page .home-hero-slide img {
  height: min(48vw, 500px);
}

.home-page .home-hero-slide__overlay {
  left: 18px;
  right: auto;
  bottom: 18px;
  max-width: min(430px, 74%);
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(30, 28, 25, 0.62) 0%, rgba(30, 28, 25, 0.75) 100%);
}

.home-page .home-hero-slide__overlay h2 {
  font-size: clamp(1.35rem, 2.7vw, 2.45rem);
  line-height: 1.08;
  margin-bottom: 8px;
}

.home-page .home-hero-slide__overlay p {
  font-size: 0.92rem;
  line-height: 1.45;
}

.home-page .home-hero-slide__cta {
  margin-top: 10px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.84rem;
  border-radius: 999px;
}

.home-page .home-hero-nav {
  width: 42px;
  height: 42px;
}

.home-page .home-search-card {
  border-radius: 16px;
  padding: 12px;
}

.home-page .home-search-input {
  min-height: 46px;
  font-size: 0.95rem;
}

.home-page .home-search-btn {
  min-height: 46px;
  min-width: 116px;
  font-size: 1rem;
}

.home-page .home-quick-links {
  gap: 12px;
}

.home-page .home-quick-link {
  padding: 10px;
  border-radius: 14px;
}

.home-page .home-quick-link__media {
  width: 46px;
  height: 46px;
}

.home-page .home-quick-link__text strong {
  font-size: 0.84rem;
}

.home-page .home-quick-link__text span {
  font-size: 0.74rem;
}

.home-page .home-chips {
  gap: 10px;
  margin-bottom: 18px;
}

.home-page .home-chip {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.84rem;
}

.home-page .home-scroll-row {
  grid-auto-columns: minmax(190px, 240px);
}

.home-page .home-grid {
  gap: 18px;
}

.home-page .home-product-card {
  border-radius: 16px;
}

.home-page .home-product-body {
  padding: 12px 12px 14px;
}

.home-page .home-product-name {
  font-size: 0.84rem;
  line-height: 1.35;
}

.home-page .home-product-price {
  font-size: 1rem;
}

.home-page .home-product-meta {
  font-size: 0.76rem;
}

.home-page .home-product-badge {
  top: 8px;
  left: 8px;
  font-size: 0.58rem;
  padding: 4px 7px;
}

@media (max-width: 991px) {
  .home-page .home-shell {
    padding: 0 12px;
  }

  .home-page .home-section {
    margin-bottom: 22px;
  }

  .home-page .home-section-head {
    align-items: flex-end;
    margin-bottom: 8px;
  }

  .home-page .home-section-title {
    font-size: 1.36rem;
  }

  .home-page .home-section-subtitle {
    font-size: 0.79rem;
  }

  .home-page .home-hero-slide img {
    aspect-ratio: 1.85 / 1;
    height: auto;
    max-height: none;
  }

  .home-page .home-hero-slide__overlay {
    left: 10px;
    right: 10px;
    max-width: none;
    padding: 10px 11px;
    border-radius: 11px;
  }

  .home-page .home-hero-slide__overlay h2 {
    font-size: clamp(1.15rem, 7vw, 1.8rem);
    margin-bottom: 4px;
  }

  .home-page .home-hero-slide__overlay p {
    font-size: 0.82rem;
  }

  .home-page .home-hero-slide__cta {
    min-height: 35px;
    font-size: 0.79rem;
  }

  .home-page .home-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .home-quick-link {
    padding: 8px;
  }

  .home-page .home-quick-link__media {
    width: 36px;
    height: 36px;
  }

  .home-page .home-quick-link__text strong {
    font-size: 0.78rem;
  }

  .home-page .home-quick-link__text span {
    font-size: 0.68rem;
  }

  .home-page .home-scroll-row {
    grid-auto-columns: minmax(150px, 170px);
    gap: 10px;
  }

  .home-page .home-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .home-page .home-gift-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-page .home-interior-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (min-width: 992px) {
  .home-page .home-section-subtitle {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #e9ddd1;
    background: #f3ece5;
    color: #766a5e;
    font-weight: 600;
    line-height: 1.2;
  }

  .home-page .home-section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px 4px 12px;
    border-radius: 999px;
    border: 1px solid #e9ddd1;
    background: #f3ece5;
    color: #5e5348;
    transition:
      background-color 0.15s ease,
      border-color 0.15s ease,
      color 0.15s ease;
  }

  .home-page .home-section-link::after {
    content: "\2192";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #e1d4c7;
    background: #fff;
    color: #5e5348;
    line-height: 1;
    transition:
      transform 0.15s ease,
      border-color 0.15s ease,
      background-color 0.15s ease;
  }

  .home-page .home-section-link:hover {
    color: #4f453b;
    border-color: #dccdbf;
    background: #efe5db;
  }

  .home-page .home-section-link:hover::after {
    transform: translateX(1px);
    border-color: #d7c5b4;
    background: #fffdfa;
  }
}
