/** Shopify CDN: Minification failed

Line 31:0 All "@import" rules must come first

**/
/* ithaven.uk — Premium Refurbished Tech Store */
/* Palette: Slate #3D5A6B | Teal #2A8A8A | Black #0A0A0A | White #F8F8F6 */

:root {
  --ih-black: #0A0A0A;
  --ih-white: #F8F8F6;
  --ih-slate: #3D5A6B;
  --ih-slate-light: #5A7A8C;
  --ih-slate-dark: #2A3F4D;
  --ih-teal: #2A8A8A;
  --ih-teal-light: #3AACAC;
  --ih-teal-dark: #1A6A6A;
  --ih-gray-100: #F2F2F0;
  --ih-gray-200: #E0E0DC;
  --ih-gray-400: #9A9A96;
  --ih-gray-600: #5A5A56;
  --ih-font-display: 'Syne', sans-serif;
  --ih-font-body: 'DM Sans', sans-serif;
  --ih-font-mono: 'DM Mono', monospace;
  --ih-radius: 4px;
  --ih-radius-lg: 8px;
  --ih-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@300;400&display=swap');

/* ─── GLOBAL RESET ─── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--ih-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ih-black);
  background: var(--ih-white);
  -webkit-font-smoothing: antialiased;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--ih-slate-dark);
  color: var(--ih-white);
  font-family: var(--ih-font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  text-align: center;
}
.announcement-bar a { color: var(--ih-teal-light); text-decoration: none; }

/* ─── HEADER ─── */
.header-wrapper {
  border-bottom: 1px solid var(--ih-gray-200);
  background: var(--ih-white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  height: 64px;
}
.header__heading-logo img { height: 40px; width: auto; }
.header__heading-logo-text {
  font-family: var(--ih-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ih-slate);
  letter-spacing: -0.02em;
}
.header__heading-logo-text span { color: var(--ih-teal); }

.header__nav { display: flex; gap: 2rem; align-items: center; }
.header__nav a {
  font-family: var(--ih-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ih-slate);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--ih-transition);
}
.header__nav a:hover { color: var(--ih-teal); }

.header__icons { display: flex; gap: 1rem; align-items: center; }
.header__icons a { color: var(--ih-slate); transition: color var(--ih-transition); }
.header__icons a:hover { color: var(--ih-teal); }

/* ─── HERO ─── */
.ih-hero {
  background: var(--ih-black);
  color: var(--ih-white);
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.ih-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(42,138,138,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.ih-hero__content {
  padding: 5rem 4rem 5rem 8rem;
  position: relative;
  z-index: 1;
}
.ih-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ih-font-mono);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ih-teal-light);
  margin-bottom: 1.5rem;
}
.ih-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ih-teal);
}
.ih-hero__title {
  font-family: var(--ih-font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}
.ih-hero__title em {
  font-style: normal;
  color: var(--ih-teal-light);
}
.ih-hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(248,248,246,0.65);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.ih-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ih-teal);
  color: var(--ih-white);
  font-family: var(--ih-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border: none;
  border-radius: var(--ih-radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ih-transition), transform var(--ih-transition);
}
.btn-primary:hover { background: var(--ih-teal-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ih-white);
  font-family: var(--ih-font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border: 1px solid rgba(248,248,246,0.25);
  border-radius: var(--ih-radius);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--ih-transition), background var(--ih-transition);
}
.btn-outline:hover { border-color: rgba(248,248,246,0.6); background: rgba(248,248,246,0.05); }

.ih-hero__image {
  height: 85vh;
  position: relative;
  overflow: hidden;
}
.ih-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}

/* ─── TRUST BAR ─── */
.ih-trust {
  background: var(--ih-gray-100);
  border-bottom: 1px solid var(--ih-gray-200);
  padding: 20px 0;
}
.ih-trust__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ih-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ih-slate);
}
.ih-trust__item svg { color: var(--ih-teal); flex-shrink: 0; }

