/* =====================================================
   TASTY COFFEE — UI Override (May 2026 design audit fix)
   ===================================================== */

:root {
  --tc-black: #0a0a0a;
  --tc-white: #ffffff;
  --tc-bg: #f5f5f7;
  --tc-bg-secondary: #f0f2f5;
  --tc-bg-tertiary: #e8eaed;
  --tc-accent: #d4553a;
  --tc-border: #ebebeb;
  --tc-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --tc-shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --tc-shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --tc-shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --tc-radius-md: 12px;
  --tc-radius-lg: 16px;
  --tc-radius-xl: 24px;
  --tc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html, body { background: var(--tc-bg) !important; color: var(--tc-black); font-family: var(--tc-font-body); line-height: 1.6; }
::selection { background: var(--tc-accent); color: white; }

/* ── Body wrap: sticky footer + full-height on mobile (matches original) ── */
.body-wrap { display: flex; flex-direction: column; min-height: 100vh; }
.body-wrap > main { flex: 1 0 auto; }
.body-wrap > footer { flex-shrink: 0; }
@media screen and (max-width: 1099px) {
  .body-wrap { min-height: 100dvh; }
}

/* ── Mobile hamburger menu panel (slide from left, solid bg) ── */
@media screen and (max-width: 1099px) {
  #header.open-menu .header-group {
    background-color: #F5F5F7;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    height: 100%;
    min-width: 300px;
    max-width: 100%;
    align-items: flex-start;
  }
}

/* ── FIX: Tailwind preflight is OFF → browser-default blue links override .text-black/60.
   Reset link colors so they inherit / be black across the site.
   EXCEPTION: links styled as buttons (bg-black, tc-btn-pay, etc.) keep their explicit color. ── */