/* ─── SECTION HEADERS ─── */
.ih-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.ih-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}
.ih-section-title {
  font-family: var(--ih-font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ih-black);
  line-height: 1.1;
}
.ih-section-title span { color: var(--ih-teal); }
.ih-section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ih-teal);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ih-transition);
}
.ih-section-link:hover { gap: 10px; }

/* ─── PRODUCT CARD ─── */
.ih-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.ih-product-card {
  background: var(--ih-white);
  border: 1px solid var(--ih-gray-200);
  border-radius: var(--ih-radius-lg);
  overflow: hidden;
  transition: transform var(--ih-transition), box-shadow var(--ih-transition), border-color var(--ih-transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ih-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42,138,138,0.1);
  border-color: var(--ih-teal-light);
}
.ih-product-card__image {
  aspect-ratio: 4/3;
  background: var(--ih-gray-100);
  overflow: hidden;
  position: relative;
}
.ih-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.4s ease;
}
.ih-product-card:hover .ih-product-card__image img { transform: scale(1.04); }
.ih-product-card__grade {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ih-slate-dark);
  color: var(--ih-white);
  font-family: var(--ih-font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 2px;
}
.ih-product-card__grade--a { background: var(--ih-teal-dark); }
.ih-product-card__grade--b { background: var(--ih-slate); }
.ih-product-card__grade--c { background: var(--ih-gray-600); }

.ih-product-card__body { padding: 1.25rem; }
.ih-product-card__brand {
  font-family: var(--ih-font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ih-gray-400);
  margin-bottom: 4px;
}
.ih-product-card__name {
  font-family: var(--ih-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ih-black);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ih-product-card__specs {
  font-size: 12px;
  color: var(--ih-gray-400);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ih-product-card__spec {
  background: var(--ih-gray-100);
  padding: 2px 8px;
  border-radius: 2px;
}
.ih-product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--ih-gray-200);
}
.ih-product-card__price {
  font-family: var(--ih-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ih-black);
}
.ih-product-card__price-old {
  font-size: 12px;
  color: var(--ih-gray-400);
  text-decoration: line-through;
  margin-left: 6px;
}
.ih-product-card__add {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ih-teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background var(--ih-transition), transform var(--ih-transition);
  flex-shrink: 0;
}
.ih-product-card__add:hover { background: var(--ih-teal-dark); transform: scale(1.1); }

/* ─── CATEGORY TILES ─── */
.ih-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.ih-category-tile {
  aspect-ratio: 1;
  background: var(--ih-gray-100);
  border: 1px solid var(--ih-gray-200);
  border-radius: var(--ih-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ih-slate);
  font-family: var(--ih-font-display);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--ih-transition);
}
.ih-category-tile:hover {
  background: var(--ih-slate-dark);
  color: var(--ih-white);
  border-color: var(--ih-slate-dark);
  transform: translateY(-3px);
}
.ih-category-tile svg { width: 36px; height: 36px; }

/* ─── WHY ITHAVEN ─── */
.ih-why {
  background: var(--ih-gray-100);
  color: var(--ih-black);
  padding: 3rem 0;
}
.ih-why__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ih-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ih-why__item {
  padding: 2rem;
  background: var(--ih-white);
  border: 1px solid var(--ih-gray-200);
  border-radius: var(--ih-radius-lg);
  transition: border-color var(--ih-transition);
}
.ih-why__item:hover { border-color: var(--ih-teal); }
.ih-why__icon {
  width: 44px;
  height: 44px;
  background: rgba(42,138,138,0.12);
  border-radius: var(--ih-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ih-teal);
}
.ih-why__title {
  font-family: var(--ih-font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ih-slate-dark);
}
.ih-why__desc {
  font-size: 13px;
  color: var(--ih-gray-600);
  line-height: 1.65;
}

/* ─── GRADE EXPLAINER ─── */
.ih-grades {
  background: var(--ih-gray-100);
  color: var(--ih-black);
  padding: 3rem 0;
}
.ih-grades__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ih-grades__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ih-grade-block {
  background: var(--ih-white);
  border: 1px solid var(--ih-gray-200);
  border-radius: var(--ih-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--ih-transition);
}
.ih-grade-block:hover { border-color: var(--ih-teal); }
.ih-grade-block__badge {
  display: inline-block;
  font-family: var(--ih-font-mono);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--ih-teal);
  margin-bottom: 1rem;
}
.ih-grade-block__label {
  font-family: var(--ih-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ih-slate-dark);
  margin-bottom: 8px;
}
.ih-grade-block__desc {
  font-size: 13px;
  color: var(--ih-gray-600);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ih-black);
  color: rgba(248,248,246,0.6);
  padding: 4rem 2rem 2rem;
  font-size: 13px;
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,248,246,0.08);
}
.footer__brand-name {
  font-family: var(--ih-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ih-white);
  margin-bottom: 12px;
}
.footer__brand-name span { color: var(--ih-teal); }
.footer__tagline { color: rgba(248,248,246,0.45); line-height: 1.65; margin-bottom: 1.5rem; }
.footer__col-title {
  font-family: var(--ih-font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ih-white);
  margin-bottom: 1rem;
}
.footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { color: rgba(248,248,246,0.55); text-decoration: none; transition: color var(--ih-transition); }
.footer__links a:hover { color: var(--ih-teal-light); }
.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.footer__legal { color: rgba(248,248,246,0.3); }
.footer__payments { display: flex; gap: 8px; align-items: center; }
.footer__payment-badge {
  background: rgba(248,248,246,0.08);
  border: 1px solid rgba(248,248,246,0.12);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-family: var(--ih-font-mono);
  color: rgba(248,248,246,0.5);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .ih-hero { grid-template-columns: 1fr; min-height: auto; }
  .ih-hero__content { padding: 4rem 1.5rem; }
  .ih-hero__image { height: 300px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .ih-grades__grid { grid-template-columns: 1fr; }
  .ih-why__grid { grid-template-columns: 1fr; }
  .ih-testimonials__grid { grid-template-columns: 1fr; }
  .header { padding: 0 1rem; }
  .ih-section { padding: 3rem 1rem; }
}

/* ─── ITHAVEN HEADER OVERRIDE ─── */
.header__heading-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ih-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.ih-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ih-logo-text__name {
  font-family: var(--ih-font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ih-slate);
}

.ih-logo-text__name span {
  color: var(--ih-teal);
}

.ih-logo-text__tagline {
  font-family: var(--ih-font-mono);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ih-gray-400);
  line-height: 1;
}

/* Trust badge obok logo */
.ih-header-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(42,138,138,0.08);
  border: 1px solid rgba(42,138,138,0.2);
  border-radius: 2px;
  margin-left: 16px;
}

.ih-header-trust__icon {
  color: var(--ih-teal);
  flex-shrink: 0;
}

.ih-header-trust__text {
  font-family: var(--ih-font-mono);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ih-slate);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .ih-header-trust { display: none; }
  .ih-logo-text__tagline { display: none; }
  .ih-logo-img { height: 36px; }
  .ih-logo-text__name { font-size: 17px; }
}

/* ─── LOGO WRAP UPDATE ─── */
.ih-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ih-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Zapewnij że Dawn nie przycina logo */
.header__heading-logo-wrapper { overflow: visible !important; }
.header__heading-link { text-decoration: none !important; }
.header__heading-link:hover { opacity: 0.9; }

@media (max-width: 989px) {
  .ih-header-trust { display: none !important; }
  .ih-logo-img { height: 40px; }
}

/* ─── LOGO FINAL ─── */
.ih-logo-link { text-decoration: none !important; display: inline-block; }