a:not([class*="bg-"]):not([class*="text-"]):not([class*="btn"]):not([class*="tc-badge"]):not([class*="tc-hashtag-tag"]):not([class*="tc-catalog-chip"]):not([class*="current-price-val"]) { color: inherit; text-decoration: none; }
a:hover:not([class*="bg-"]):not([class*="text-"]):not([class*="btn"]) { color: inherit; }
a.bg-black, a.tc-btn-pay, a.buy-btn, a[class*="btn"] { color: #fff !important; }
a.bg-gray-100, a.bg-gray-50 { color: #000 !important; }

/* ── Site main bg gray, content blocks white ── */
header.sticky.top-0 { background: #F5F5F7 !important; backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); }
main { background: transparent; }
section, .tc-section { background: transparent; }

/* Cards always white */
.tc-tile, .tc-card, .tc-product-card { background: #fff !important; border-radius: var(--tc-radius-xl); }

/* ── Catalog page: site gray, sidebar+grid on white tiles ── */
main.tc-catalog-page { background: var(--tc-bg) !important; }

/* Catalog quick-filter chips — gray/black/white only, no blue */
.tc-catalog-chip,
.tc-hashtag-tag,
.tc-tag,
.tc-catalog-filter-card a { color: rgba(0,0,0,0.7) !important; }
.tc-catalog-chip.bg-black, .tc-hashtag-tag.active, .tc-tag.active, .tc-catalog-filter-card a.bg-black { color: #fff !important; }
.tc-tag.active .tc-tag__hashtag,
.tc-hashtag-tag.active .tc-tag__hashtag { color: rgba(255,255,255,0.5) !important; }

/* Catalog sidebar category links — neutral grayscale only */
.tc-catalog-sidebar { position: relative; z-index: 40; }
.tc-catalog-sidebar a { color: rgba(0,0,0,0.65); }
.tc-catalog-sidebar a:hover { background: #f5f5f7; }
.tc-catalog-sidebar a.bg-black { color: #fff !important; }

/* ── Sidebar filter group rows + tooltip indicator ── */
.tc-filter-group { display: block; margin-bottom: 1.75rem; }
.tc-filter-group + .tc-filter-group { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 1.5rem; }
.tc-filter-group__title { display:flex; align-items:center; gap:6px; font-size:11px; color:rgba(0,0,0,0.4); font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:.75rem; }
.tc-filter-group__hint { width:14px; height:14px; border-radius:50%; background:#e5e5e5; color:#000; font-size:10px; font-weight:700; display:inline-flex; align-items:center; justify-content:center; cursor:help; position:relative; }
.tc-filter-group__hint:hover::after {
  content: attr(data-tip); position:absolute; left:0; top:calc(100% + 8px); transform:none;
  background:#000; color:#fff; padding:8px 11px; border-radius:8px; font-size:11px; line-height:1.45; white-space:normal; width:220px; max-width:60vw;
  box-shadow:0 6px 24px rgba(0,0,0,.18); z-index:60; pointer-events:none;
}

/* ── Hero banners stay full-bleed, no gray-bg leak ── */
.tc-hero-tiles { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
@media (max-width: 768px) { .tc-hero-tiles { grid-template-columns: 1fr; } }

/* ── "Сорта недели": 5 cards in 1 row on desktop ── */
.tc-weekly-grid { display:grid; grid-template-columns: repeat(5, 1fr); gap:24px; }
@media (max-width: 1280px) { .tc-weekly-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1024px) { .tc-weekly-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 758px)  { .tc-weekly-grid { grid-template-columns: repeat(2, 1fr); gap:12px; } }

/* ── "Сорта недели" yangi: 2 ta karta + slider ── */
.tc-weekly-with-slider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
  gap: 24px;
  align-items: stretch;
}
.tc-weekly-card { display: flex; min-width: 0; }
.tc-weekly-card > * { width: 100%; }
@media (max-width: 1024px) {
  .tc-weekly-with-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .tc-weekly-with-slider .tc-promo-slider {
    grid-column: 1 / -1;
    min-height: 320px;
  }
}
@media (max-width: 758px) {
  .tc-weekly-with-slider { grid-template-columns: 1fr; gap: 16px; }
  .tc-weekly-with-slider .tc-promo-slider { min-height: 280px; }
}

/* Promo slider (yonidagi 3 slidedan iborat) - original swiper-slide style saqlanadi */
.tc-promo-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  display: block;
}
.tc-promo-slider .tc-promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  border-radius: 24px;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  z-index: 0;
}
.tc-promo-slider .tc-promo-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
/* Rasm orqada ko'rinishi uchun: -z-10 ni override qilamiz */
.tc-promo-slider .tc-promo-slide picture,
.tc-promo-slider .tc-promo-slide picture img {
  z-index: 0 !important;
  border-radius: 24px;
}
/* Matnlar rasmdan ustida turishi uchun */
.tc-promo-slider .tc-promo-slide > p,
.tc-promo-slider .tc-promo-slide > a,
.tc-promo-slider .tc-promo-slide > button {
  position: relative;
  z-index: 2;
}
.tc-promo-slider .tc-btn.btn-white {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .05em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: opacity .2s;
  position: relative;
  z-index: 2;
}
.tc-promo-slider .tc-btn.btn-white:hover { opacity: .85; }

.tc-promo-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.tc-promo-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: width .2s, background .2s;
}
.tc-promo-dots button.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* Slider navigation arrows */
.tc-promo-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: opacity .2s, transform .2s;
  color: #000;
}
.tc-promo-arrow:hover { opacity: .9; transform: scale(1.05); }

/* Arrows + dots container: pastda, dots chapda, arrows o'ngda */
.tc-promo-nav {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}
.tc-promo-nav .tc-promo-dots {
  position: static;
  transform: none;
}
.tc-promo-nav .tc-promo-arrows {
  display: flex;
  gap: 8px;
}
@media (max-width: 758px) {
  .tc-promo-arrow { width: 40px; height: 40px; }
  .tc-promo-nav { bottom: 12px; left: 12px; right: 12px; }
}

/* Banner slider above weekly grid */
.tc-banner-slider { position:relative; border-radius:24px; overflow:hidden; min-height:280px; background:#0a0a0a; color:#fff; }
.tc-banner-slider .slide { position:absolute; inset:0; opacity:0; transition: opacity .6s ease; padding:48px; display:flex; flex-direction:column; justify-content:flex-end; background-size:cover; background-position:center; }
.tc-banner-slider .slide.active { opacity:1; position:relative; }
.tc-banner-slider .slide::before { content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0) 60%); }
.tc-banner-slider .slide > * { position:relative; z-index:1; }
.tc-banner-slider h3 { font-size:32px; font-weight:800; margin-bottom:8px; line-height:1.1; }
.tc-banner-slider p { font-size:15px; opacity:.85; margin-bottom:16px; max-width:480px; }
.tc-banner-slider .slide-cta { display:inline-block; background:#fff; color:#000; padding:12px 24px; border-radius:12px; font-weight:700; text-transform:uppercase; font-size:13px; letter-spacing:.05em; align-self:flex-start; }
.tc-banner-slider .dots { position:absolute; bottom:16px; left:50%; transform:translateX(-50%); display:flex; gap:6px; z-index:2; }
.tc-banner-slider .dots button { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.4); border:0; cursor:pointer; }
.tc-banner-slider .dots button.active { background:#fff; width:24px; border-radius:4px; }

/* ── Product grid: responsive ── */
.tc-product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
@media (max-width: 767px) {
  .tc-product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}
@media (max-width: 480px) {
  .tc-product-grid { grid-template-columns: 1fr !important; }
}
.tc-product-card { position:relative; transition: transform var(--tc-transition), box-shadow var(--tc-transition); }
.tc-product-card:hover { transform: translateY(-2px); box-shadow: var(--tc-shadow-xl); }
.tc-card-actions:not(.action-buttons) { position:absolute; top:12px; right:12px; display:flex; flex-direction:column; gap:6px; opacity:0; transform:translateX(8px); transition: opacity .25s ease, transform .25s ease; z-index:5; }
.tc-product-card:hover .tc-card-actions:not(.action-buttons) { opacity:1; transform:translateX(0); }
/* Real product card: price + action buttons share the bottom row */
.tc-tile__bottom { display:flex; align-items:flex-end; justify-content:space-between; gap:12px; width:100%; }
.tc-card-actions.action-buttons { position:static; flex-direction:row; }
.tc-card-actions button {
  width:34px; height:34px; border-radius:10px; background:#fff; border:1px solid rgba(0,0,0,.08);
  display:flex; align-items:center; justify-content:center; cursor:pointer; transition: all .2s; color:#000;
}
.tc-card-actions button:hover { background:#000; color:#fff; border-color:#000; }
.tc-card-actions button.active { background:#000; color:#fff; border-color:#000; }
.tc-card-actions button svg { width:18px; height:18px; }

/* Card click → product detail; "+" mini button → add-to-cart inline */
.tc-product-card .tc-card-link { position:absolute; inset:0; z-index:1; }
.tc-product-card .tc-product-card-inner { position:relative; z-index:2; pointer-events:none; }
.tc-product-card .tc-product-card-inner a,
.tc-product-card .tc-product-card-inner button,
.tc-product-card .tc-product-card-inner select,
.tc-product-card .tc-product-card-inner [data-clickable] { pointer-events:auto; }

/* ── Sticky header — already sticky via "sticky top-0", just polish ── */
.tc-logo-link { cursor: pointer; }

.tc-catalog-toolbar::-webkit-scrollbar,
.tc-hashtag-row::-webkit-scrollbar {
  display: none;
}
.tc-catalog-toolbar, .tc-hashtag-row {
  scrollbar-width: none;
}

/* ── Checkout layout ── */
.tc-city-dropdown { position:absolute; top: calc(100% + 6px); left:0; min-width:240px; background:#fff; border:1px solid #ebebeb; border-radius:16px; padding:8px; box-shadow:var(--tc-shadow-lg); z-index:60; max-height:320px; overflow:auto; }
.tc-city-dropdown button { display:block; width:100%; text-align:left; padding:8px 12px; border-radius:8px; font-size:14px; background:transparent; border:0; cursor:pointer; transition: all .15s; }
.tc-city-dropdown button:hover { background:#f5f5f5; }
.tc-city-dropdown button.active { background:#000; color:#fff; }
.tc-city-label { font-weight:600; }
.tc-city-label::after { content:""; }

/* ── Search dropdown (scope: catalog vs blog) ── */
.tc-search-modal { position:fixed; inset:0; background:rgba(0,0,0,.4); z-index:90; display:flex; align-items:flex-start; justify-content:center; padding-top:80px; }
.tc-search-panel { width:100%; max-width:760px; background:#fff; border-radius:24px; padding:24px; box-shadow:var(--tc-shadow-xl); }
.tc-search-row { display:flex; gap:8px; align-items:center; }
.tc-search-scope { background:#f5f5f7; border:0; padding:10px 14px; border-radius:12px; font-size:13px; font-weight:600; color:#000; cursor:pointer; min-width:170px; }
.tc-search-input { flex:1; border:1px solid #ebebeb; border-radius:12px; padding:12px 16px; font-size:15px; outline:none; transition: border-color .2s; }
.tc-search-input:focus { border-color:#000; }
.tc-search-suggestions { margin-top:12px; max-height:360px; overflow:auto; }
.tc-search-suggestion { display:flex; gap:12px; align-items:center; padding:10px; border-radius:12px; cursor:pointer; transition: background .15s; }
.tc-search-suggestion:hover { background:#f5f5f7; }
.tc-search-suggestion img { width:48px; height:48px; object-fit:contain; border-radius:8px; background:#f5f5f7; }
.tc-search-suggestion__title { font-weight:600; font-size:14px; }
.tc-search-suggestion__sub { font-size:12px; color:rgba(0,0,0,.5); }

/* ── Variant unavailable indicator ── */
.tc-variant-unavail { color: rgba(0,0,0,.35) !important; text-decoration: line-through; cursor: not-allowed; position:relative; }
.tc-variant-msg { font-size:12px; color:#a13d2a; margin-top:6px; min-height:16px; }

/* ── HTMX loading state ── */
[hx-target].htmx-request, .htmx-request.tc-catalog-products { opacity: .55; transition: opacity .2s; pointer-events:none; }
.tc-catalog-products .tc-loader { display:flex; justify-content:center; padding:24px; }

/* ── Reusable utility ── */
.tc-tooltip-wrap { position:relative; display:inline-flex; }

/* ── Buttons keep prior polish ── */
button, .btn, [class*="btn-"] { transition: all var(--tc-transition); }
.tc-btn-pay, .tc-btn-pay:link, .tc-btn-pay:visited { background: #000 !important; color: #fff !important; border-radius: var(--tc-radius-md); font-weight:600; letter-spacing:.3px; }
.tc-btn-pay:hover { background: rgba(0,0,0,.85) !important; color: #fff !important; transform: translateY(-1px); box-shadow: var(--tc-shadow-lg); }
.tc-btn-pay:active { transform: scale(.97); }
.bg-black.text-white { border-radius: var(--tc-radius-md) !important; font-weight:600 !important; letter-spacing:.3px !important; color: #fff !important; background-color: #000 !important; }
.bg-black.text-white:hover { background: rgba(0,0,0,.85) !important; color: #fff !important; }

/* ── Fix: Tailwind utility colors overridden by original Nuxt scoped styles ── */
.text-white, .tc-catalog-chip.text-white, .tc-hashtag-tag.text-white { color: #fff !important; }
.text-black { color: #000 !important; }
.bg-black, .tc-catalog-chip.bg-black, .tc-hashtag-tag.bg-black { background-color: #000 !important; color: #fff !important; }
.bg-white { background-color: #fff !important; }
.bg-gray-100 { background-color: #f3f4f6 !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.text-black\/50, .text-\[var\(--black-50\)\] { color: rgba(0,0,0,0.5) !important; }
.text-black\/60 { color: rgba(0,0,0,0.6) !important; }
a.bg-black { color: #fff !important; }
a.bg-gray-100 { color: #000 !important; }
button.bg-black { color: #fff !important; }
.rounded-xl { border-radius: 12px !important; }
.rounded-full { border-radius: 9999px !important; }

/* ── Compare floating bar fix ── */
[x-data*="compare"] .bg-black,
.tc-compare-bar { background-color: #000 !important; color: #fff !important; }
[x-data*="compare"] .bg-white,
[x-data*="compare"] .text-black { color: #000 !important; }

/* Compare floating bar inner alignment and buttons styling */
.compare-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 12px 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  z-index: 9999;
  width: 90%;
  max-width: 500px;
}
.compare-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.compare-bar-count {
  font-size: 14px;
  font-weight: 700;
}
.compare-bar-link {
  background: #fff !important;
  color: #000 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 12px;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.compare-bar-link:hover {
  opacity: 0.9;
}
.compare-bar-clear {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.compare-bar-clear:hover {
  color: #fff;
}

/* Fix product card action buttons align and comparison icon inside card */
.tc-tile.product-card .tc-tile__bottom--btn.is-active svg {
  stroke: #000 !important;
  fill: #000 !important;
}
.tc-tile.product-card .tc-tile__bottom--btn svg {
  display: block;
  margin: auto;
}
.tc-card-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tc-tile.product-card .tc-tile__bottom--btn svg path {
  stroke: #000 !important;
}
.tc-tile.product-card .tc-tile__bottom--btn.is-active svg path {
  stroke: #000 !important;
}


/* ── Catalog filter tags/chips: active state ── */
.tc-hashtag-tag, .tc-catalog-chip {
  display: inline-flex; align-items: center; padding: 6px 14px;
  border-radius: 10px; font-size: 13px; cursor: pointer;
  background: #fff; color: rgba(0,0,0,0.7);
  transition: all .2s; border: 0;
}
.tc-hashtag-tag:hover, .tc-catalog-chip:hover { background: rgba(0,0,0,0.08); }
.tc-hashtag-tag.active, .tc-tag.active, .tc-catalog-chip.active,
.tc-hashtag-tag.bg-black, .tc-catalog-chip.bg-black {
  background: #000 !important; color: #fff !important;
}

/* ── Tooltip overflow fix ── */
.tc-filter-group__hint:hover::after {
  content: attr(data-tip); position:absolute; left:0; top:calc(100% + 8px); transform:none;
  background:#000; color:#fff; padding:8px 11px; border-radius:8px; font-size:11px; line-height:1.45; white-space:normal; width:280px; max-width:80vw;
  box-shadow:0 6px 24px rgba(0,0,0,.18); z-index:60; pointer-events:none;
  overflow-wrap: break-word; word-wrap: break-word;
}

/* ── Footer subtle polish ── */
footer a:hover { opacity: .7; }

/* Print */
@media print { header, footer, button, .tc-card-actions { display:none !important; } body { background:#fff !important; } }

/* ══════════════════════════════════════════════
   BROKEN IMAGE FALLBACK — site-wide
   ══════════════════════════════════════════════ */

/* Базовый fallback: скрываем битый alt-text браузера */
img {
  -webkit-font-smoothing: antialiased;
}

/* Когда картинка не загрузилась — класс добавляется через JS */
img.tc-img-error {
  position: relative;
  background: #f0f0f0;
  color: transparent; /* скрываем alt-текст */
}
img.tc-img-error::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #f0f2f5;
}
img.tc-img-error::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Ccircle cx='40' cy='40' r='36' fill='%23e8eaed'/%3E%3Cellipse cx='40' cy='36' rx='14' ry='18' stroke='%23bbbfc7' stroke-width='2.5' fill='none'/%3E%3Cellipse cx='40' cy='36' rx='5' ry='6' fill='%23bbbfc7'/%3E%3Cpath d='M26 54 Q40 44 54 54' stroke='%23bbbfc7' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 56px no-repeat,
    #f0f2f5;
}

/* Product card picture fallback */
.tc-tile__picture img.tc-img-error,
.tc-tile__picture a img.tc-img-error {
  min-height: 180px;
  background: linear-gradient(135deg, #f5f5f7 60%, #ebebeb 100%);
}

/* Blog card image fallback */
.aspect-\\[16\\/10\\] img.tc-img-error,
.min-h-\\[320px\\] img.tc-img-error {
  background: linear-gradient(135deg, #f0f2f5 60%, #e8eaed 100%);
}

/* ── Общий placeholder для всех контейнеров с битыми img ── */
.tc-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f7 0%, #ebebeb 100%);
  color: rgba(0,0,0,0.15);
}
.tc-img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

/* ── Basket / checkout ── */
.checkout-card {
    background-color: #000;
    color: #fff;
    width: 100%;
    border-radius: 40px;
    padding: 32px 28px;
}

/* ── Header row 2: logo + nav + icons (fix flex order after Tailwind rebuild) ── */
@media (min-width: 1100px) {
  #header .header-group > hr.order-9 {
    display: block !important;
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 16px 0 0;
    padding: 0;
    border: 0;
    order: 9 !important;
  }

  #header .header-group > .app-header-logo {
    order: 10 !important;
    margin-right: 28px !important;
    flex: 0 0 auto;
  }

  #header .header-group > .app-header-burger {
    display: none !important;
  }

  #header .header-group > .header-nav-list {
    order: 12 !important;
    margin-left: 0 !important;
    margin-right: 12px !important;
    flex: 0 0 auto;
    width: auto !important;
  }

  #header .header-group > .header-search {
    order: 13 !important;
    margin-left: auto !important;
    flex: 0 0 auto;
  }

  #header .header-group > .header-search ~ * {
    flex: 0 0 auto;
  }
}