.ih-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ih-logo-icon {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.ih-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ih-logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ih-logo-name__it    { color: #2A3F4D; }
.ih-logo-name__haven { color: #2A3F4D; }
.ih-logo-name__dot   { color: #1A7A8A; }
.ih-logo-name__uk    { color: #1A7A8A; }

.ih-logo-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9A9A96;
  line-height: 1;
}

/* nadpisz stare klasy Dawn żeby nie kolidowały */
.header__heading-link { text-decoration: none !important; }
.header__heading-link:hover .ih-logo-name { opacity: 0.85; }

@media (max-width: 989px) {
  .ih-logo-icon { height: 38px; }
  .ih-logo-name { font-size: 20px; }
  .ih-logo-tagline { display: none; }
}

/* ─── PRODUCT CARD OVERRIDES (Dawn card-product) ─── */
.card-wrapper { text-decoration: none !important; }

.card { 
  border: 1px solid #E0E0DC !important;
  border-radius: 8px !important;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  background: #fff !important;
}
.card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(42,138,138,0.1) !important;
  border-color: #2A8A8A !important;
}

.card__media, .card__media .media {
  background: #F4F4F2 !important;
  border-radius: 0 !important;
}

.card__media img {
  object-fit: contain !important;
  padding: 16px !important;
}

/* Grade badge na zdjęciu */
.card-wrapper .card__media::before {
  content: 'GRADE A';
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1A6A6A;
  color: #F8F8F6;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  border-radius: 2px;
  z-index: 2;
}

.card__information { padding: 14px !important; }

.card__vendor {
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #9A9A96 !important;
  margin-bottom: 4px !important;
}

.card__heading, .card__heading a {
  font-family: 'Syne', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #0A0A0A !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
}

/* Cena */
.price .price-item--regular,
.price .price__sale {
  font-family: 'Syne', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0A0A0A !important;
}

.price .price-item--compare {
  font-size: 12px !important;
  color: #9A9A96 !important;
  text-decoration: line-through !important;
}

/* Przycisk Add to Cart — okrągły teal */
.card__footer .quick-add__submit,
.card__footer button[name="add"] {
  width: 36px !important;
  height: 36px !important;
  min-width: unset !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #2A8A8A !important;
  border: none !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}
.card__footer .quick-add__submit:hover,
.card__footer button[name="add"]:hover {
  background: #1A6A6A !important;
  transform: scale(1.08) !important;
}

/* Section titles */
.featured-collection .title,
.collection .title {
  font-family: 'Syne', sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: #0A0A0A !important;
}

/* "View All" link */
.featured-collection .link, 
.collection .link {
  font-family: 'DM Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #2A8A8A !important;
}

/* ─── HERO FIX ─── */
.ih-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: #0A0A0A;
}

.ih-hero__image {
  height: 80vh;
  overflow: hidden;
}

.ih-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── SECTION PADDING ─── */
.featured-collection.section {
  padding: 48px 0 !important;
}

/* ─── HERO COMPLETE REWRITE ─── */
.ih-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: #0A0A0A;
  overflow: hidden;
  position: relative;
}

.ih-hero__content {
  padding: 60px 48px 60px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.ih-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ih-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2A8A8A;
  margin-bottom: 24px;
}

.ih-hero__eyebrow-line {
  display: block;
  width: 24px;
  height: 1px;
  background: #2A8A8A;
  flex-shrink: 0;
}

.ih-hero__title {
  font-family: var(--ih-font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #F8F8F6;
  margin: 0 0 20px;
}

.ih-hero__title em {
  font-style: normal;
  color: #2A8A8A;
}

.ih-hero__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(248,248,246,0.55);
  max-width: 380px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.ih-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ih-hero__image {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
}

.ih-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ih-hero__no-image {
  width: 100%;
  height: 100%;
  background: #0D1E28;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ih-hero__device-svg {
  width: 75%;
  max-width: 340px;
  opacity: 0.7;
}

.ih-hero__upload-hint {
  font-family: var(--ih-font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,248,246,0.2);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2A8A8A;
  color: #F8F8F6;
  font-family: var(--ih-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover { background: #1A6A6A; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #F8F8F6;
  font-family: var(--ih-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border: 1px solid rgba(248,248,246,0.3);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-outline:hover { border-color: rgba(248,248,246,0.7); background: rgba(248,248,246,0.05); }

/* ─── LOGO SIZE FIX ─── */
.ih-logo-icon {
  height: 56px !important;
  width: auto !important;
}

.ih-logo-name {
  font-size: 28px !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 989px) {
  .ih-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ih-hero__content {
    padding: 48px 24px;
  }
  .ih-hero__image {
    min-height: 320px;
  }
  .ih-hero__title {
    font-size: 36px;
  }
}

/* ─── LOGO FINAL CLEAN ─── */
.ih-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ih-logo-icon {
  height: 60px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.ih-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ih-logo-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 30px !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  color: #2A3F4D !important;
}
.ih-logo-name span {
  color: #1A7A8A !important;
}
.ih-logo-tagline {
  font-family: 'DM Mono', monospace !important;
  font-size: 9px !important;
  font-weight: 300 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #9A9A96 !important;
  line-height: 1 !important;
}
/* Dawn header overrides */
.header__heading-link,
.header__heading-link:hover { 
  text-decoration: none !important; 
  opacity: 1 !important;
}
.header { background: #FFFFFF !important; }

/* ─── PRODUCT CARDS ─── */
.ih-featured { padding: 3rem 0; background: var(--ih-gray-100); }
.ih-featured__inner { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.ih-featured__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.5rem; }
.ih-featured__title { font-family: var(--ih-font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--ih-black); }
.ih-featured__title span { color: var(--ih-teal); }
.ih-featured__link { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #1A7A8A; text-decoration: none; }

.ih-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.ih-pcard { background: #fff; border: 1px solid #E0E0DC; border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; display: block; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.ih-pcard:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(42,138,138,0.1); border-color: #2A8A8A; }

.ih-pcard__img-wrap { background: #F4F4F2; aspect-ratio: 4/3; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ih-pcard__img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.ih-pcard__no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 16px; }
.ih-pcard__no-img svg { width: 80%; }

.ih-pcard__grade { position: absolute; top: 8px; left: 8px; background: #1A6A6A; color: #F8F8F6; font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.1em; padding: 3px 7px; border-radius: 2px; z-index: 1; }
.ih-pcard__grade--b { background: #3D5A6B; }

.ih-pcard__body { padding: 14px; }
.ih-pcard__vendor { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: #9A9A96; margin-bottom: 4px; }
.ih-pcard__title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: #0A0A0A; line-height: 1.3; margin-bottom: 6px; }
.ih-pcard__specs { font-size: 11px; color: #7A7A76; margin-bottom: 10px; }

.ih-pcard__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid #E8E8E4; }
.ih-pcard__price { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: #0A0A0A; }
.ih-pcard__price-old { font-size: 11px; color: #9A9A96; text-decoration: line-through; margin-left: 5px; font-family: 'DM Sans', sans-serif; font-weight: 400; }

.ih-pcard__add { width: 32px; height: 32px; border-radius: 50%; background: #2A8A8A; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; transition: background 0.2s ease; }
.ih-pcard:hover .ih-pcard__add { background: #1A6A6A; }

@media (max-width: 768px) {
  .ih-product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── HEADER FORCE WHITE ─── */
.section-header,
.header-wrapper,
.header-wrapper .header,
.shopify-section-group-header-group {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
}

.color-scheme-1,
.color-background-1 {
  background: #FFFFFF !important;
}

/* Announcement bar ciemny */
.section-header .announcement-bar,
.announcement-bar__message {
  background: #2A3F4D !important;
  color: #F8F8F6 !important;
}
.announcement-bar__message a { color: #3AACAC !important; }

/* ─── LOGO BIGGER & CLEANER ─── */
.header__heading { margin: 0 !important; }
.header__heading-link { text-decoration: none !important; }

.ih-logo-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.ih-logo-icon {
  height: 64px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

.ih-logo-name {
  font-family: 'Syne', sans-serif !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  line-height: 1 !important;
  color: #2A3F4D !important;
  white-space: nowrap !important;
}

.ih-logo-name span { color: #1A7A8A !important; }

.ih-logo-tagline {
  font-family: 'DM Mono', monospace !important;
  font-size: 9px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: #9A9A96 !important;
  margin-top: 4px !important;
  white-space: nowrap !important;
}

/* Nav links */
.header__menu-item,
.header__menu-item span,
.list-menu__item--link {
  font-family: 'DM Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #5A7A8C !important;
  text-decoration: none !important;
}
.header__menu-item:hover span,
.list-menu__item--link:hover {
  color: #1A7A8A !important;
}
