
:root {
  --soil: #3A2417;
  --soil-dark: #2A1A10;
  --cream: #F7F1E4;
  --cream-2: #EFE6D2;
  --white: #FFFFFF;
  --red: #D5161F;
  --red-dark: #A80F17;
  --gold: #E8A33D;
  --green: #35513F;
  --ink: #241811;
  --muted: #6B5D4F;
  --line: #DCD0B4;
  --radius: 14px;
  --shadow: 0 12px 30px -12px rgba(42, 26, 16, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}


h1,
h2,
h3,
h4 {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 22px -8px rgba(213, 22, 31, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* HEADER */

body > header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: var(--white);
  border-bottom: 3px solid var(--red);

  font-family: "Zilla Slab", serif;
  text-transform: uppercase;
}

.header-inner {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-logo {
  width: 110px;
  height: auto;
}

.logo .mark {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;
}

.logo span.hi,
.footer-logo span.hi {
  color: var(--red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;

  padding: 6px 0;

  color: var(--ink);

  font-size: 0.94rem;
  font-weight: 800;

  transition: color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--red);
}

.main-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 0;
  height: 2px;

  content: "";

  background: var(--gold);

  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}

.header-phone strong {
  display: block;

  color: var(--ink);

  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;

  padding: 4px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;

  background: var(--ink);
}

/* HERO */

.hero {
  position: relative;
  background: #F3DFC0;
  overflow: hidden;
}

.hero-furrows {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.hero-wide {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
}

.hero-copy {
  padding: 88px 32px 88px 64px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  color: var(--ink);
  margin: 18px 0 20px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cta .btn-ghost {
  color: var(--ink);
  border-color: rgba(36, 24, 17, 0.35);
}

.hero-cta .btn-ghost:hover {
  border-color: var(--ink);
}

.hero-visual {
  position: relative;
  background: var(--green);
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), transparent 60%);
}

.hero-visual .ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1.5px dashed rgba(232, 163, 61, 0.45);
  border-radius: 50%;
}

.hero-visual svg {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 230px;
}

.hero-stat-plate {
  position: absolute;
  bottom: 36px;
  left: -40px;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  font-family: 'IBM Plex Mono', monospace;
  z-index: 3;
}

.hero-stat-plate strong {
  display: block;
  font-size: 1.3rem;
  font-family: 'Zilla Slab', serif;
  color: var(--red);
}

.hero-stat-plate span {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-trust-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 22px 64px;
  border-top: 1px solid rgba(36, 24, 17, 0.12);
  background: rgba(255, 255, 255, 0.35);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--ink);
}

.hero-trust-item strong {
  font-family: 'Zilla Slab', serif;
  color: var(--red);
  font-size: 1rem;
}

.hero-trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.furrow-divider {
  width: 100%;
  height: 34px;
  line-height: 0;
  background: var(--cream);
}

.furrow-divider svg {
  width: 100%;
  height: 100%;
}

/* SECTIONS */

.section {
  padding: 84px 0;
}

.section-alt {
  background: var(--cream-2);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2,
.about-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-top: 14px;
}

.section-head p,
.about-grid p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.02rem;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px;
  align-items: start;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.about-card p {
  margin-bottom: 24px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* PRODUCTS */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.product-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.product-chip .icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.35rem;
}

.product-chip p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

/* CATEGORY CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.cat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--soil);
  color: var(--gold);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.cat-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.cat-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.cat-card ul {
  margin-bottom: 22px;
  flex-grow: 1;
}

.cat-card li {
  font-size: 0.92rem;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
}

.cat-card li:last-child {
  border-bottom: none;
}

.cat-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: gap 0.15s ease;
}

.read-more:hover {
  gap: 10px;
}

/* WHY US */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  padding: 6px;
}

.why-item .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--gold);
  background: var(--soil);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.why-item h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* PARTNERS */

.partners-band {
  background: var(--soil);
  color: var(--white);
  padding: 70px 0;
}

.partners-band .section-head h2 {
  color: var(--white);
}

.partners-band .section-head p {
  color: #CBB99E;
}

.partners-band .eyebrow {
  color: var(--gold);
}

.partners-band .eyebrow::before {
  background: var(--gold);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.partner-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 22px 14px;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: #EDE1CE;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.partner-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
}

.partner-badge strong {
  display: block;
  font-family: 'Zilla Slab', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 0;
}

.impact-strip {
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 34px;
}

.impact-item strong {
  display: block;
  font-family: 'Zilla Slab', serif;
  font-size: 2rem;
  color: var(--gold);
}

.impact-item span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #CBB99E;
}

/* BLOG */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.blog-card span {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin: 12px 0;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.blog-card a {
  color: var(--red);
  font-weight: 700;
}

/* CTA */

.cta-strip {
  background: var(--red);
  color: var(--white);
  padding: 52px 0;
}

.cta-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip h2,
.cta-strip h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.cta-strip p {
  color: #FBDADC;
  margin-top: 6px;
}

.cta-strip .btn-primary {
  background: var(--white);
  color: var(--red);
}

.cta-strip .btn-primary:hover {
  background: var(--cream);
  box-shadow: none;
}

/* FOOTER */

footer {
  background: var(--soil-dark);
  color: #CBB99E;
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-about p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 300px;
}

footer h4 {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

footer ul li {
  margin-bottom: 11px;
  font-size: 0.92rem;
}

footer ul li a:hover {
  color: var(--white);
}

footer .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-bottom: 14px;

  font-size: 0.92rem;
}

footer .contact-line a {
  color: inherit;
  text-decoration: none;

  transition: color 0.15s ease;
}

footer .contact-line a:hover {
  color: var(--white);
}

footer .contact-line > span:first-child,
footer .contact-icon {
  width: 20px;

  flex: 0 0 20px;

  text-align: center;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}


/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;
  color: var(--white);

  background:
    linear-gradient(
      160deg,
      var(--soil) 0%,
      #4a2e1c 65%,
      var(--soil) 100%
    );
}

.page-banner-furrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
}

.page-banner-furrows svg {
  width: 100%;
  height: 100%;
}

.page-banner-furrows path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}


/* BREADCRUMB */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;

  color: #cbb99e;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.breadcrumb a {
  transition: color 0.15s ease;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .current {
  color: var(--gold);
}


/* PAGE HEADING */

.page-eyebrow {
  color: var(--gold);
}

.page-eyebrow::before {
  background: var(--gold);
}

.page-banner h1 {
  max-width: 760px;
  margin: 16px 0;

  color: var(--white);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

.page-banner h1 em {
  color: var(--gold);
  font-style: normal;
}

.page-banner p {
  max-width: 650px;

  color: #ede1ce;
  font-size: 1.06rem;
}


/* FURROW DIVIDER */

.furrow-divider path {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    padding: 56px 20px;
    min-height: 320px;
  }

  .hero-copy {
    padding: 48px 32px;
    max-width: none;
  }

  .hero-stat-plate {
    position: static;
    margin-top: 18px;
    left: auto;
    display: inline-flex;
  }

  .hero-trust-strip {
    padding: 18px 32px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .main-nav.nav-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 60;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    padding: 22px 32px;

    background: var(--white);
    border-bottom: 3px solid var(--red);
    box-shadow: 0 14px 30px -18px rgba(42, 26, 16, 0.45);
  }

  .header-phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .cards-grid,
  .why-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .wrap {
    padding: 0 20px;
  }

  .header-inner {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-copy {
    padding: 42px 20px;
  }

  .hero-trust-strip {
    padding: 18px 20px;
    gap: 18px;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}


/* =========================================================
   IKONIC LTD — ABOUT PAGE

   This file contains styles that are specific to about.html.

   The shared website styles, including variables, header,
   buttons, footer, partner cards, grids and navigation,
   should remain inside style.css.
   ========================================================= */


/* ACTIVE NAVIGATION LINK */
/* =========================================================
   ABOUT INTRODUCTION
   ========================================================= */

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.about-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.about-copy p {
  margin-bottom: 16px;

  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}


/* ABOUT STATISTICS */

.about-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 32px;
}

.about-stat-row strong {
  display: block;

  color: var(--red);
  font-family: "Zilla Slab", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.about-stat-row span {
  display: block;
  margin-top: 6px;

  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ABOUT VISUAL */

.about-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;

  display: grid;
  place-items: center;

  border-radius: var(--radius);
  background: var(--green);
  box-shadow: var(--shadow);
}

.about-visual::before {
  position: absolute;
  inset: 0;

  content: "";

  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    );
}

.about-visual .visual-ring {
  position: absolute;

  width: 270px;
  height: 270px;

  border: 1.5px dashed rgba(232, 163, 61, 0.48);
  border-radius: 50%;
}

.about-visual > svg {
  position: relative;
  z-index: 2;

  width: 205px;
  height: 205px;
}

.badge-plate {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;

  padding: 8px 12px;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;

  color: var(--white);
  background: rgba(255, 255, 255, 0.1);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* =========================================================
   VISION AND MISSION
   ========================================================= */

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.vm-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;

  padding: 38px 34px;

  border-radius: var(--radius);
}

.vm-card.vision {
  color: var(--white);
  background: var(--soil);
}

.vm-card.mission {
  color: var(--ink);

  border: 1px solid var(--line);
  background: var(--white);
}


/* VISION AND MISSION ICONS */

.vm-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 12px;
}

.vm-card.vision .vm-icon {
  color: var(--gold);
  background: rgba(232, 163, 61, 0.16);
}

.vm-card.mission .vm-icon {
  color: var(--red);
  background: var(--cream-2);
}

.vm-icon svg {
  width: 26px;
  height: 26px;
}


/* VISION AND MISSION CONTENT */

.vm-card h3 {
  margin-bottom: 14px;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vm-card.vision h3 {
  color: var(--gold);
}

.vm-card.mission h3 {
  color: var(--red);
}

.vm-card p {
  max-width: 430px;

  font-family: "Zilla Slab", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

.vm-card.vision p {
  color: var(--white);
}


/* =========================================================
   PRODUCTION PROCESS
   ========================================================= */

.process-strip {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  list-style: none;
}

.process-strip::before {
  position: absolute;
  top: 26px;
  right: 6%;
  left: 6%;
  z-index: 0;

  height: 2px;

  content: "";

  background-image:
    linear-gradient(
      to right,
      var(--line) 60%,
      transparent 0%
    );

  background-repeat: repeat-x;
  background-size: 14px 2px;
}

.process-step {
  position: relative;
  z-index: 1;

  padding: 0 12px;

  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin: 0 auto 18px;

  border: 2px solid var(--red);
  border-radius: 50%;

  color: var(--red);
  background: var(--white);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.86rem;
}


/* =========================================================
   KAVES PARTNERSHIP
   ========================================================= */

.kaves-panel {
  padding: 38px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);
}

.kaves-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;

  margin-bottom: 16px;
}

.kaves-heading h3 {
  max-width: 680px;
  font-size: 1.4rem;
}

.kaves-badge {
  flex-shrink: 0;

  padding: 9px 13px;

  border-radius: 999px;

  color: var(--gold);
  background: var(--soil);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.kaves-label {
  display: block;
  margin-bottom: 12px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.kaves-summary {
  max-width: 850px;
  margin-bottom: 30px;

  color: var(--muted);
}

.kaves-block {
  margin-bottom: 28px;
}

.kaves-block:last-child {
  margin-bottom: 0;
}


/* CHIPS */

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--ink);
  background: var(--cream);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
}

.chip-accent {
  color: var(--gold);
  border-color: var(--soil);
  background: var(--soil);
}


/* =========================================================
   ABOUT-PAGE SMALL ADJUSTMENTS
   ========================================================= */
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px) {

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    min-height: 290px;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .process-strip {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 38px;
  }

  .process-strip::before {
    display: none;
  }

}


@media (max-width: 720px) {

  .page-banner {
    padding: 52px 0 58px;
  }

  .about-stat-row {
    gap: 22px;
  }

  .process-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .kaves-panel {
    padding: 28px 22px;
  }

  .kaves-heading {
    flex-direction: column;
  }

}


@media (max-width: 520px) {

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-step {
    text-align: left;
  }

  .step-num {
    margin-right: 0;
    margin-left: 0;
  }

  .about-stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-card {
    padding: 30px 24px;
  }

  .vm-card p {
    font-size: 1.25rem;
  }

}


/* =========================================================
   IKONIC LTD — PRODUCTS PAGE

   This file contains styles that are specific to products.html.

   Keep shared website styles such as the header, footer,
   buttons, typography, variables, and general sections
   inside style.css.
   ========================================================= */


/* =========================================================
   HEADER AND ACTIVE NAVIGATION
   ========================================================= */
/* =========================================================
   PAGE BANNER
   ========================================================= */
/* BREADCRUMB */
/* PAGE HEADING */
/* FURROW DIVIDER */
/* =========================================================
   CATEGORY QUICK NAVIGATION
   ========================================================= */

.category-nav {
  position: sticky;
  top: 73px;
  z-index: 35;

  padding: 15px 0;

  border-bottom: 1px solid var(--line);

  background:
    rgba(247, 241, 228, 0.96);

  backdrop-filter: blur(10px);
}

.category-nav-inner {
  display: flex;
  gap: 12px;

  overflow-x: auto;

  scrollbar-width: none;
}

.category-nav-inner::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 9px 16px;

  border: 1.5px solid var(--line);
  border-radius: 999px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.84rem;
  font-weight: 700;

  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.category-pill svg {
  width: 16px;
  height: 16px;

  flex: 0 0 16px;
}

.category-pill:hover {
  color: var(--red);
  border-color: var(--red);

  transform: translateY(-1px);
}

.category-pill.active {
  color: var(--white);
  border-color: var(--soil);
  background: var(--soil);
}

.category-pill.active svg {
  color: var(--gold);
}

.category-count {
  min-width: 24px;

  padding: 2px 7px;

  border-radius: 999px;

  color: var(--muted);
  background: var(--cream-2);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-align: center;
}

.category-pill.active .category-count {
  color: var(--soil);
  background: var(--gold);
}


/* =========================================================
   PRODUCT CATEGORY SECTIONS
   ========================================================= */

.product-category {
  scroll-margin-top: 150px;
}

.category-section-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 20px;

  max-width: 760px;

  margin-bottom: 42px;
}

.category-section-icon {
  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  flex-shrink: 0;

  border-radius: 14px;

  color: var(--gold);
  background: var(--soil);
}

.category-section-icon svg {
  width: 30px;
  height: 30px;
}

.category-section-copy .eyebrow {
  margin-bottom: 8px;
}

.category-section-copy h2 {
  font-size: clamp(
    1.55rem,
    2.7vw,
    2.1rem
  );
}

.category-section-copy p {
  max-width: 650px;

  margin-top: 10px;

  color: var(--muted);
  font-size: 0.97rem;
}


/* =========================================================
   PRODUCT DETAIL GRID
   ========================================================= */

.product-detail-grid {
  display: grid;

  grid-template-columns:
    repeat(
      auto-fit,
      minmax(240px, 1fr)
    );

  gap: 22px;
}


/* PRODUCT CARD */

.product-detail-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 100%;

  padding: 28px 24px 24px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-detail-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: 4px;

  content: "";

  background: var(--red);

  transform: scaleX(0);
  transform-origin: left;

  transition: transform 0.2s ease;
}

.product-detail-card:hover {
  border-color:
    rgba(213, 22, 31, 0.55);

  box-shadow: var(--shadow);

  transform: translateY(-4px);
}

.product-detail-card:hover::before {
  transform: scaleX(1);
}


/* PRODUCT ICON */

.product-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  margin-bottom: 16px;

  border-radius: 50%;

  color: var(--red);
  background: var(--cream-2);
}

.product-icon svg {
  width: 26px;
  height: 26px;
}


/* PRODUCT CONTENT */

.product-label {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-card h3 {
  margin-bottom: 10px;

  font-size: 1.18rem;
}

.product-detail-card > p {
  margin-bottom: 18px;

  color: var(--muted);
  font-size: 0.9rem;
}


/* PRODUCT HIGHLIGHTS */

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;

  margin-bottom: 24px;
}

.product-highlights li {
  position: relative;

  padding-left: 17px;

  color: var(--ink);
  font-size: 0.84rem;
}

.product-highlights li::before {
  position: absolute;
  top: 0.55em;
  left: 0;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  content: "";

  background: var(--gold);

  transform: translateY(-50%);
}


/* PRODUCT CARD FOOTER */

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  margin-top: auto;
  padding-top: 16px;

  border-top: 1px dashed var(--line);
}

.product-tag {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: var(--red);

  font-size: 0.84rem;
  font-weight: 700;

  transition:
    gap 0.15s ease,
    color 0.15s ease;
}

.product-enquire:hover {
  gap: 10px;
  color: var(--red-dark);
}


/* =========================================================
   CTA ADJUSTMENTS
   ========================================================= */
/* =========================================================
   FOOTER CONTACT LINKS
   ========================================================= */
/* =========================================================
   KEYBOARD FOCUS
   ========================================================= */

.category-pill:focus-visible,
.product-enquire:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.28);
  outline-offset: 3px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 980px) {

  .product-detail-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 720px) {


.category-nav {
    top: 67px;
  }

  .category-nav-inner {
    padding-bottom: 2px;
  }

  .category-section-head {
    gap: 15px;
  }

  .category-section-icon {
    width: 52px;
    height: 52px;
  }

  .category-section-icon svg {
    width: 26px;
    height: 26px;
  }

  .product-category {
    scroll-margin-top: 140px;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 620px) {

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .category-section-head {
    grid-template-columns: 1fr;
  }

  .category-section-icon {
    margin-bottom: 2px;
  }

  .product-detail-card {
    padding: 26px 22px 22px;
  }

}


@media (max-width: 420px) {

  .product-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .product-detail-card,
  .product-detail-card::before,
  .category-pill,
  .product-enquire {
    transition: none;
  }

}


/* =========================================================
   IKONIC LTD — CONTACT PAGE

   This file contains only styles specific to contact.html.

   Shared styles such as colours, typography, header, footer,
   buttons, section spacing and responsive navigation remain
   inside style.css.
   ========================================================= */


/* =========================================================
   ACTIVE NAVIGATION AND LOGO
   ========================================================= */
/* =========================================================
   PAGE BANNER
   ========================================================= */
/* BREADCRUMB */
/* BANNER HEADING */
/* FURROW DIVIDER */
/* =========================================================
   MAIN CONTACT SECTION
   ========================================================= */

.contact-main {
  scroll-margin-top: 90px;
}

.contact-section-heading {
  max-width: 690px;
  margin-bottom: 44px;
}

.contact-section-heading h2 {
  margin-top: 14px;

  font-size: clamp(
    1.8rem,
    3vw,
    2.4rem
  );
}

.contact-section-heading p {
  margin-top: 14px;

  color: var(--muted);
  font-size: 1.02rem;
}


/* =========================================================
   CONTACT LAYOUT
   ========================================================= */

.contact-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(300px, 0.75fr);

  gap: 36px;

  align-items: start;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.contact-form-card {
  padding: 38px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card-heading {
  margin-bottom: 30px;
}

.form-card-label {
  display: block;

  margin-bottom: 8px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-card-heading h2 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.form-card-heading p {
  max-width: 620px;

  color: var(--muted);
  font-size: 0.94rem;
}


/* =========================================================
   FORM FIELDS
   ========================================================= */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 21px;
}

.form-group label {
  display: block;

  margin-bottom: 8px;

  color: var(--ink);

  font-size: 0.84rem;
  font-weight: 700;
}

.form-group label span {
  color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 13px 14px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--cream);

  font-family: inherit;
  font-size: 0.92rem;

  outline: none;

  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.form-group textarea {
  min-height: 150px;

  resize: vertical;
  line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #978979;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}

.form-group select {
  cursor: pointer;
}


/* FIELD ERRORS */

.field-error {
  display: none;

  margin-top: 6px;

  color: var(--red);

  font-size: 0.77rem;
  font-weight: 600;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--red);

  background:
    rgba(213, 22, 31, 0.025);
}

.form-group.error .field-error {
  display: block;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.submit-btn {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 22px;

  border: 0;
  border-radius: 10px;

  color: var(--white);
  background: var(--red);

  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.submit-btn svg {
  width: 18px;
  height: 18px;
}

.submit-btn:hover {
  background: var(--red-dark);

  transform: translateY(-1px);

  box-shadow:
    0 10px 22px -10px
    rgba(213, 22, 31, 0.7);
}

.submit-btn:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.3);
  outline-offset: 3px;
}

.form-note {
  margin-top: 12px;

  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}


/* FORM STATUS */

.form-status {
  margin-top: 18px;
  padding: 14px 16px;

  border: 1px solid var(--green);
  border-radius: 9px;

  color: var(--green);
  background: rgba(53, 81, 63, 0.08);

  font-size: 0.86rem;
  font-weight: 600;
}

.form-status:empty {
  display: none;
}

.form-status.error-status {
  color: var(--red);
  border-color: var(--red);

  background: rgba(213, 22, 31, 0.06);
}


/* =========================================================
   INFORMATION CARDS
   ========================================================= */

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 22px 23px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.info-card:hover {
  border-color:
    rgba(213, 22, 31, 0.4);

  transform: translateY(-2px);

  box-shadow:
    0 10px 24px -18px
    rgba(42, 26, 16, 0.5);
}

.info-icon {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  flex: 0 0 45px;

  border-radius: 10px;

  color: var(--gold);
  background: var(--soil);
}

.info-icon svg {
  width: 21px;
  height: 21px;
}

.info-label {
  display: block;

  margin-bottom: 4px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card h3 {
  margin-bottom: 7px;
  font-size: 1.03rem;
}

.info-card p {
  margin: 0 0 3px;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.6;
}

.info-card a {
  color: var(--ink);
  font-weight: 700;

  transition: color 0.15s ease;
}

.info-card a:hover {
  color: var(--red);
}


/* =========================================================
   WHATSAPP CARD
   ========================================================= */

.whatsapp-card {
  color: var(--white);

  border-color: #25d366;
  background: #25d366;
}

.whatsapp-card:hover {
  border-color: #1eac52;

  box-shadow:
    0 12px 26px -16px
    rgba(37, 211, 102, 0.9);
}

.whatsapp-card .info-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-card .info-label,
.whatsapp-card h3 {
  color: var(--white);
}

.whatsapp-card p {
  color: rgba(255, 255, 255, 0.87);
}

.whatsapp-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 7px;

  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.whatsapp-card a:hover {
  color: var(--white);
}


/* =========================================================
   BUSINESS HOURS
   ========================================================= */

.hours-content {
  width: 100%;
}

.hours-list {
  width: 100%;
  margin-top: 4px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;

  padding: 5px 0;

  color: var(--muted);
  font-size: 0.8rem;
}

.hours-list strong {
  color: var(--ink);

  font-size: 0.8rem;
  font-weight: 700;
  text-align: right;
}


/* =========================================================
   MAP
   ========================================================= */

.map-card {
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);
}

.map-frame {
  width: 100%;
  height: 390px;

  display: block;

  border: 0;
}

.map-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 20px 24px;
}

.map-caption strong {
  display: block;
  margin-bottom: 4px;
}

.map-caption p {
  color: var(--muted);
  font-size: 0.87rem;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  flex-shrink: 0;

  color: var(--red);

  font-size: 0.87rem;
  font-weight: 700;

  transition:
    gap 0.15s ease,
    color 0.15s ease;
}

.directions-link:hover {
  gap: 11px;
  color: var(--red-dark);
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  max-width: 860px;

  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;

  padding: 20px 48px 20px 0;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.08rem;
  font-weight: 700;

  cursor: pointer;

  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;

  content: "+";

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 1.35rem;
  font-weight: 500;

  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 760px;

  padding: 0 48px 21px 0;

  color: var(--muted);
  font-size: 0.92rem;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.22);
  outline-offset: 3px;
}


/* =========================================================
   FOOTER CONTACT LINKS
   ========================================================= */
/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 980px) {

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .info-stack {
    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .whatsapp-card {
    grid-column: span 2;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 720px) {


.contact-form-card {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .info-stack {
    display: flex;
  }

  .whatsapp-card {
    grid-column: auto;
  }

  .map-frame {
    height: 320px;
  }

  .map-caption {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .contact-form-card {
    padding: 25px 19px;
  }

  .info-card {
    padding: 20px 18px;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .hours-list strong {
    text-align: left;
  }

  .map-frame {
    height: 280px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .submit-btn,
  .info-card,
  .directions-link,
  .form-group input,
  .form-group select,
  .form-group textarea {
    transition: none;
  }

}


/* =========================================================
   IKONIC LTD — BLOG PAGE

   This file contains styles specific to blog.html.

   Shared colours, typography, header, footer, buttons,
   section spacing and mobile navigation remain in style.css.
   ========================================================= */


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.blog-page .visually-hidden {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* =========================================================
   ACTIVE NAVIGATION AND LOGO
   ========================================================= */
/* =========================================================
   PAGE BANNER
   ========================================================= */
/* BREADCRUMB */
/* PAGE HEADING */
/* FURROW DIVIDER */
/* =========================================================
   BLOG SECTION
   ========================================================= */

.blog-section {
  padding-top: 56px;
}


/* =========================================================
   FEATURED ARTICLE
   ========================================================= */

.featured-post {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.9fr)
    minmax(0, 1.1fr);

  overflow: hidden;

  margin-bottom: 56px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow: var(--shadow);
}

.featured-media {
  position: relative;

  min-height: 340px;

  display: grid;
  place-items: center;

  padding: 42px;

  color: var(--gold);
  background: var(--soil);
}

.featured-media::before {
  position: absolute;
  inset: 0;

  content: "";

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(232, 163, 61, 0.12),
      transparent 60%
    );
}

.featured-media > svg {
  position: relative;
  z-index: 2;

  width: 155px;
  height: 155px;
}

.featured-media .post-category {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
}

.featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 44px 42px;
}

.featured-body h2 {
  margin: 15px 0;

  font-size: clamp(
    1.5rem,
    2.5vw,
    2rem
  );
}

.featured-body > p {
  margin-bottom: 23px;

  color: var(--muted);
  font-size: 0.98rem;
}


/* =========================================================
   POST CATEGORIES
   ========================================================= */

.post-category {
  display: inline-flex;
  align-items: center;

  width: fit-content;

  padding: 5px 10px;

  border-radius: 999px;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-farming {
  color: var(--ink);
  background: var(--gold);
}

.category-maintenance {
  color: var(--white);
  background: var(--soil);
}

.featured-media .category-maintenance {
  color: var(--soil);
  background: var(--gold);
}

.category-success {
  color: var(--white);
  background: var(--green);
}

.category-news {
  color: var(--white);
  background: var(--red);
}


/* =========================================================
   POST METADATA
   ========================================================= */

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
}

.meta-dot {
  width: 3px;
  height: 3px;

  display: inline-block;

  border-radius: 50%;
  background: var(--muted);
}


/* =========================================================
   READ MORE LINKS
   ========================================================= */

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  width: fit-content;

  margin-top: auto;

  color: var(--red);

  font-size: 0.87rem;
  font-weight: 700;

  transition:
    gap 0.15s ease,
    color 0.15s ease;
}

.read-more-link:hover {
  gap: 10px;
  color: var(--red-dark);
}


/* =========================================================
   BLOG LAYOUT
   ========================================================= */

.blog-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    300px;

  gap: 42px;

  align-items: start;
}


/* =========================================================
   FILTERS AND SEARCH
   ========================================================= */

.blog-toolbar {
  scroll-margin-top: 100px;

  display: flex;
  flex-direction: column;
  gap: 16px;

  margin-bottom: 16px;
}

.blog-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter {
  padding: 8px 15px;

  border: 1.5px solid var(--line);
  border-radius: 999px;

  color: var(--ink);
  background: var(--white);

  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.blog-filter:hover {
  color: var(--red);
  border-color: var(--red);

  transform: translateY(-1px);
}

.blog-filter.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}


/* SEARCH */

.blog-search {
  position: relative;

  max-width: 420px;
}

.blog-search svg {
  position: absolute;
  top: 50%;
  left: 14px;

  width: 17px;
  height: 17px;

  color: var(--muted);

  pointer-events: none;

  transform: translateY(-50%);
}

.blog-search input {
  width: 100%;

  padding: 12px 15px 12px 42px;

  border: 1px solid var(--line);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-family: inherit;
  font-size: 0.9rem;

  outline: none;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.blog-search input:focus {
  border-color: var(--red);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}


/* RESULTS SUMMARY */

.results-summary {
  min-height: 20px;

  margin-bottom: 22px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
}


/* =========================================================
   ARTICLE GRID
   ========================================================= */

.article-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}


/* RESET CONFLICTING HOMEPAGE BLOG STYLES */

.blog-page .blog-post-card span {
  color: inherit;

  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.blog-page .blog-post-card .post-category {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ARTICLE CARD */

.blog-post-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 100%;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.blog-post-card[hidden] {
  display: none;
}

.blog-post-card:hover {
  border-color:
    rgba(213, 22, 31, 0.5);

  box-shadow: var(--shadow);

  transform: translateY(-4px);
}


/* ARTICLE MEDIA */

.blog-card-media {
  position: relative;

  min-height: 155px;

  display: grid;
  place-items: center;

  padding: 38px 20px;

  color: var(--red);
  background: var(--cream-2);
}

.blog-card-media::after {
  position: absolute;
  inset: 0;

  content: "";

  background:
    linear-gradient(
      135deg,
      transparent 50%,
      rgba(213, 22, 31, 0.04)
    );
}

.blog-card-media > svg {
  position: relative;
  z-index: 2;

  width: 66px;
  height: 66px;
}

.blog-card-media .post-category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
}


/* ARTICLE BODY */

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 22px 21px;
}

.blog-card-body h2 {
  margin: 12px 0 10px;

  font-size: 1.09rem;
  line-height: 1.35;
}

.blog-card-body > p {
  flex-grow: 1;

  margin-bottom: 18px;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.65;
}


/* =========================================================
   NO RESULTS
   ========================================================= */

.no-results {
  padding: 60px 20px;

  text-align: center;
}

.no-results[hidden] {
  display: none;
}

.no-results svg {
  width: 44px;
  height: 44px;

  margin: 0 auto 15px;

  color: var(--line);
}

.no-results h2 {
  margin-bottom: 7px;

  font-size: 1.2rem;
}

.no-results p {
  color: var(--muted);
  font-size: 0.9rem;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 42px;
}

.blog-pagination[hidden] {
  display: none;
}

.pagination-button {
  min-width: 40px;
  height: 40px;

  display: inline-grid;
  place-items: center;

  padding: 0 13px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--white);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;

  cursor: pointer;

  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.pagination-button:hover:not(:disabled) {
  color: var(--red);
  border-color: var(--red);
}

.pagination-button.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.pagination-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.blog-sidebar {
  position: sticky;
  top: 95px;

  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-card {
  padding: 25px 23px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
}

.sidebar-card > h2 {
  margin-bottom: 18px;

  font-size: 1.08rem;
}


/* SIDEBAR CATEGORIES */

.sidebar-category-list {
  display: flex;
  flex-direction: column;
}

.sidebar-category {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  padding: 10px 0;

  border: 0;
  border-bottom: 1px solid var(--line);

  color: var(--ink);
  background: transparent;

  font-family: inherit;
  font-size: 0.86rem;
  text-align: left;

  cursor: pointer;

  transition: color 0.15s ease;
}

.sidebar-category:last-child {
  border-bottom: 0;
}

.sidebar-category:hover,
.sidebar-category.active {
  color: var(--red);
}

.sidebar-category strong {
  min-width: 28px;

  padding: 2px 8px;

  border-radius: 999px;

  color: var(--muted);
  background: var(--cream-2);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  text-align: center;
}

.sidebar-category.active strong {
  color: var(--white);
  background: var(--red);
}


/* RECENT POSTS */

.recent-post-list {
  display: flex;
  flex-direction: column;
}

.recent-post {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  padding: 12px 0;

  border-bottom: 1px solid var(--line);
}

.recent-post:first-child {
  padding-top: 0;
}

.recent-post:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.recent-post-icon {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  flex: 0 0 52px;

  border-radius: 9px;

  color: var(--red);
  background: var(--cream-2);
}

.recent-post-icon svg {
  width: 24px;
  height: 24px;
}

.recent-post strong {
  display: block;

  margin-bottom: 5px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 0.85rem;
  line-height: 1.35;

  transition: color 0.15s ease;
}

.recent-post:hover strong {
  color: var(--red);
}

.recent-post time {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-card {
  border-color: var(--soil);

  color: var(--white);
  background: var(--soil);
}

.newsletter-card > h2 {
  color: var(--white);
}

.newsletter-card > p {
  margin-bottom: 17px;

  color: #cbb99e;

  font-size: 0.85rem;
  line-height: 1.6;
}

.newsletter-card input {
  width: 100%;

  padding: 11px 13px;

  margin-bottom: 10px;

  border: 1px solid
    rgba(255, 255, 255, 0.2);

  border-radius: 9px;

  color: var(--white);

  background:
    rgba(255, 255, 255, 0.08);

  font-family: inherit;
  font-size: 0.86rem;

  outline: none;
}

.newsletter-card input::placeholder {
  color: #cbb99e;
}

.newsletter-card input:focus {
  border-color: var(--gold);

  box-shadow:
    0 0 0 3px
    rgba(232, 163, 61, 0.12);
}

.newsletter-card button {
  width: 100%;

  padding: 11px 14px;

  border: 0;
  border-radius: 9px;

  color: var(--ink);
  background: var(--gold);

  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.newsletter-card button:hover {
  background: #f0b355;

  transform: translateY(-1px);
}

.newsletter-success {
  margin-top: 11px;

  color: var(--gold);

  font-size: 0.8rem;
  font-weight: 600;
}

.newsletter-success[hidden] {
  display: none;
}


/* =========================================================
   CTA
   ========================================================= */
/* =========================================================
   FOOTER CONTACT LINKS
   ========================================================= */
/* =========================================================
   FOCUS STYLES
   ========================================================= */

.blog-filter:focus-visible,
.sidebar-category:focus-visible,
.pagination-button:focus-visible,
.read-more-link:focus-visible,
.newsletter-card button:focus-visible,
.newsletter-card input:focus-visible {
  outline: 3px solid
    rgba(213, 22, 31, 0.25);

  outline-offset: 3px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 980px) {

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-media {
    min-height: 250px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;

    display: grid;
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    align-items: start;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 760px) {


.featured-body {
    padding: 32px 25px;
  }

  .featured-media {
    min-height: 220px;
  }

  .featured-media > svg {
    width: 120px;
    height: 120px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    display: flex;
  }

  .blog-search {
    max-width: none;
  }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

  .blog-filter-list {
    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 4px;

    scrollbar-width: none;
  }

  .blog-filter-list::-webkit-scrollbar {
    display: none;
  }

  .blog-filter {
    flex: 0 0 auto;
  }

  .featured-body {
    padding: 28px 21px;
  }

  .featured-media {
    min-height: 200px;
  }

  .blog-card-body {
    padding: 21px 19px;
  }

  .pagination-button {
    min-width: 36px;
    height: 38px;

    padding: 0 10px;

    font-size: 0.7rem;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .blog-post-card,
  .blog-filter,
  .read-more-link,
  .pagination-button,
  .newsletter-card button,
  .recent-post strong {
    transition: none;
  }

}


/* =========================================================
   IKONIC LTD — SIMPLE SINGLE BLOG POST
   ========================================================= */


/* ACTIVE NAVIGATION */
/* =========================================================
   POST HEADER
   ========================================================= */

.post-header {
  padding: 70px 0 76px;

  color: var(--white);

  background:
    linear-gradient(
      160deg,
      var(--soil) 0%,
      #4a2e1c 65%,
      var(--soil) 100%
    );
}

.post-header-inner {
  max-width: 900px;
}

.back-to-blog {
  display: inline-flex;

  margin-bottom: 28px;

  color: #cbb99e;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;

  transition: color 0.15s ease;
}

.back-to-blog:hover {
  color: var(--white);
}

.single-post-page .post-category {
  display: block;

  width: fit-content;

  padding: 6px 12px;
  margin-bottom: 18px;

  border-radius: 999px;

  color: var(--soil);
  background: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-header h1 {
  max-width: 880px;

  margin-bottom: 24px;

  color: var(--white);

  font-size:
    clamp(
      2.2rem,
      5vw,
      4rem
    );

  line-height: 1.08;
}

.single-post-page .post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;

  color: #cbb99e;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}

.single-post-page .meta-dot {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--gold);
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.featured-image-section {
  padding-top: 56px;
}

.featured-image {
  max-width: 1000px;

  overflow: hidden;

  margin: 0 auto;

  border-radius: var(--radius);

  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.featured-image img {
  width: 100%;
  height: 520px;

  object-fit: cover;
}


/* =========================================================
   POST BODY
   ========================================================= */

.post-body-section {
  padding: 68px 0 92px;
}

.post-body {
  max-width: 780px;
  margin: 0 auto;
}

.post-body p {
  margin-bottom: 23px;

  color: #4f4438;

  font-size: 1.02rem;
  line-height: 1.85;
}

.post-body .post-lead {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.65;
}

.post-body h2 {
  margin: 55px 0 19px;

  font-size:
    clamp(
      1.55rem,
      3vw,
      2.15rem
    );

  line-height: 1.25;
}

.post-body h3 {
  margin: 31px 0 13px;

  font-size: 1.25rem;
}

.post-body ul {
  display: flex;
  flex-direction: column;
  gap: 11px;

  margin: 18px 0 30px;
}

.post-body li {
  position: relative;

  padding-left: 25px;

  color: #4f4438;

  font-size: 0.98rem;
  line-height: 1.7;
}

.post-body li::before {
  position: absolute;
  top: 0.7em;
  left: 0;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  content: "";

  background: var(--gold);

  transform: translateY(-50%);
}


/* BLOCKQUOTE */

.post-body blockquote {
  margin: 33px 0;
  padding: 27px 30px;

  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;

  color: var(--ink);
  background: var(--cream-2);

  font-family: "Zilla Slab", serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
}


/* ARTICLE NOTES */

.post-note,
.post-warning {
  margin: 30px 0;
  padding: 23px 25px;

  border-radius: var(--radius);
}

.post-note {
  border: 1px solid
    rgba(232, 163, 61, 0.55);

  background:
    rgba(232, 163, 61, 0.1);
}

.post-warning {
  border: 1px solid
    rgba(213, 22, 31, 0.35);

  background:
    rgba(213, 22, 31, 0.06);
}

.post-note strong,
.post-warning strong {
  display: block;

  margin-bottom: 7px;
}

.post-warning strong {
  color: var(--red);
}

.post-note p,
.post-warning p {
  margin: 0;

  font-size: 0.91rem;
  line-height: 1.7;
}


/* =========================================================
   SERVICE CHECKLIST
   ========================================================= */

.service-checklist {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 12px;

  margin: 29px 0 38px;
}

.service-checklist div {
  display: flex;
  align-items: center;
  gap: 11px;

  padding: 14px 15px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.86rem;
  font-weight: 600;
}

.service-checklist span {
  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  flex: 0 0 24px;

  border-radius: 50%;

  color: var(--white);
  background: var(--green);

  font-size: 0.73rem;
}


/* =========================================================
   POST CONTACT BOX
   ========================================================= */

.post-contact-box {
  margin-top: 55px;
  padding: 38px;

  border-radius: var(--radius);

  color: var(--white);
  background: var(--green);
}

.post-contact-box h2 {
  margin: 0 0 11px;

  color: var(--white);

  font-size: 1.65rem;
}

.post-contact-box p {
  max-width: 600px;

  margin-bottom: 22px;

  color: #dce5dd;

  font-size: 0.94rem;
}


/* =========================================================
   RELATED POSTS
   ========================================================= */

.related-posts {
  border-top: 1px solid var(--line);
}

.related-post-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.related-post-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.related-post-card:hover {
  border-color: var(--red);

  box-shadow: var(--shadow);

  transform: translateY(-4px);
}

.related-post-image {
  overflow: hidden;

  background: var(--cream);
}

.related-post-image img {
  width: 100%;
  height: 200px;

  object-fit: cover;

  transition: transform 0.25s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.04);
}

.related-post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 23px 21px;
}

.related-post-content > span {
  margin-bottom: 10px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.related-post-content h3 {
  margin-bottom: 10px;

  font-size: 1.12rem;
  line-height: 1.4;
}

.related-post-content h3 a {
  transition: color 0.15s ease;
}

.related-post-content h3 a:hover {
  color: var(--red);
}

.related-post-content p {
  flex-grow: 1;

  margin-bottom: 17px;

  color: var(--muted);

  font-size: 0.87rem;
  line-height: 1.65;
}

.related-post-link {
  width: fit-content;

  color: var(--red);

  font-size: 0.83rem;
  font-weight: 700;
}


/* =========================================================
   FOOTER CONTACT LINKS
   ========================================================= */
/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .featured-image img {
    height: 420px;
  }

  .related-post-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 720px) {

  .post-header {
    padding: 52px 0 58px;
  }

  .featured-image-section {
    padding-top: 35px;
  }

  .featured-image img {
    height: 340px;
  }

  .post-body-section {
    padding-top: 52px;
  }

  .service-checklist {
    grid-template-columns: 1fr;
  }

  .related-post-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 480px) {

  .post-header h1 {
    font-size: 2.15rem;
  }

  .featured-image img {
    height: 260px;
  }

  .post-body .post-lead {
    font-size: 1.2rem;
  }

  .post-contact-box {
    padding: 29px 23px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .related-post-card,
  .related-post-image img {
    transition: none;
  }

}


/* =========================================================
   BACKGROUND VIDEO FEATURE SECTION
   ========================================================= */

.video-feature-section {
  position: relative;

  min-height: 620px;
  overflow: hidden;

  display: flex;
  align-items: center;

  padding: 100px 0;

  background: var(--soil);
}


/* BACKGROUND VIDEO */

.video-feature-background {
  position: absolute;
  inset: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* DARK OVERLAY */

.video-feature-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(24, 14, 9, 0.9) 0%,
      rgba(31, 18, 11, 0.78) 45%,
      rgba(31, 18, 11, 0.6) 70%,
      rgba(24, 14, 9, 0.7) 100%
    );
}


/* OPTIONAL PATTERN */

.video-feature-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;

  opacity: 0.12;
  pointer-events: none;
}

.video-feature-pattern svg {
  width: 100%;
  height: 100%;
}

.video-feature-pattern path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}


/* CONTENT */

.video-feature-content {
  position: relative;
  z-index: 3;

  width: 100%;
}

.video-feature-content > * {
  max-width: 720px;
}


/* EYEBROW */

.video-feature-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 18px;

  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-feature-eyebrow::before {
  width: 20px;
  height: 2px;

  content: "";

  background: var(--gold);
}


/* HEADING */

.video-feature-content h2 {
  margin-bottom: 22px;

  color: var(--white);

  font-size:
    clamp(
      2.2rem,
      4.8vw,
      4rem
    );

  line-height: 1.08;
}

.video-feature-content h2 em {
  display: block;

  color: var(--gold);
  font-style: normal;
}


/* PARAGRAPH */

.video-feature-content p {
  margin-bottom: 32px;

  color: rgba(255, 255, 255, 0.86);

  font-size: 1.08rem;
  line-height: 1.75;
}


/* BUTTONS */

.video-feature-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.video-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 25px;

  border: 1.5px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;

  color: var(--white);
  background: transparent;

  font-size: 0.94rem;
  font-weight: 600;

  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.video-outline-button:hover {
  color: var(--soil);
  border-color: var(--white);
  background: var(--white);

  transform: translateY(-2px);
}


/* OPTIONAL BOTTOM ACCENT */

.video-feature-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;

  height: 4px;

  content: "";

  background: var(--red);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .video-feature-section {
    min-height: 560px;

    padding: 82px 0;
  }

  .video-feature-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(24, 14, 9, 0.9) 0%,
        rgba(24, 14, 9, 0.76) 100%
      );
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .video-feature-section {
    min-height: 540px;

    padding: 72px 0;
  }

  .video-feature-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(24, 14, 9, 0.72) 0%,
        rgba(24, 14, 9, 0.9) 100%
      );
  }

  .video-feature-content h2 em {
    display: inline;
  }

  .video-feature-content p {
    font-size: 1rem;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .video-feature-section {
    min-height: 520px;

    padding: 62px 0;
  }

  .video-feature-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .video-feature-actions .btn,
  .video-outline-button {
    width: 100%;

    justify-content: center;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .video-feature-background {
    display: none;
  }

  .video-feature-section {
    background:
      linear-gradient(
        rgba(24, 14, 9, 0.82),
        rgba(24, 14, 9, 0.82)
      ),
      url("../images/farm.jpg")
      center / cover no-repeat;
  }

  .video-outline-button {
    transition: none;
  }

}




/* =========================================================
   HOMEPAGE PRODUCT IMAGE GRID
   ========================================================= */

.products-grid {
  display: grid;
  grid-template-columns:
    repeat(
      auto-fit,
      minmax(210px, 1fr)
    );
  gap: 20px;
}

.product-chip {
  position: relative;
  overflow: hidden;

  padding: 0;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  text-align: left;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.product-chip:hover {
  border-color: rgba(213, 22, 31, 0.55);

  box-shadow: var(--shadow);

  transform: translateY(-5px);
}


/* PRODUCT IMAGE */

.product-chip-image {
  position: relative;
  overflow: hidden;

  width: 100%;
  aspect-ratio: 4 / 3;

  background: var(--cream-2);
}

.product-chip-image::after {
  position: absolute;
  inset: 0;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(42, 26, 16, 0.15) 100%
    );
}

.product-chip-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.35s ease;
}

.product-chip:hover .product-chip-image img {
  transform: scale(1.06);
}


/* PRODUCT NAME */

.product-chip-content {
  position: relative;

  padding: 18px 18px 19px;
}

.product-chip-content::before {
  position: absolute;
  top: 0;
  left: 18px;

  width: 32px;
  height: 3px;

  content: "";

  background: var(--red);

  transform: translateY(-50%);
}

.product-chip-content p {
  margin: 0;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.3;
}


/* =========================================================
   HOMEPAGE PRODUCT CATEGORY CARDS
   ========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.cat-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  padding: 0;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.cat-card::before {
  display: none;
}

.cat-card:hover {
  border-color: rgba(213, 22, 31, 0.5);

  box-shadow: var(--shadow);

  transform: translateY(-5px);
}


/* CATEGORY IMAGE */

.cat-card-image {
  position: relative;
  overflow: hidden;

  display: block;

  width: 100%;
  aspect-ratio: 16 / 10;

  background: var(--cream-2);
}

.cat-card-image::after {
  position: absolute;
  inset: 0;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(42, 26, 16, 0.02) 25%,
      rgba(42, 26, 16, 0.52) 100%
    );
}

.cat-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.4s ease;
}

.cat-card:hover .cat-card-image img {
  transform: scale(1.055);
}


/* IMAGE LABEL */

.cat-card-image-label {
  position: absolute;
  right: 14px;
  bottom: 13px;
  z-index: 2;

  padding: 6px 10px;

  border: 1px solid
    rgba(255, 255, 255, 0.3);
  border-radius: 999px;

  color: var(--white);
  background: rgba(42, 26, 16, 0.72);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  backdrop-filter: blur(5px);
}


/* CATEGORY CONTENT */

.cat-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 25px 24px 24px;
}

.cat-card-content h3 {
  margin-bottom: 7px;

  font-size: 1.22rem;
  line-height: 1.3;
}

.cat-count {
  margin-bottom: 17px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* CATEGORY LIST */

.cat-card ul {
  flex-grow: 1;

  margin-bottom: 22px;
}

.cat-card li {
  display: flex;
  align-items: center;
  gap: 9px;

  padding: 8px 0;

  border-bottom: 1px dashed var(--line);

  color: var(--ink);

  font-size: 0.88rem;
}

.cat-card li:last-child {
  border-bottom: 0;
}

.cat-card li::before {
  width: 6px;
  height: 6px;

  flex: 0 0 6px;

  border-radius: 50%;

  content: "";

  background: var(--red);
}


/* CATEGORY LINK */

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  width: fit-content;

  color: var(--red);

  font-size: 0.87rem;
  font-weight: 700;

  transition:
    gap 0.15s ease,
    color 0.15s ease;
}

.read-more:hover {
  gap: 10px;

  color: var(--red-dark);
}


/* =========================================================
   RESPONSIVE PRODUCT IMAGES
   ========================================================= */

@media (max-width: 1080px) {

  .cards-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 720px) {

  .products-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 560px) {

  .products-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .product-chip-image {
    aspect-ratio: 16 / 10;
  }

}

/* =========================================================
   WORDPRESS CLASSIC THEME COMPATIBILITY
   Keeps generated WordPress markup visually identical to the
   original static HTML design.
   ========================================================= */

.site-header ul,
.site-footer ul,
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .primary-navigation {
  display: flex;
  align-items: center;
}

.site-header .main-nav {
  margin: 0;
  padding: 0;
}

.site-header .main-nav > li {
  margin: 0;
  padding: 0;
}

.site-header .site-logo,
.site-header .custom-logo {
  display: block;
  width: 110px;
  max-width: 110px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.site-header .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-header .current-menu-item > a,
.site-header .current_page_item > a,
.site-header .current-menu-ancestor > a {
  color: var(--red);
}

.site-header .current-menu-item > a::after,
.site-header .current_page_item > a::after,
.site-header .current-menu-ancestor > a::after {
  width: 100%;
}

.admin-bar .site-header {
  top: 32px;
}

main,
#main-content {
  display: block;
  width: 100%;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-logo img {
  display: block;
  width: 100px;
  height: auto;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .site-header .primary-navigation {
    position: static;
  }

  .site-header .main-nav {
    display: none;
  }

  .site-header .main-nav.nav-open {
    display: flex;
  }

  .site-header .main-nav li,
  .site-header .main-nav a {
    width: 100%;
  }
}




.about-visual-image {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}



/* =========================================================
   ABOUT PAGE IMAGE
   ========================================================= */

.about-visual {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;

  display: block;

  border-radius: var(--radius);
  background: transparent;
  box-shadow: var(--shadow);
}

/* Remove the old green decorative overlay */

.about-visual::before {
  display: none;
  content: none;
}

/* Remove the old dotted circle */

.about-visual .visual-ring {
  display: none;
}

/* Full-size image */

.about-visual-image {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 360px;

  object-fit: cover;
  object-position: center;

  border-radius: inherit;
}



@media (max-width: 980px) {

  .about-visual,
  .about-visual-image {
    min-height: 320px;
  }

}

@media (max-width: 520px) {

  .about-visual,
  .about-visual-image {
    min-height: 260px;
  }

}





/* =========================================================
   PRODUCT CARD IMAGES
   ========================================================= */

.product-detail-card {
  padding: 0;
}

.product-card-image {
  position: relative;
  overflow: hidden;

  width: 100%;
  aspect-ratio: 4 / 3;

  background: var(--cream-2);
}

.product-card-image::after {
  position: absolute;
  inset: 0;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 58%,
      rgba(42, 26, 16, 0.16) 100%
    );
}

.product-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.35s ease;
}

.product-detail-card:hover .product-card-image img {
  transform: scale(1.055);
}

.product-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 25px 24px 24px;
}

.product-card-content > p {
  margin-bottom: 18px;

  color: var(--muted);
  font-size: 0.9rem;
}

.product-card-content .product-highlights {
  margin-bottom: 24px;
}

.product-card-content .product-card-footer {
  margin-top: auto;
}


/* Remove the old product icons */

.product-detail-card .product-icon {
  display: none;
}


/* Responsive product images */

@media (max-width: 620px) {

  .product-card-image {
    aspect-ratio: 16 / 10;
  }

  .product-card-content {
    padding: 23px 21px 22px;
  }

}



















/* =========================================================
   WORDPRESS BLOG IMAGES
   ========================================================= */

.featured-media.has-image,
.blog-card-media.has-image {
  padding: 0;
}

.featured-media.has-image {
  display: block;
  min-height: 340px;
}

.featured-post-image {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 340px;

  object-fit: cover;
  object-position: center;
}

.featured-media.has-image::after,
.blog-card-media.has-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(42, 26, 16, 0.05) 35%,
      rgba(42, 26, 16, 0.4) 100%
    );
}

.featured-media .post-category,
.blog-card-media .post-category {
  z-index: 3;
}

.blog-card-media.has-image {
  display: block;

  min-height: 190px;
  padding: 0;
}

.blog-post-image {
  display: block;

  width: 100%;
  height: 190px;

  object-fit: cover;
  object-position: center;

  transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image {
  transform: scale(1.045);
}

.blog-card-body h2 a {
  transition: color 0.15s ease;
}

.blog-card-body h2 a:hover,
.featured-body h2 a:hover {
  color: var(--red);
}


/* BLOG SIDEBAR ACTION */

.newsletter-action {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 14px;

  border-radius: 9px;

  color: var(--ink);
  background: var(--gold);

  font-size: 0.86rem;
  font-weight: 700;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.newsletter-action:hover {
  color: var(--ink);
  background: #f0b355;

  transform: translateY(-1px);
}


/* WORDPRESS PAGINATION */

.blog-pagination .pagination-button {
  text-decoration: none;
}

.blog-pagination .pagination-button.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);

  pointer-events: none;
}


/* BLOG EMPTY STATE BUTTON */

.no-results .btn {
  margin-top: 22px;
}


@media (max-width: 760px) {

  .featured-media.has-image,
  .featured-post-image {
    min-height: 240px;
  }

}


@media (max-width: 520px) {

  .featured-media.has-image,
  .featured-post-image {
    min-height: 210px;
  }

  .blog-card-media.has-image,
  .blog-post-image {
    height: 210px;
  }

}










/* =========================================================
   SINGLE POST WORDPRESS ADDITIONS
   ========================================================= */

.featured-image-caption {
  padding: 12px 16px;

  color: var(--muted);
  background: var(--white);

  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}


/* WORDPRESS CONTENT */

.post-body > *:first-child {
  margin-top: 0;
}

.post-body img {
  height: auto;

  border-radius: 10px;
}

.post-body figure {
  margin: 34px 0;
}

.post-body figcaption {
  margin-top: 9px;

  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.post-body ol {
  display: flex;
  flex-direction: column;
  gap: 11px;

  margin: 18px 0 30px;

  counter-reset: post-list;
}

.post-body ol li {
  position: relative;

  padding-left: 34px;

  color: #4f4438;

  font-size: 0.98rem;
  line-height: 1.7;

  counter-increment: post-list;
}

.post-body ol li::before {
  position: absolute;
  top: 0;
  left: 0;

  width: 24px;
  height: 24px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  content: counter(post-list);

  color: var(--white);
  background: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
}

.post-body a:not(.btn) {
  color: var(--red);

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-body a:not(.btn):hover {
  color: var(--red-dark);
}

.post-body strong {
  color: var(--ink);
}

.post-body hr {
  height: 1px;

  margin: 42px 0;

  border: 0;

  background: var(--line);
}

.post-body table {
  width: 100%;

  margin: 30px 0;

  border-collapse: collapse;

  background: var(--white);
}

.post-body th,
.post-body td {
  padding: 13px 15px;

  border: 1px solid var(--line);

  color: var(--ink);

  font-size: 0.88rem;
  text-align: left;
}

.post-body th {
  color: var(--white);
  background: var(--soil);
}


/* POST PAGE LINKS */

.post-page-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  margin: 34px 0;
}

.post-page-links > span {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.post-page-links a,
.post-page-links > .post-page-numbers {
  min-width: 36px;
  height: 36px;

  display: inline-grid;
  place-items: center;

  padding: 0 11px;

  border: 1px solid var(--line);
  border-radius: 8px;

  color: var(--ink);
  background: var(--white);

  text-decoration: none;
}


/* SINGLE POST FOOTER */

.single-post-footer {
  display: flex;
  flex-direction: column;
  gap: 22px;

  margin-top: 48px;
  padding-top: 30px;

  border-top: 1px solid var(--line);
}

.single-post-footer-label {
  display: block;

  margin-bottom: 10px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.single-post-category-list,
.single-post-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-post-category,
.single-post-tag {
  display: inline-flex;
  align-items: center;

  padding: 7px 12px;

  border: 1px solid var(--line);
  border-radius: 999px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.76rem;
  font-weight: 700;

  text-decoration: none !important;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.single-post-category:hover,
.single-post-tag:hover {
  color: var(--white) !important;
  border-color: var(--red);
  background: var(--red);
}


/* RELATED POST FALLBACK IMAGES */

.related-post-image {
  display: block;
}

.related-post-image img {
  display: block;

  width: 100%;
  height: 200px;

  object-fit: cover;
  object-position: center;
}


/* BACK LINK */

.back-to-blog {
  align-items: center;
  gap: 7px;
}


@media (max-width: 720px) {

  .post-body table {
    display: block;

    overflow-x: auto;
  }

  .single-post-footer {
    margin-top: 40px;
  }

}
















/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 820px) {

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;

    width: auto;

    /* More space between links and the left edge */
    padding: 16px 18px 16px 40px !important;

    border: 1px solid rgba(255, 255, 255, 0.12);

    /* Remove top-left and top-right rounding */
    border-radius: 0 0 12px 12px;

    background: var(--soil-dark);
    box-shadow: 0 18px 38px rgba(42, 26, 16, 0.28);
  }

  .main-nav li {
    width: 100%;

    margin: 0;
    padding: 0;
  }

  .main-nav a,
  .main-nav .main-nav-link {
    width: 100%;

    display: flex;
    align-items: center;

    padding: 12px 16px;

    border-radius: 8px;

    box-sizing: border-box;
  }

  .main-nav a:hover,
  .main-nav a:focus,
  .main-nav .current-menu-item > a,
  .main-nav .current_page_item > a {
    background: rgba(255, 255, 255, 0.08);
  }

}








.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.72);

  font-size: 0.88rem;
  line-height: 1.5;

  transition: color 0.15s ease;
}

.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--gold);
}

.footer-logo {
  display: inline-block;

  color: var(--white);

  font-family: "Zilla Slab", serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-logo:hover {
  color: var(--white);
}

.footer-logo .hi {
  color: var(--red);
}

.footer-contact .contact-line {
  align-items: flex-start;
}

.footer-contact .contact-icon {
  width: 18px;
  height: 18px;

  display: inline-flex;
  flex: 0 0 18px;

  margin-top: 2px;

  color: var(--gold);
}

.footer-contact .contact-icon svg {
  width: 100%;
  height: 100%;
}


/* =========================================================
   IKONIC WOOCOMMERCE SHOP ARCHIVE
   Added for:
   - woocommerce/archive-product.php
   - WooCommerce default product-card fallback
   - Future woocommerce/content-product.php

   These selectors are intentionally scoped to the shop archive
   so existing pages, posts, header and footer remain unchanged.
   ========================================================= */


/* =========================================================
   SHOP PAGE BASE
   ========================================================= */

.ikonic-shop-page {
  width: 100%;
  min-height: 60vh;
}

.ikonic-shop-page .ikonic-shop-banner {
  padding: 56px 0 60px;
}

.ikonic-shop-page .ikonic-shop-banner .hero-furrows {
  opacity: 0.14;
}

.ikonic-shop-page .ikonic-shop-banner h1 {
  max-width: 760px;
}

.ikonic-shop-page .ikonic-shop-banner p {
  max-width: 620px;
}

.ikonic-shop-section {
  padding-top: 48px;
}


/* =========================================================
   WOOCOMMERCE NOTICES
   ========================================================= */

.ikonic-shop-page .woocommerce-notices-wrapper {
  width: 100%;
  margin-bottom: 24px;
}

.ikonic-shop-page .woocommerce-message,
.ikonic-shop-page .woocommerce-info,
.ikonic-shop-page .woocommerce-error {
  position: relative;

  margin: 0 0 18px;
  padding: 16px 18px 16px 50px;

  border: 1px solid var(--line);
  border-left-width: 4px;
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.88rem;
  line-height: 1.6;

  box-shadow:
    0 10px 24px -20px
    rgba(42, 26, 16, 0.55);
}

.ikonic-shop-page .woocommerce-message {
  border-left-color: var(--green);
}

.ikonic-shop-page .woocommerce-info {
  border-left-color: var(--gold);
}

.ikonic-shop-page .woocommerce-error {
  border-left-color: var(--red);
}

.ikonic-shop-page .woocommerce-message::before,
.ikonic-shop-page .woocommerce-info::before,
.ikonic-shop-page .woocommerce-error::before {
  top: 16px;
  left: 18px;
}

.ikonic-shop-page .woocommerce-message::before {
  color: var(--green);
}

.ikonic-shop-page .woocommerce-info::before {
  color: var(--gold);
}

.ikonic-shop-page .woocommerce-error::before {
  color: var(--red);
}

.ikonic-shop-page .woocommerce-message .button,
.ikonic-shop-page .woocommerce-info .button,
.ikonic-shop-page .woocommerce-error .button {
  float: right;

  margin: -4px 0 -4px 16px;
  padding: 9px 14px;

  border: 0;
  border-radius: 8px;

  color: var(--white);
  background: var(--red);

  font-size: 0.78rem;
  font-weight: 700;
}


/* =========================================================
   SHOP LAYOUT
   ========================================================= */

.ikonic-shop-page .shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.ikonic-shop-page .ikonic-shop-results {
  min-width: 0;
}


/* =========================================================
   FILTER SIDEBAR
   ========================================================= */

.ikonic-shop-page .filters-sidebar {
  position: sticky;
  top: 96px;

  padding: 26px 24px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
}

.ikonic-shop-page .filter-group {
  padding: 22px 0;

  border-bottom: 1px solid var(--line);
}

.ikonic-shop-page .filter-group:first-child {
  padding-top: 0;
}

.ikonic-shop-page .filter-group:last-of-type {
  border-bottom: 0;
}

.ikonic-shop-page .filter-group-title {
  margin-bottom: 14px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1rem;
  font-weight: 700;
}

.ikonic-shop-page .filter-option {
  display: flex;
  align-items: center;
  gap: 9px;

  width: 100%;

  padding: 7px 0;

  color: var(--ink);

  font-size: 0.87rem;
  line-height: 1.4;

  transition:
    color 0.15s ease,
    transform 0.15s ease;
}

.ikonic-shop-page .filter-option:hover {
  color: var(--red);

  transform: translateX(2px);
}

.ikonic-shop-page .filter-checkbox {
  position: relative;

  width: 16px;
  height: 16px;

  flex: 0 0 16px;

  border: 1.5px solid var(--line);
  border-radius: 4px;

  background: var(--white);

  transition:
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-shop-page .filter-option:hover .filter-checkbox {
  border-color: var(--red);
}

.ikonic-shop-page .filter-option.is-active {
  color: var(--red);
  font-weight: 700;
}

.ikonic-shop-page .filter-option.is-active .filter-checkbox {
  border-color: var(--red);
  background: var(--red);
}

.ikonic-shop-page .filter-option.is-active .filter-checkbox::after {
  position: absolute;
  top: 1px;
  left: 4px;

  width: 5px;
  height: 9px;

  content: "";

  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);

  transform: rotate(45deg);
}

.ikonic-shop-page .filter-option-label {
  min-width: 0;
}

.ikonic-shop-page .fo-count {
  margin-left: auto;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}

.ikonic-shop-page .filter-option.is-active .fo-count {
  color: var(--red);
}

.ikonic-shop-page .clear-filters-btn {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 6px;
  padding: 10px 12px;

  border: 1px solid var(--line);
  border-radius: 8px;

  color: var(--muted);
  background: transparent;

  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-shop-page .clear-filters-btn:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(213, 22, 31, 0.03);
}

.ikonic-shop-page .mobile-filter-toggle,
.ikonic-shop-page .filters-backdrop {
  display: none;
}


/* =========================================================
   SHOP TOOLBAR
   ========================================================= */

.ikonic-shop-page .shop-toolbar {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;

  margin-bottom: 24px;
}

.ikonic-shop-page .search-box {
  position: relative;

  min-width: 240px;

  flex: 1 1 320px;
}

.ikonic-shop-page .search-box svg {
  position: absolute;
  top: 50%;
  left: 14px;

  width: 17px;
  height: 17px;

  color: var(--muted);

  pointer-events: none;

  transform: translateY(-50%);
}

.ikonic-shop-page .search-box input {
  width: 100%;
  height: 46px;

  padding: 0 15px 0 42px;

  border: 1px solid var(--line);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-family: inherit;
  font-size: 0.9rem;

  outline: none;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.ikonic-shop-page .search-box input::placeholder {
  color: var(--muted);
}

.ikonic-shop-page .search-box input:focus {
  border-color: var(--red);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}

.ikonic-shop-page .sort-select {
  min-width: 205px;
  height: 46px;

  padding: 0 40px 0 14px;

  border: 1px solid var(--line);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-family: inherit;
  font-size: 0.86rem;

  outline: none;
  cursor: pointer;
}

.ikonic-shop-page .sort-select:focus {
  border-color: var(--red);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}

.ikonic-shop-page .shop-filter-submit {
  min-height: 46px;

  padding: 0 20px;

  border: 0;
  border-radius: 10px;

  color: var(--white);
  background: var(--red);

  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.ikonic-shop-page .shop-filter-submit:hover {
  background: var(--red-dark);

  transform: translateY(-1px);
}


/* =========================================================
   RESULTS META AND ACTIVE FILTERS
   ========================================================= */

.ikonic-shop-page .results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;

  margin-bottom: 20px;
}

.ikonic-shop-page .results-count {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
}

.ikonic-shop-page .results-count strong {
  color: var(--ink);
}

.ikonic-shop-page .active-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.ikonic-shop-page .active-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 6px 10px 6px 12px;

  border: 1px solid transparent;
  border-radius: 999px;

  color: var(--ink);
  background: var(--cream-2);

  font-size: 0.75rem;
  font-weight: 600;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-shop-page .active-chip:hover {
  color: var(--red);
  border-color: rgba(213, 22, 31, 0.28);
  background: var(--white);
}


/* =========================================================
   PRODUCT GRID
   Supports both the forthcoming custom .shop-card markup and
   WooCommerce's current default <li class="product"> markup.
   ========================================================= */

.ikonic-shop-page .shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;

  width: 100%;
}

.ikonic-shop-page .shop-grid::before,
.ikonic-shop-page .shop-grid::after {
  display: none;
}

.ikonic-shop-page .shop-grid > .shop-card,
.ikonic-shop-page .shop-grid > li.product {
  position: relative;
  overflow: hidden;

  width: auto;
  min-width: 0;

  display: flex;
  flex-direction: column;
  float: none;

  margin: 0;
  padding: 0;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.ikonic-shop-page .shop-grid > .shop-card:hover,
.ikonic-shop-page .shop-grid > li.product:hover {
  border-color: rgba(213, 22, 31, 0.5);

  box-shadow: var(--shadow);

  transform: translateY(-4px);
}


/* =========================================================
   CUSTOM PRODUCT CARD
   ========================================================= */

.ikonic-shop-page .shop-card-media {
  position: relative;
  overflow: hidden;

  width: 100%;
  aspect-ratio: 4 / 3;

  display: block;

  background: var(--cream-2);
}

.ikonic-shop-page .shop-card-media > a {
  display: block;

  width: 100%;
  height: 100%;
}

.ikonic-shop-page .shop-card-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.35s ease;
}

.ikonic-shop-page .shop-card:hover .shop-card-media img {
  transform: scale(1.055);
}

.ikonic-shop-page .shop-card-media::after {
  position: absolute;
  inset: 0;

  content: "";

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 58%,
      rgba(42, 26, 16, 0.16) 100%
    );
}

.ikonic-shop-page .shop-card-badge,
.ikonic-shop-page .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;

  min-width: 0;
  min-height: 0;

  margin: 0;
  padding: 5px 9px;

  border-radius: 999px;

  color: var(--ink);
  background: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ikonic-shop-page .badge-new {
  color: var(--white);
  background: var(--green);
}

.ikonic-shop-page .badge-lowstock {
  color: var(--ink);
  background: #f0a94e;
}

.ikonic-shop-page .badge-outofstock {
  color: var(--muted);
  background: var(--line);
}

.ikonic-shop-page .shop-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 20px;
}

.ikonic-shop-page .shop-card-cat {
  margin-bottom: 8px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ikonic-shop-page .shop-card-title {
  margin-bottom: 8px;

  font-size: 1.05rem;
  line-height: 1.3;
}

.ikonic-shop-page .shop-card-title a {
  transition: color 0.15s ease;
}

.ikonic-shop-page .shop-card-title a:hover {
  color: var(--red);
}

.ikonic-shop-page .shop-card-excerpt {
  flex-grow: 1;

  margin-bottom: 16px;

  color: var(--muted);

  font-size: 0.84rem;
  line-height: 1.65;
}

.ikonic-shop-page .shop-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;

  margin-bottom: 7px;
}

.ikonic-shop-page .shop-card-price,
.ikonic-shop-page .shop-card-price .amount {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.ikonic-shop-page .shop-card-price del {
  color: var(--muted);
  opacity: 0.7;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.ikonic-shop-page .shop-card-price ins {
  text-decoration: none;
}

.ikonic-shop-page .stock-status {
  margin-bottom: 14px;

  font-size: 0.77rem;
  font-weight: 700;
}

.ikonic-shop-page .stock-in {
  color: var(--green);
}

.ikonic-shop-page .stock-low {
  color: #b7791f;
}

.ikonic-shop-page .stock-out {
  color: var(--red);
}

.ikonic-shop-page .shop-card-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;

  margin-top: auto;
}

.ikonic-shop-page .shop-card .button,
.ikonic-shop-page .shop-card .add_to_cart_button,
.ikonic-shop-page .shop-card .product_type_variable,
.ikonic-shop-page .shop-card .product_type_external {
  width: 100%;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin: 0;
  padding: 11px 14px;

  border: 0;
  border-radius: 8px;

  color: var(--white);
  background: var(--red);

  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.ikonic-shop-page .shop-card .button:hover,
.ikonic-shop-page .shop-card .add_to_cart_button:hover,
.ikonic-shop-page .shop-card .product_type_variable:hover,
.ikonic-shop-page .shop-card .product_type_external:hover {
  color: var(--white);
  background: var(--red-dark);

  transform: translateY(-1px);
}

.ikonic-shop-page .shop-card .button.loading {
  opacity: 0.75;
}

.ikonic-shop-page .shop-card .button.added {
  background: var(--green);
}

.ikonic-shop-page .shop-card .added_to_cart {
  display: block;

  margin-top: 10px;

  color: var(--red);

  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}


/* =========================================================
   DEFAULT WOOCOMMERCE PRODUCT CARD FALLBACK
   This keeps the page styled before content-product.php is
   replaced by the custom Ikonic product-card template.
   ========================================================= */

.ikonic-shop-page .shop-grid > li.product > a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ikonic-shop-page .shop-grid > li.product a img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;

  display: block;

  margin: 0 0 20px;

  object-fit: cover;
  object-position: center;

  background: var(--cream-2);

  transition: transform 0.35s ease;
}

.ikonic-shop-page .shop-grid > li.product:hover a img {
  transform: scale(1.035);
}

.ikonic-shop-page .shop-grid > li.product
.woocommerce-loop-product__title {
  margin: 0 20px 9px;
  padding: 0;

  color: var(--ink);

  font-size: 1.05rem;
  line-height: 1.3;

  transition: color 0.15s ease;
}

.ikonic-shop-page .shop-grid > li.product
.woocommerce-LoopProduct-link:hover
.woocommerce-loop-product__title {
  color: var(--red);
}

.ikonic-shop-page .shop-grid > li.product .star-rating {
  margin: 0 20px 12px;

  color: var(--gold);
}

.ikonic-shop-page .shop-grid > li.product .price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;

  margin: auto 20px 15px;
  padding: 0;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.ikonic-shop-page .shop-grid > li.product .price del {
  color: var(--muted);
  opacity: 0.7;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
}

.ikonic-shop-page .shop-grid > li.product .price ins {
  text-decoration: none;
}

.ikonic-shop-page .shop-grid > li.product > .button {
  width: calc(100% - 40px);
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 20px 20px;
  padding: 11px 14px;

  border: 0;
  border-radius: 8px;

  color: var(--white);
  background: var(--red);

  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.ikonic-shop-page .shop-grid > li.product > .button:hover {
  color: var(--white);
  background: var(--red-dark);

  transform: translateY(-1px);
}

.ikonic-shop-page .shop-grid > li.product > .added_to_cart {
  margin: -10px 20px 20px;

  color: var(--red);

  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}


/* =========================================================
   EMPTY RESULTS
   ========================================================= */

.ikonic-shop-page .no-results {
  width: 100%;

  padding: 64px 20px;

  text-align: center;
}

.ikonic-shop-page .no-results svg {
  width: 44px;
  height: 44px;

  margin: 0 auto 16px;

  color: var(--line);
}

.ikonic-shop-page .no-results h3 {
  margin-bottom: 8px;

  font-size: 1.25rem;
}

.ikonic-shop-page .no-results p {
  margin-bottom: 22px;

  color: var(--muted);
}


/* =========================================================
   WOOCOMMERCE PAGINATION
   ========================================================= */

.ikonic-shop-page .ikonic-shop-pagination {
  margin-top: 42px;
}

.ikonic-shop-page nav.woocommerce-pagination {
  margin: 0;
  text-align: center;
}

.ikonic-shop-page nav.woocommerce-pagination ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;

  margin: 0;
  padding: 0;

  border: 0;

  list-style: none;
}

.ikonic-shop-page nav.woocommerce-pagination ul li {
  border: 0;
}

.ikonic-shop-page nav.woocommerce-pagination ul li a,
.ikonic-shop-page nav.woocommerce-pagination ul li span {
  min-width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 12px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--white);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-shop-page nav.woocommerce-pagination ul li a:hover,
.ikonic-shop-page nav.woocommerce-pagination ul li a:focus,
.ikonic-shop-page nav.woocommerce-pagination ul li span.current {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ikonic-shop-page .filter-option:focus-visible,
.ikonic-shop-page .clear-filters-btn:focus-visible,
.ikonic-shop-page .active-chip:focus-visible,
.ikonic-shop-page .shop-filter-submit:focus-visible,
.ikonic-shop-page .mobile-filter-toggle:focus-visible,
.ikonic-shop-page .shop-card a:focus-visible,
.ikonic-shop-page .shop-card button:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.25);
  outline-offset: 3px;
}


/* =========================================================
   RESPONSIVE — DESKTOP AND TABLET
   ========================================================= */

@media (max-width: 1080px) {

  .ikonic-shop-page .shop-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 980px) {

  .ikonic-shop-page .shop-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .ikonic-shop-page .mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 20px;
    padding: 11px 17px;

    border: 1.5px solid var(--line);
    border-radius: 10px;

    color: var(--ink);
    background: var(--white);

    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 700;

    cursor: pointer;
  }

  .ikonic-shop-page .mobile-filter-toggle svg {
    width: 16px;
    height: 16px;
  }

  .ikonic-shop-page .filters-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 95;

    width: 310px;
    max-width: 86vw;
    height: 100vh;

    overflow-y: auto;

    border: 0;
    border-radius: 0;

    box-shadow:
      16px 0 34px
      rgba(42, 26, 16, 0.18);

    transform: translateX(-105%);

    transition: transform 0.25s ease;
  }

  .ikonic-shop-page .filters-sidebar.is-open {
    transform: translateX(0);
  }

  .ikonic-shop-page .filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 94;

    width: 100%;
    height: 100%;

    border: 0;

    background: rgba(36, 24, 17, 0.46);

    cursor: pointer;
  }

  .ikonic-shop-page .filters-backdrop.is-open {
    display: block;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .ikonic-shop-page .ikonic-shop-banner {
    padding: 50px 0 55px;
  }

  .ikonic-shop-section {
    padding-top: 38px;
  }

  .ikonic-shop-page .shop-toolbar {
    flex-direction: column;
  }

  .ikonic-shop-page .search-box,
  .ikonic-shop-page .sort-select,
  .ikonic-shop-page .shop-filter-submit {
    width: 100%;
    min-width: 0;
  }

  .ikonic-shop-page .results-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ikonic-shop-page .active-chips {
    justify-content: flex-start;
  }

  .ikonic-shop-page .woocommerce-message .button,
  .ikonic-shop-page .woocommerce-info .button,
  .ikonic-shop-page .woocommerce-error .button {
    width: 100%;
    float: none;

    margin: 10px 0 0;
  }

}


@media (max-width: 620px) {

  .ikonic-shop-page .shop-grid {
    grid-template-columns: 1fr;
  }

  .ikonic-shop-page .shop-card-media,
  .ikonic-shop-page .shop-grid > li.product a img {
    aspect-ratio: 16 / 10;
  }

  .ikonic-shop-page .shop-card-body {
    padding: 21px 19px 20px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ikonic-shop-page .filter-option,
  .ikonic-shop-page .filter-checkbox,
  .ikonic-shop-page .shop-filter-submit,
  .ikonic-shop-page .shop-card,
  .ikonic-shop-page .shop-card-media img,
  .ikonic-shop-page .filters-sidebar,
  .ikonic-shop-page .shop-grid > li.product,
  .ikonic-shop-page .shop-grid > li.product a img {
    transition: none;
  }

}




/* =========================================================
   GLOBAL WOOCOMMERCE CART DRAWER
   ========================================================= */

/* Lock page scrolling while the cart is open */

body.ikonic-cart-open {
  overflow: hidden;
}


/* =========================================================
   HEADER CART BUTTON
   ========================================================= */

.site-header .cart-btn,
.site-header .ikonic-cart-toggle {
  position: relative;

  width: 42px;
  height: 42px;

  display: inline-grid;
  place-items: center;

  flex: 0 0 42px;

  padding: 0;
  margin: 0;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--ink);
  background: var(--white);

  cursor: pointer;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease,
    transform 0.15s ease;
}

.site-header .cart-btn:hover,
.site-header .ikonic-cart-toggle:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--cream);

  transform: translateY(-1px);
}

.site-header .cart-btn svg,
.site-header .ikonic-cart-toggle svg {
  width: 22px;
  height: 22px;
}


/* Cart count badge */

.site-header .cart-count,
.site-header .ikonic-cart-count {
  position: absolute;
  top: -5px;
  right: -6px;

  min-width: 18px;
  height: 18px;

  display: inline-grid;
  place-items: center;

  padding: 0 4px;

  border: 2px solid var(--white);
  border-radius: 999px;

  color: var(--white);
  background: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.61rem;
  font-weight: 700;
  line-height: 1;

  text-transform: none;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.site-header .cart-count.is-updated,
.site-header .ikonic-cart-count.is-updated {
  background: var(--green);
  transform: scale(1.2);
}


/* =========================================================
   CART BACKDROP
   ========================================================= */

.cart-backdrop,
.ikonic-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99990;

  width: 100%;
  height: 100%;

  display: block;

  margin: 0;
  padding: 0;

  border: 0;

  background: rgba(36, 24, 17, 0.48);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  cursor: pointer;

  transition:
    opacity 0.25s ease,
    visibility 0s linear 0.25s;
}

.cart-backdrop.open,
.cart-backdrop.is-open,
.ikonic-cart-backdrop.open,
.ikonic-cart-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition-delay: 0s;
}


/* =========================================================
   CART DRAWER
   ========================================================= */

body .cart-drawer,
body .ikonic-cart-drawer {
  position: fixed !important;

  top: 0;
  right: 0;
  bottom: 0;
  left: auto;

  z-index: 99991;

  width: 400px;
  max-width: 92vw;
  height: 100vh;
  height: 100dvh;

  display: flex;
  flex-direction: column;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;

  border: 0;
  border-radius: 0;

  color: var(--ink);
  background: var(--white);

  box-shadow:
    -14px 0 38px
    rgba(42, 26, 16, 0.22);

  visibility: hidden;

  transform: translateX(105%);

  transition:
    transform 0.3s ease,
    visibility 0s linear 0.3s;
}

body .cart-drawer.open,
body .cart-drawer.is-open,
body .ikonic-cart-drawer.open,
body .ikonic-cart-drawer.is-open {
  visibility: visible;

  transform: translateX(0);

  transition-delay: 0s;
}


/* WordPress admin bar */

.admin-bar .cart-drawer,
.admin-bar .ikonic-cart-drawer {
  top: 32px;

  height: calc(100vh - 32px);
  height: calc(100dvh - 32px);
}


/* =========================================================
   DRAWER HEADER
   ========================================================= */

.cart-drawer-head {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  flex: 0 0 auto;

  padding: 22px 24px;

  border-bottom: 1px solid var(--line);

  background: var(--white);
}

.cart-drawer-head h3 {
  margin: 0;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.25rem;
  font-weight: 700;
}


/* Close button */

.cart-close,
.ikonic-cart-close {
  width: 36px;
  height: 36px;

  display: inline-grid;
  place-items: center;

  flex: 0 0 36px;

  margin: 0;
  padding: 0;

  border: 0;
  border-radius: 50%;

  color: var(--muted);
  background: transparent;

  cursor: pointer;

  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.cart-close:hover,
.ikonic-cart-close:hover {
  color: var(--ink);
  background: var(--cream-2);
}

.cart-close svg,
.ikonic-cart-close svg {
  width: 19px;
  height: 19px;
}


/* =========================================================
   MINI-CART CONTENT AREA
   ========================================================= */

.cart-items,
.ikonic-cart-items,
.widget_shopping_cart_content.ikonic-cart-items {
  width: 100%;
  min-width: 0;
  min-height: 0;

  display: flex;
  flex: 1 1 auto;
  flex-direction: column;

  padding: 0 24px;

  overflow-x: hidden;
  overflow-y: auto;

  color: var(--ink);
  background: var(--white);
}


/* WooCommerce mini-cart list */

.ikonic-cart-items ul,
.ikonic-cart-items .woocommerce-mini-cart,
.ikonic-cart-items .cart_list,
.ikonic-cart-items .product_list_widget {
  width: 100%;

  display: block;

  flex: 1 0 auto;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none;
}


/* =========================================================
   MINI-CART PRODUCT ROW
   ========================================================= */

.ikonic-cart-items .woocommerce-mini-cart-item,
.ikonic-cart-items .mini_cart_item {
  position: relative;

  width: 100%;
  min-height: 96px;

  display: block;

  margin: 0 !important;
  padding: 18px 32px 18px 0 !important;

  border-bottom: 1px solid var(--line);

  color: var(--ink);
  background: transparent;

  list-style: none;
}

.ikonic-cart-items .woocommerce-mini-cart-item:last-child,
.ikonic-cart-items .mini_cart_item:last-child {
  border-bottom: 0;
}


/* Product link and name */

.ikonic-cart-items .woocommerce-mini-cart-item > a:not(.remove),
.ikonic-cart-items .mini_cart_item > a:not(.remove) {
  display: block;

  min-height: 64px;

  margin: 0;
  padding: 0;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  text-transform: none;

  transition: color 0.15s ease;
}

.ikonic-cart-items .woocommerce-mini-cart-item > a:not(.remove):hover,
.ikonic-cart-items .mini_cart_item > a:not(.remove):hover {
  color: var(--red);
}


/* Product image */

.ikonic-cart-items .woocommerce-mini-cart-item img,
.ikonic-cart-items .mini_cart_item img {
  width: 64px !important;
  height: 64px !important;

  display: block;
  float: left !important;

  margin: 0 14px 0 0 !important;
  padding: 0 !important;

  border: 1px solid var(--line);
  border-radius: 10px;

  object-fit: cover;
  object-position: center;

  background: var(--cream-2);
}


/* Quantity and price */

.ikonic-cart-items .quantity {
  display: block;

  margin: 6px 0 0 78px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  line-height: 1.45;
}

.ikonic-cart-items .quantity .amount,
.ikonic-cart-items .woocommerce-Price-amount {
  color: var(--ink);
  font-weight: 700;
}


/* Remove item button */

.ikonic-cart-items a.remove,
.ikonic-cart-items .remove_from_cart_button {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 3;

  width: 26px;
  height: 26px;

  display: inline-grid !important;
  place-items: center;

  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid var(--line) !important;
  border-radius: 50% !important;

  color: var(--muted) !important;
  background: var(--white) !important;

  font-family: Arial, sans-serif;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-decoration: none;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-cart-items a.remove:hover,
.ikonic-cart-items .remove_from_cart_button:hover {
  color: var(--white) !important;
  border-color: var(--red) !important;
  background: var(--red) !important;
}


/* =========================================================
   CART SUBTOTAL
   ========================================================= */

.ikonic-cart-items .woocommerce-mini-cart__total,
.ikonic-cart-items .total {
  width: 100%;

  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;

  flex: 0 0 auto;

  margin: auto 0 0 !important;
  padding: 20px 0 !important;

  border-top: 1px solid var(--line);

  color: var(--muted);
  background: var(--white);

  font-size: 0.9rem;
}

.ikonic-cart-items .woocommerce-mini-cart__total .amount,
.ikonic-cart-items .total .amount {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.4rem;
  font-weight: 700;
}


/* Hide WooCommerce's default mini-cart buttons */

.ikonic-cart-items .woocommerce-mini-cart__buttons,
.ikonic-cart-items .buttons {
  display: none !important;
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.ikonic-cart-items .woocommerce-mini-cart__empty-message {
  width: 100%;

  margin: auto 0 !important;
  padding: 70px 24px !important;

  color: var(--muted);

  font-size: 0.91rem;
  line-height: 1.7;
  text-align: center;
}


/* =========================================================
   DRAWER ACTIONS
   ========================================================= */

.cart-drawer-actions {
  width: 100%;

  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;

  padding: 18px 24px 24px;

  border-top: 1px solid var(--line);

  background: var(--white);
}


/* Checkout button */

.cart-drawer-actions .checkout-btn {
  width: 100%;
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 18px;

  border: 1px solid var(--red);
  border-radius: 10px;

  color: var(--white);
  background: var(--red);

  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;

  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.cart-drawer-actions .checkout-btn:hover {
  color: var(--white);
  border-color: var(--red-dark);
  background: var(--red-dark);

  transform: translateY(-1px);
}


/* View cart button */

.cart-drawer-actions .view-cart-link {
  width: 100%;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 11px 18px;

  border: 1px solid var(--line);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.87rem;
  font-weight: 700;
  text-align: center;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.cart-drawer-actions .view-cart-link:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--cream);
}


/* Continue shopping */

.cart-drawer-actions .continue-shopping {
  width: 100%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 4px 8px;

  border: 0;

  color: var(--muted);
  background: transparent;

  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 700;

  cursor: pointer;

  transition: color 0.15s ease;
}

.cart-drawer-actions .continue-shopping:hover {
  color: var(--red);
}


/* Hide separate View Cart link beneath shop cards */

.ikonic-shop-page .shop-card .added_to_cart {
  display: none !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  body .cart-drawer,
  body .ikonic-cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }

  .cart-drawer-head {
    padding: 19px 20px;
  }

  .cart-items,
  .ikonic-cart-items,
  .widget_shopping_cart_content.ikonic-cart-items {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cart-drawer-actions {
    padding: 16px 20px 20px;
  }

}


@media screen and (max-width: 782px) {

  .admin-bar .cart-drawer,
  .admin-bar .ikonic-cart-drawer {
    top: 46px;

    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
  }

}


@media (max-width: 520px) {

  .site-header .cart-btn,
  .site-header .ikonic-cart-toggle {
    width: 39px;
    height: 39px;

    flex-basis: 39px;
  }

  .ikonic-cart-items .woocommerce-mini-cart-item img,
  .ikonic-cart-items .mini_cart_item img {
    width: 58px !important;
    height: 58px !important;

    margin-right: 12px !important;
  }

  .ikonic-cart-items .quantity {
    margin-left: 70px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .cart-backdrop,
  .ikonic-cart-backdrop,
  body .cart-drawer,
  body .ikonic-cart-drawer {
    transition: none !important;
  }

}









/* =========================================================
   MINI-CART QUANTITY CONTROLS
   ========================================================= */

.ikonic-mini-cart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin: 8px 0 0 78px;
}

.ikonic-mini-cart-price {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.ikonic-mini-cart-price .amount {
  color: var(--ink);
  font-weight: 700;
}

.ikonic-mini-cart-quantity {
  display: inline-flex;
  align-items: center;

  flex: 0 0 auto;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 8px;

  background: var(--white);

  transition:
    opacity 0.15s ease,
    border-color 0.15s ease;
}

.ikonic-mini-cart-quantity:focus-within {
  border-color: var(--red);
}

.ikonic-mini-cart-quantity.is-updating {
  opacity: 0.55;
  pointer-events: none;
}

.ikonic-mini-cart-quantity-button {
  width: 29px;
  height: 29px;

  display: inline-grid;
  place-items: center;

  flex: 0 0 29px;

  margin: 0;
  padding: 0;

  border: 0;

  color: var(--ink);
  background: transparent;

  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-mini-cart-quantity-button:hover:not(:disabled) {
  color: var(--white);
  background: var(--red);
}

.ikonic-mini-cart-quantity-button:focus-visible {
  position: relative;
  z-index: 2;

  outline: 2px solid var(--red);
  outline-offset: -2px;
}

.ikonic-mini-cart-quantity-button:disabled {
  color: var(--line);
  cursor: not-allowed;
}

.ikonic-mini-cart-quantity-value {
  min-width: 29px;
  height: 29px;

  display: inline-grid;
  place-items: center;

  padding: 0 4px;

  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);

  color: var(--ink);
  background: var(--cream);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 520px) {

  .ikonic-mini-cart-meta {
    margin-left: 70px;
  }

}







/* =========================================================
   IKONIC WOOCOMMERCE SINGLE PRODUCT PAGE
   ========================================================= */

.ikonic-single-product-page {
  width: 100%;
  min-height: 60vh;
}

.ikonic-single-product-page .ikonic-product-main-section {
  padding-top: 36px;
  padding-bottom: 56px;
}


/* =========================================================
   REMOVE DEFAULT WOOCOMMERCE FLOAT LAYOUT
   ========================================================= */

.woocommerce .ikonic-single-product-page div.product div.images,
.woocommerce .ikonic-single-product-page div.product div.summary {
  width: auto;
  float: none;
  margin: 0;
}

.woocommerce .ikonic-single-product-page div.product {
  margin: 0;
}

.ikonic-single-product-page .product-detail-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 56px;
  align-items: start;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.ikonic-product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  margin: 0 0 32px !important;
  padding: 0;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  line-height: 1.6;
}

.ikonic-product-breadcrumb a {
  color: var(--muted);

  transition: color 0.15s ease;
}

.ikonic-product-breadcrumb a:hover {
  color: var(--red);
}

.ikonic-product-breadcrumb > span:last-child,
.ikonic-product-breadcrumb a:last-of-type {
  color: var(--red);
}


/* =========================================================
   PRODUCT GALLERY
   ========================================================= */

.ikonic-product-gallery {
  min-width: 0;
}

.ikonic-single-product-page
.woocommerce-product-gallery {
  position: relative;

  width: 100% !important;

  margin: 0 !important;
}

.ikonic-single-product-page
.woocommerce-product-gallery
.flex-viewport {
  overflow: hidden;

  border-radius: var(--radius);

  background: var(--cream-2);
}

.ikonic-single-product-page
.woocommerce-product-gallery__wrapper {
  margin: 0;
}

.ikonic-single-product-page
.woocommerce-product-gallery__image {
  min-height: 420px;

  display: grid !important;
  place-items: center;

  overflow: hidden;

  border-radius: var(--radius);

  background: var(--cream-2);
}

.ikonic-single-product-page
.woocommerce-product-gallery__image a {
  width: 100%;
  height: 100%;

  display: grid;
  place-items: center;
}

.ikonic-single-product-page
.woocommerce-product-gallery__image img {
  width: 100%;
  height: 420px;

  display: block;

  margin: 0;

  object-fit: contain;
  object-position: center;

  background: var(--cream-2);
}


/* SALE BADGE */

.ikonic-single-product-page
.onsale {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 7;

  min-width: 0;
  min-height: 0;

  margin: 0;
  padding: 6px 11px;

  border-radius: 999px;

  color: var(--ink);
  background: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ZOOM BUTTON */

.ikonic-single-product-page
.woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px !important;
  right: 16px !important;
  left: auto !important;
  z-index: 8;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);

  text-indent: -9999px;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-single-product-page
.woocommerce-product-gallery__trigger::before {
  position: absolute;
  top: 11px;
  left: 11px;

  width: 13px;
  height: 13px;

  border: 2px solid currentColor;
  border-radius: 50%;

  content: "";
}

.ikonic-single-product-page
.woocommerce-product-gallery__trigger::after {
  position: absolute;
  top: 24px;
  left: 24px;

  width: 8px;
  height: 2px;

  content: "";

  background: currentColor;

  transform: rotate(45deg);
  transform-origin: left center;
}

.ikonic-single-product-page
.woocommerce-product-gallery__trigger:hover {
  color: var(--red);
  border-color: var(--red);
  background: var(--white);
}


/* GALLERY THUMBNAILS */

.ikonic-single-product-page
.flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 76px);
  gap: 12px;

  margin: 16px 0 0 !important;
  padding: 0 !important;

  list-style: none;
}

.ikonic-single-product-page
.flex-control-thumbs li {
  width: 76px !important;
  height: 76px;

  float: none !important;

  margin: 0 !important;
  padding: 0;

  overflow: hidden;

  border: 2px solid transparent;
  border-radius: 10px;

  background: var(--cream-2);

  cursor: pointer;

  transition:
    border-color 0.15s ease,
    opacity 0.15s ease;
}

.ikonic-single-product-page
.flex-control-thumbs li:hover {
  border-color: rgba(213, 22, 31, 0.45);
}

.ikonic-single-product-page
.flex-control-thumbs img {
  width: 100%;
  height: 100%;

  margin: 0 !important;

  object-fit: cover;
  object-position: center;

  opacity: 0.65;

  transition: opacity 0.15s ease;
}

.ikonic-single-product-page
.flex-control-thumbs img.flex-active,
.ikonic-single-product-page
.flex-control-thumbs img:hover {
  opacity: 1;
}

.ikonic-single-product-page
.flex-control-thumbs li:has(img.flex-active) {
  border-color: var(--red);
}


/* =========================================================
   PRODUCT INFORMATION
   ========================================================= */

.ikonic-product-summary {
  min-width: 0;
}

.ikonic-product-summary .pi-category {
  display: block;

  margin-bottom: 10px;

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ikonic-product-summary .pi-category a {
  color: var(--red);
}

.ikonic-product-summary
.product_title {
  margin: 0 0 14px;

  color: var(--ink);

  font-size: clamp(
    1.8rem,
    3vw,
    2.35rem
  );

  line-height: 1.15;
}


/* =========================================================
   PRODUCT RATING
   ========================================================= */

.ikonic-product-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;

  margin-bottom: 16px;
}

.ikonic-product-rating
.star-rating {
  width: 5.4em;

  margin: 0;

  color: var(--gold);

  font-size: 0.93rem;
}

.ikonic-product-rating
.star-rating::before {
  color: var(--line);
}

.ikonic-product-rating
.star-rating span::before {
  color: var(--gold);
}

.ikonic-review-link {
  color: var(--muted);

  font-size: 0.84rem;
  font-weight: 500;

  transition: color 0.15s ease;
}

.ikonic-review-link:hover {
  color: var(--red);
}


/* =========================================================
   PRODUCT BADGES
   ========================================================= */

.ikonic-product-summary
.pi-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 17px;
}

.ikonic-product-summary
.pi-badge {
  display: inline-flex;
  align-items: center;

  padding: 5px 10px;

  border-radius: 999px;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ikonic-product-summary
.badge-bestseller {
  color: var(--ink);
  background: var(--gold);
}

.ikonic-product-summary
.badge-sale {
  color: var(--white);
  background: var(--red);
}

.ikonic-product-summary
.badge-service {
  color: var(--muted);
  background: var(--cream-2);
}


/* =========================================================
   PRODUCT PRICE
   ========================================================= */

.ikonic-product-summary
.pi-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;

  margin-bottom: 8px;
}

.ikonic-product-summary
.pi-price,
.ikonic-product-summary
.pi-price .amount {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.ikonic-product-summary
.pi-price p.price {
  margin: 0;
}

.ikonic-product-summary
.pi-price del {
  color: var(--muted);
  opacity: 0.7;

  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 500;
}

.ikonic-product-summary
.pi-price ins {
  color: var(--ink);

  text-decoration: none;
}


/* =========================================================
   STOCK
   ========================================================= */

.ikonic-product-summary
.pi-stock {
  margin-bottom: 22px;
}

.ikonic-product-summary
.pi-stock .stock {
  margin: 0;

  font-size: 0.88rem;
  font-weight: 700;
}

.ikonic-product-summary
.pi-stock .in-stock {
  color: var(--green);
}

.ikonic-product-summary
.pi-stock .out-of-stock {
  color: var(--red);
}


/* =========================================================
   SHORT DESCRIPTION
   ========================================================= */

.ikonic-product-summary
.pi-desc {
  max-width: 540px;

  margin-bottom: 22px;

  color: var(--muted);

  font-size: 0.98rem;
  line-height: 1.75;
}

.ikonic-product-summary
.pi-desc p {
  margin-bottom: 12px;
}

.ikonic-product-summary
.pi-desc p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   PRODUCT FEATURES
   ========================================================= */

.ikonic-product-summary
.pi-features {
  display: flex;
  flex-direction: column;
  gap: 0;

  margin: 0 0 26px;
  padding: 0;

  list-style: none;
}

.ikonic-product-summary
.pi-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 7px 0;

  color: var(--ink);

  font-size: 0.89rem;
  line-height: 1.5;
}

.ikonic-product-summary
.pi-features svg {
  width: 17px;
  height: 17px;

  flex: 0 0 17px;

  margin-top: 2px;

  color: var(--green);
}

.ikonic-product-summary
.pi-features strong {
  font-weight: 700;
}


/* =========================================================
   PURCHASE AREA
   ========================================================= */

.ikonic-product-purchase {
  margin-bottom: 24px;
}

.ikonic-product-purchase
form.cart {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;

  margin: 0 0 24px !important;
}


/* QUANTITY */

.ikonic-product-purchase
.quantity {
  width: 94px;

  display: flex;

  margin: 0 !important;
}

.ikonic-product-purchase
.quantity .qty {
  width: 94px;
  min-height: 52px;

  margin: 0;
  padding: 0 12px;

  border: 1.5px solid var(--line);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;

  outline: none;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.ikonic-product-purchase
.quantity .qty:focus {
  border-color: var(--red);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}


/* ADD TO CART BUTTON */

.ikonic-product-purchase
.single_add_to_cart_button,
.ikonic-product-purchase
button.single_add_to_cart_button,
.ikonic-product-purchase
.woocommerce-variation-add-to-cart
.single_add_to_cart_button {
  min-width: 210px;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 1 1 220px;

  margin: 0;
  padding: 13px 24px;

  border: 0;
  border-radius: 10px;

  color: var(--white);
  background: var(--red);

  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.ikonic-product-purchase
.single_add_to_cart_button:hover {
  color: var(--white);
  background: var(--red-dark);

  transform: translateY(-1px);

  box-shadow:
    0 10px 22px -12px
    rgba(213, 22, 31, 0.65);
}

.ikonic-product-purchase
.single_add_to_cart_button.disabled,
.ikonic-product-purchase
.single_add_to_cart_button:disabled {
  color: var(--muted);
  background: var(--cream-2);

  opacity: 1;
  cursor: not-allowed;

  box-shadow: none;
  transform: none;
}

.ikonic-product-purchase
.single_add_to_cart_button.loading {
  opacity: 0.72;
}

.ikonic-product-purchase
.single_add_to_cart_button.added {
  background: var(--green);
}


/* =========================================================
   VARIABLE PRODUCTS
   ========================================================= */

.ikonic-product-purchase
.variations_form {
  display: block !important;

  width: 100%;

  margin: 0 !important;
}

.ikonic-product-purchase
table.variations {
  width: 100%;

  margin: 0 0 20px;
  padding: 20px 22px;

  border: 0;
  border-radius: 12px;

  border-collapse: separate;
  border-spacing: 0 12px;

  background: var(--cream-2);
}

.ikonic-product-purchase
table.variations tbody,
.ikonic-product-purchase
table.variations tr {
  width: 100%;
}

.ikonic-product-purchase
table.variations th,
.ikonic-product-purchase
table.variations td {
  padding: 0;
  border: 0;

  vertical-align: middle;
}

.ikonic-product-purchase
table.variations th.label {
  width: 92px;

  padding-right: 16px;

  color: var(--ink);

  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
}

.ikonic-product-purchase
table.variations td.value {
  position: relative;
}

.ikonic-product-purchase
table.variations select {
  width: 100%;
  min-height: 44px;

  margin: 0;
  padding: 0 38px 0 14px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--white);

  font-family: inherit;
  font-size: 0.88rem;

  outline: none;
  cursor: pointer;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.ikonic-product-purchase
table.variations select:focus {
  border-color: var(--red);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}

.ikonic-product-purchase
.reset_variations {
  display: inline-flex;

  margin-top: 8px;

  color: var(--red);

  font-size: 0.75rem;
  font-weight: 700;
}

.ikonic-product-purchase
.reset_variations:hover {
  color: var(--red-dark);
}


/* SELECTED VARIATION */

.ikonic-product-purchase
.single_variation_wrap {
  width: 100%;
}

.ikonic-product-purchase
.single_variation {
  margin-bottom: 16px;
}

.ikonic-product-purchase
.woocommerce-variation-description {
  margin-bottom: 12px;

  color: var(--muted);

  font-size: 0.86rem;
  line-height: 1.65;
}

.ikonic-product-purchase
.woocommerce-variation-price {
  margin-bottom: 7px;
}

.ikonic-product-purchase
.woocommerce-variation-price
.price,
.ikonic-product-purchase
.woocommerce-variation-price
.amount {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.ikonic-product-purchase
.woocommerce-variation-price del {
  color: var(--muted);
  opacity: 0.7;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
}

.ikonic-product-purchase
.woocommerce-variation-price ins {
  text-decoration: none;
}

.ikonic-product-purchase
.woocommerce-variation-availability
.stock {
  margin: 0 0 8px;

  font-size: 0.83rem;
  font-weight: 700;
}

.ikonic-product-purchase
.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
}


/* =========================================================
   GROUPED PRODUCTS
   ========================================================= */

.ikonic-product-purchase
.group_table {
  width: 100%;

  margin-bottom: 18px;

  border-collapse: collapse;

  background: var(--white);
}

.ikonic-product-purchase
.group_table td {
  padding: 13px 12px;

  border-bottom: 1px solid var(--line);

  color: var(--ink);

  font-size: 0.84rem;
}

.ikonic-product-purchase
.group_table td:first-child {
  padding-left: 0;
}

.ikonic-product-purchase
.group_table td:last-child {
  padding-right: 0;
}

.ikonic-product-purchase
.group_table .woocommerce-grouped-product-list-item__label a {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-weight: 700;
}

.ikonic-product-purchase
.group_table .woocommerce-grouped-product-list-item__label a:hover {
  color: var(--red);
}


/* =========================================================
   PRODUCT TRUST ROW
   ========================================================= */

.ikonic-product-summary
.pi-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;

  padding-top: 22px;

  border-top: 1px solid var(--line);
}

.ikonic-product-summary
.pi-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--muted);

  font-size: 0.81rem;
  line-height: 1.4;
}

.ikonic-product-summary
.pi-trust-item svg {
  width: 19px;
  height: 19px;

  flex: 0 0 19px;

  color: var(--red);
}


/* =========================================================
   PRODUCT META
   ========================================================= */

.ikonic-product-summary
.product-meta-block {
  margin-top: 18px;
  padding-top: 16px;

  border-top: 1px solid var(--line);
}

.ikonic-product-summary
.product_meta {
  display: flex;
  flex-direction: column;
  gap: 7px;

  color: var(--muted);

  font-size: 0.8rem;
  line-height: 1.5;
}

.ikonic-product-summary
.product_meta > span {
  display: block;
}

.ikonic-product-summary
.product_meta a {
  color: var(--red);

  transition: color 0.15s ease;
}

.ikonic-product-summary
.product_meta a:hover {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =========================================================
   PRODUCT TABS SECTION
   ========================================================= */

.ikonic-product-tabs-section {
  padding-top: 56px;
  padding-bottom: 70px;
}

.ikonic-single-product-page
.woocommerce-tabs {
  margin: 0;
}

.ikonic-single-product-page
.woocommerce-tabs ul.tabs {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 6px;

  margin: 0 0 32px !important;
  padding: 0 !important;

  overflow: visible;

  border-bottom: 1px solid var(--line);

  list-style: none;
}

.ikonic-single-product-page
.woocommerce-tabs ul.tabs::before,
.ikonic-single-product-page
.woocommerce-tabs ul.tabs::after {
  display: none;
}

.ikonic-single-product-page
.woocommerce-tabs ul.tabs li {
  position: relative;
  top: 1px;

  display: block;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
}

.ikonic-single-product-page
.woocommerce-tabs ul.tabs li::before,
.ikonic-single-product-page
.woocommerce-tabs ul.tabs li::after {
  display: none;
}

.ikonic-single-product-page
.woocommerce-tabs ul.tabs li a {
  display: block;

  padding: 14px 22px !important;

  color: var(--muted) !important;

  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;

  transition: color 0.15s ease;
}

.ikonic-single-product-page
.woocommerce-tabs ul.tabs li a:hover {
  color: var(--red) !important;
}

.ikonic-single-product-page
.woocommerce-tabs ul.tabs li.active a {
  color: var(--red) !important;
}

.ikonic-single-product-page
.woocommerce-tabs ul.tabs li.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  display: block;

  height: 2px;

  content: "";

  background: var(--red);
}


/* TAB PANELS */

.ikonic-single-product-page
.woocommerce-Tabs-panel {
  margin: 0 !important;
  padding: 0 !important;

  color: var(--muted);

  font-size: 0.94rem;
  line-height: 1.75;
}

.ikonic-single-product-page
.woocommerce-Tabs-panel > h2:first-child {
  display: none;
}

.ikonic-single-product-page
.woocommerce-Tabs-panel p {
  max-width: 820px;

  margin-bottom: 15px;
}

.ikonic-single-product-page
.woocommerce-Tabs-panel h2,
.ikonic-single-product-page
.woocommerce-Tabs-panel h3,
.ikonic-single-product-page
.woocommerce-Tabs-panel h4 {
  margin: 28px 0 13px;

  color: var(--ink);
}

.ikonic-single-product-page
.woocommerce-Tabs-panel ul {
  display: flex;
  flex-direction: column;
  gap: 9px;

  margin: 16px 0 25px;
}

.ikonic-single-product-page
.woocommerce-Tabs-panel li {
  position: relative;

  padding-left: 20px;
}

.ikonic-single-product-page
.woocommerce-Tabs-panel li::before {
  position: absolute;
  top: 0.65em;
  left: 0;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  content: "";

  background: var(--gold);

  transform: translateY(-50%);
}


/* =========================================================
   ADDITIONAL INFORMATION TABLE
   ========================================================= */

.ikonic-single-product-page
.woocommerce-product-attributes {
  width: 100%;
  max-width: 720px;

  margin: 0;

  border: 0;
  border-collapse: collapse;

  background: transparent;
}

.ikonic-single-product-page
.woocommerce-product-attributes tr {
  border-bottom: 1px solid var(--line);
}

.ikonic-single-product-page
.woocommerce-product-attributes th,
.ikonic-single-product-page
.woocommerce-product-attributes td {
  padding: 13px 6px;

  border: 0;

  font-size: 0.89rem;
  text-align: left;
}

.ikonic-single-product-page
.woocommerce-product-attributes th {
  width: 42%;

  color: var(--muted);

  font-weight: 500;
}

.ikonic-single-product-page
.woocommerce-product-attributes td {
  color: var(--ink);

  font-weight: 600;
}

.ikonic-single-product-page
.woocommerce-product-attributes td p {
  margin: 0;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.ikonic-single-product-page
#reviews {
  max-width: 900px;
}

.ikonic-single-product-page
#reviews
#comments {
  margin-bottom: 34px;
}

.ikonic-single-product-page
#reviews
#comments h2 {
  margin: 0 0 26px;

  color: var(--ink);

  font-size: 1.35rem;
}

.ikonic-single-product-page
#reviews
.commentlist {
  margin: 0 !important;
  padding: 0 !important;

  list-style: none;
}

.ikonic-single-product-page
#reviews
.commentlist li {
  position: relative;

  margin: 0 !important;
  padding: 22px 0 !important;

  border-bottom: 1px solid var(--line);
}

.ikonic-single-product-page
#reviews
.commentlist li::before {
  display: none;
}

.ikonic-single-product-page
#reviews
.comment_container {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
}

.ikonic-single-product-page
#reviews
.comment_container img.avatar {
  position: static !important;

  width: 44px !important;
  height: 44px !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 50%;

  object-fit: cover;

  background: var(--soil);
}

.ikonic-single-product-page
#reviews
.comment-text {
  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
}

.ikonic-single-product-page
#reviews
.comment-text .star-rating {
  margin: 0 0 9px;

  color: var(--gold);
}

.ikonic-single-product-page
#reviews
.meta {
  margin: 0 0 9px !important;

  color: var(--muted);

  font-size: 0.78rem;
}

.ikonic-single-product-page
#reviews
.woocommerce-review__author {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.ikonic-single-product-page
#reviews
.woocommerce-review__verified {
  color: var(--green);

  font-size: 0.72rem;
  font-weight: 700;
}

.ikonic-single-product-page
#reviews
.description p {
  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;
  line-height: 1.7;
}


/* REVIEW FORM */

.ikonic-single-product-page
#review_form_wrapper {
  max-width: 600px;

  margin-top: 32px;
  padding-top: 32px;

  border-top: 1px solid var(--line);
}

.ikonic-single-product-page
#review_form_wrapper
.comment-reply-title {
  display: block;

  margin-bottom: 18px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.ikonic-single-product-page
#review_form
.comment-form {
  display: grid;
  gap: 16px;
}

.ikonic-single-product-page
#review_form
.comment-form > p {
  max-width: none;

  margin: 0;
}

.ikonic-single-product-page
#review_form label {
  display: block;

  margin-bottom: 7px;

  color: var(--ink);

  font-size: 0.82rem;
  font-weight: 700;
}

.ikonic-single-product-page
#review_form input[type="text"],
.ikonic-single-product-page
#review_form input[type="email"],
.ikonic-single-product-page
#review_form textarea {
  width: 100%;

  padding: 12px 14px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--cream);

  font-family: inherit;
  font-size: 0.88rem;

  outline: none;

  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-single-product-page
#review_form textarea {
  min-height: 125px;

  resize: vertical;
}

.ikonic-single-product-page
#review_form input:focus,
.ikonic-single-product-page
#review_form textarea:focus {
  border-color: var(--red);
  background: var(--white);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}


/* REVIEW STAR INPUT */

.ikonic-single-product-page
#review_form
.comment-form-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ikonic-single-product-page
#review_form
.stars {
  margin: 0;
}

.ikonic-single-product-page
#review_form
.stars a {
  color: var(--line);

  font-size: 1.4rem;
}

.ikonic-single-product-page
#review_form
.stars a:hover,
.ikonic-single-product-page
#review_form
.stars a.active {
  color: var(--gold);
}


/* REVIEW SUBMIT */

.ikonic-single-product-page
#review_form
.form-submit .submit {
  min-height: 44px;

  padding: 11px 24px;

  border: 0;
  border-radius: 9px;

  color: var(--white);
  background: var(--red);

  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.ikonic-single-product-page
#review_form
.form-submit .submit:hover {
  background: var(--red-dark);

  transform: translateY(-1px);
}


/* =========================================================
   FAQ TAB
   ========================================================= */

.ikonic-product-faq-list {
  max-width: 820px;

  border-top: 1px solid var(--line);
}

.ikonic-product-faq-item {
  border-bottom: 1px solid var(--line);
}

.ikonic-product-faq-item summary {
  position: relative;

  padding: 19px 48px 19px 0;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1rem;
  font-weight: 700;

  cursor: pointer;

  list-style: none;
}

.ikonic-product-faq-item summary::-webkit-details-marker {
  display: none;
}

.ikonic-product-faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 6px;

  content: "+";

  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 1.25rem;

  transform: translateY(-50%);
}

.ikonic-product-faq-item[open]
summary::after {
  content: "−";
}

.ikonic-product-faq-answer {
  max-width: 750px;

  padding: 0 48px 19px 0;

  color: var(--muted);

  font-size: 0.89rem;
  line-height: 1.7;
}

.ikonic-product-faq-answer p {
  margin: 0;
}


/* =========================================================
   RELATED PRODUCTS
   ========================================================= */

.ikonic-related-products-section {
  padding-top: 76px;
  padding-bottom: 84px;
}

.ikonic-related-products
.related.products {
  margin: 0;
}

.ikonic-related-products
.related.products > h2:empty {
  display: none;
}

.ikonic-related-products
ul.products {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 22px;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none;
}

.ikonic-related-products
ul.products::before,
.ikonic-related-products
ul.products::after {
  display: none;
}

.ikonic-related-products
ul.products > li.product,
.ikonic-related-products
ul.products > .shop-card {
  position: relative;
  overflow: hidden;

  width: auto !important;
  min-width: 0;

  display: flex;
  flex-direction: column;
  float: none !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.ikonic-related-products
ul.products > li.product:hover,
.ikonic-related-products
ul.products > .shop-card:hover {
  border-color: rgba(213, 22, 31, 0.5);

  box-shadow: var(--shadow);

  transform: translateY(-4px);
}


/* CUSTOM RELATED PRODUCT CARDS */

.ikonic-related-products
.shop-card-media {
  position: relative;
  overflow: hidden;

  width: 100%;
  aspect-ratio: 4 / 3;

  background: var(--cream-2);
}

.ikonic-related-products
.shop-card-media > a {
  width: 100%;
  height: 100%;

  display: block;
}

.ikonic-related-products
.shop-card-media img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.35s ease;
}

.ikonic-related-products
.shop-card:hover
.shop-card-media img {
  transform: scale(1.055);
}

.ikonic-related-products
.shop-card-badge,
.ikonic-related-products
.onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;

  min-width: 0;
  min-height: 0;

  margin: 0;
  padding: 5px 9px;

  border-radius: 999px;

  color: var(--ink);
  background: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ikonic-related-products
.shop-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;

  padding: 20px;
}

.ikonic-related-products
.shop-card-cat {
  margin-bottom: 8px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ikonic-related-products
.shop-card-title {
  margin-bottom: 8px;

  font-size: 1rem;
  line-height: 1.3;
}

.ikonic-related-products
.shop-card-title a:hover {
  color: var(--red);
}

.ikonic-related-products
.shop-card-excerpt {
  flex-grow: 1;

  margin-bottom: 16px;

  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.65;
}

.ikonic-related-products
.shop-card-price-row {
  margin-bottom: 7px;
}

.ikonic-related-products
.shop-card-price,
.ikonic-related-products
.shop-card-price .amount {
  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.ikonic-related-products
.stock-status {
  margin-bottom: 14px;

  font-size: 0.76rem;
  font-weight: 700;
}

.ikonic-related-products
.shop-card-actions {
  margin-top: auto;
}

.ikonic-related-products
.shop-card .button {
  width: 100%;
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0;
  padding: 11px 14px;

  border: 0;
  border-radius: 8px;

  color: var(--white);
  background: var(--red);

  font-size: 0.83rem;
  font-weight: 700;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.ikonic-related-products
.shop-card .button:hover {
  color: var(--white);
  background: var(--red-dark);

  transform: translateY(-1px);
}

.ikonic-related-products
.shop-card .button.added {
  background: var(--green);
}

.ikonic-related-products
.shop-card .added_to_cart {
  display: none !important;
}


/* DEFAULT RELATED PRODUCT FALLBACK */

.ikonic-related-products
ul.products > li.product
.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ikonic-related-products
ul.products > li.product img {
  width: 100%;
  aspect-ratio: 4 / 3;

  margin: 0 0 19px !important;

  object-fit: cover;

  background: var(--cream-2);
}

.ikonic-related-products
ul.products > li.product
.woocommerce-loop-product__title {
  margin: 0 19px 9px;
  padding: 0;

  color: var(--ink);

  font-size: 1rem;
}

.ikonic-related-products
ul.products > li.product
.price {
  margin: auto 19px 15px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.ikonic-related-products
ul.products > li.product
> .button {
  width: calc(100% - 38px);

  margin: 0 19px 19px;
  padding: 11px 14px;

  border-radius: 8px;

  color: var(--white);
  background: var(--red);

  text-align: center;
}


/* =========================================================
   WOOCOMMERCE NOTICES ON PRODUCT PAGE
   ========================================================= */

.ikonic-single-product-page
.woocommerce-notices-wrapper {
  width: 100%;

  margin-bottom: 22px;
}

.ikonic-single-product-page
.woocommerce-message,
.ikonic-single-product-page
.woocommerce-info,
.ikonic-single-product-page
.woocommerce-error {
  margin: 0 0 18px;
  padding: 16px 18px 16px 50px;

  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.86rem;
}

.ikonic-single-product-page
.woocommerce-info {
  border-left-color: var(--gold);
}

.ikonic-single-product-page
.woocommerce-error {
  border-left-color: var(--red);
}

.ikonic-single-product-page
.woocommerce-message .button {
  float: right;

  margin: -5px 0 -5px 15px;
  padding: 9px 14px;

  border-radius: 8px;

  color: var(--white);
  background: var(--red);

  font-size: 0.76rem;
}


/* =========================================================
   FOCUS STYLES
   ========================================================= */

.ikonic-single-product-page
a:focus-visible,
.ikonic-single-product-page
button:focus-visible,
.ikonic-single-product-page
select:focus-visible,
.ikonic-single-product-page
input:focus-visible,
.ikonic-single-product-page
textarea:focus-visible,
.ikonic-product-faq-item summary:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.24);
  outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .ikonic-single-product-page
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ikonic-product-gallery {
    max-width: 720px;
  }

  .ikonic-related-products
  ul.products {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .ikonic-single-product-page
  .ikonic-product-main-section {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .ikonic-product-breadcrumb {
    margin-bottom: 24px !important;
  }

  .ikonic-single-product-page
  .woocommerce-product-gallery__image {
    min-height: 330px;
  }

  .ikonic-single-product-page
  .woocommerce-product-gallery__image img {
    height: 330px;
  }

  .ikonic-single-product-page
  .flex-control-thumbs {
    grid-template-columns:
      repeat(4, minmax(0, 1fr));
  }

  .ikonic-single-product-page
  .flex-control-thumbs li {
    width: auto !important;
    height: auto;
    aspect-ratio: 1;
  }

  .ikonic-product-purchase
  form.cart,
  .ikonic-product-purchase
  .woocommerce-variation-add-to-cart {
    flex-direction: column;
  }

  .ikonic-product-purchase
  .quantity,
  .ikonic-product-purchase
  .quantity .qty,
  .ikonic-product-purchase
  .single_add_to_cart_button {
    width: 100%;
  }

  .ikonic-product-purchase
  table.variations {
    padding: 18px;
  }

  .ikonic-product-purchase
  table.variations tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;

    margin-bottom: 15px;
  }

  .ikonic-product-purchase
  table.variations tr:last-child {
    margin-bottom: 0;
  }

  .ikonic-product-purchase
  table.variations th.label {
    width: auto;

    padding: 0;
  }

  .ikonic-single-product-page
  .woocommerce-tabs ul.tabs {
    flex-wrap: nowrap;

    overflow-x: auto;

    scrollbar-width: none;
  }

  .ikonic-single-product-page
  .woocommerce-tabs ul.tabs::-webkit-scrollbar {
    display: none;
  }

  .ikonic-single-product-page
  .woocommerce-tabs ul.tabs li {
    flex: 0 0 auto;
  }

  .ikonic-single-product-page
  .woocommerce-tabs ul.tabs li a {
    padding: 13px 17px !important;

    white-space: nowrap;
  }

  .ikonic-product-tabs-section {
    padding-top: 45px;
    padding-bottom: 55px;
  }

  .ikonic-related-products-section {
    padding-top: 58px;
    padding-bottom: 65px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {

  .ikonic-single-product-page
  .woocommerce-product-gallery__image {
    min-height: 280px;
  }

  .ikonic-single-product-page
  .woocommerce-product-gallery__image img {
    height: 280px;
  }

  .ikonic-product-summary
  .product_title {
    font-size: 1.75rem;
  }

  .ikonic-product-summary
  .pi-price,
  .ikonic-product-summary
  .pi-price .amount {
    font-size: 1.7rem;
  }

  .ikonic-product-summary
  .pi-trust-row {
    flex-direction: column;
    gap: 13px;
  }

  .ikonic-single-product-page
  #reviews
  .comment_container {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
  }

  .ikonic-single-product-page
  #reviews
  .comment_container img.avatar {
    width: 36px !important;
    height: 36px !important;
  }

  .ikonic-related-products
  ul.products {
    grid-template-columns: 1fr;
  }

  .ikonic-product-faq-item summary {
    padding-right: 38px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ikonic-single-product-page *,
  .ikonic-related-products * {
    transition: none !important;
  }

}








/* =========================================================
   IKONIC QUOTE CHECKOUT HEADER
   ========================================================= */

body > .checkout-site-header,
.checkout-site-header {
  position: sticky;
  top: 0;
  z-index: 80;

  width: 100%;

  padding: 0;

  border-bottom: 3px solid var(--red);

  background: var(--soil);

  font-family: inherit;
  text-transform: none;
}

.checkout-header-inner {
  min-height: 78px;

  display: grid;
  grid-template-columns:
    minmax(150px, 1fr)
    auto
    minmax(280px, 1fr);

  align-items: center;
  gap: 30px;

  padding-top: 14px;
  padding-bottom: 14px;
}


/* Logo */

.checkout-header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.checkout-header-logo .custom-logo-link,
.checkout-logo-link {
  display: inline-flex;
  align-items: center;
}

.checkout-header-logo .custom-logo,
.checkout-logo-link img {
  width: 105px;
  max-width: 105px;
  height: 50px;

  display: block;

  object-fit: contain;
  object-position: left center;
}


/* Secure checkout text */

.secure-checkout-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.secure-checkout-badge svg {
  width: 18px;
  height: 18px;

  flex: 0 0 18px;
}


/* Header actions */

.checkout-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.checkout-call-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--cream);

  transition: color 0.15s ease;
}

.checkout-call-button:hover {
  color: var(--white);
}

.checkout-call-button svg {
  width: 20px;
  height: 20px;

  flex: 0 0 20px;

  color: var(--gold);
}

.checkout-call-button span {
  display: flex;
  flex-direction: column;
}

.checkout-call-button small {
  color: #cbb99e;

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  line-height: 1.25;
}

.checkout-call-button strong {
  color: var(--white);

  font-size: 0.82rem;
  line-height: 1.35;
}

.checkout-back-link {
  min-height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 9px 15px;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;

  color: var(--white);

  font-size: 0.8rem;
  font-weight: 700;

  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background-color 0.15s ease;
}

.checkout-back-link:hover {
  color: var(--soil);
  border-color: var(--white);
  background: var(--white);
}


/* WordPress admin bar */

.admin-bar .checkout-site-header {
  top: 32px;
}


/* =========================================================
   QUOTE CHECKOUT PAGE
   ========================================================= */

.ikonic-checkout-body {
  background: var(--cream);
}

.ikonic-quote-checkout {
  min-height: 65vh;
}


/* Progress */

.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 0 10px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 9px;
}

.progress-step .step-circle {
  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  border: 2px solid var(--line);
  border-radius: 50%;

  color: var(--muted);
  background: var(--cream-2);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.77rem;
  font-weight: 700;
}

.progress-step.done .step-circle {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.progress-step.current .step-circle {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.progress-step .step-label {
  color: var(--muted);

  font-size: 0.82rem;
  font-weight: 700;
}

.progress-step.done .step-label,
.progress-step.current .step-label {
  color: var(--ink);
}

.progress-line {
  width: 56px;
  height: 2px;

  margin: 0 13px;

  background: var(--line);
}


/* Main section */

.ikonic-checkout-section {
  padding: 26px 0 84px;
}

.checkout-page-heading {
  max-width: 720px;

  margin: 0 auto 38px;

  text-align: center;
}

.checkout-page-heading .eyebrow {
  justify-content: center;
}

.checkout-page-heading h1 {
  margin: 14px 0 13px;

  font-size: clamp(
    1.9rem,
    4vw,
    2.75rem
  );
}

.checkout-page-heading p {
  color: var(--muted);

  font-size: 0.98rem;
  line-height: 1.75;
}


/* =========================================================
   WOOCOMMERCE CHECKOUT LAYOUT
   ========================================================= */

.ikonic-quote-checkout
form.checkout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    420px;

  grid-template-areas:
    "customer heading"
    "customer review";

  gap: 0 42px;

  align-items: start;
}

.ikonic-quote-checkout
#customer_details {
  grid-area: customer;

  width: 100%;

  margin: 0;
}

.ikonic-quote-checkout
#customer_details .col-1 {
  width: 100%;
  float: none;

  padding: 34px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
  box-shadow:
    0 12px 30px -22px
    rgba(42, 26, 16, 0.38);
}

.ikonic-quote-checkout
#customer_details .col-2 {
  display: none !important;
}


/* Customer Details heading */

.ikonic-quote-checkout
.woocommerce-billing-fields > h3 {
  margin: 0 0 25px;
  padding-bottom: 15px;

  border-bottom: 1px solid var(--line);

  color: var(--ink);

  font-size: 1.3rem;
}


/* Customer fields */

.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 19px 18px;
}

.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper
.form-row {
  width: 100%;

  float: none;

  margin: 0;
  padding: 0;
}

.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper
.form-row-wide {
  grid-column: 1 / -1;
}

.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper
.form-row-first,
.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper
.form-row-last {
  grid-column: auto;
}


/* Labels */

.ikonic-quote-checkout
.woocommerce-billing-fields label {
  display: block;

  margin-bottom: 8px;

  color: var(--ink);

  font-size: 0.82rem;
  font-weight: 700;
}

.ikonic-quote-checkout
.woocommerce-billing-fields
.required {
  color: var(--red);
}


/* Inputs */

.ikonic-quote-checkout
.woocommerce-input-wrapper {
  display: block;
}

.ikonic-quote-checkout
.input-text,
.ikonic-quote-checkout
select {
  width: 100%;
  min-height: 48px;

  margin: 0;
  padding: 12px 14px;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--ink);
  background: var(--cream);

  font-family: inherit;
  font-size: 0.89rem;

  outline: none;

  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.ikonic-quote-checkout
.input-text::placeholder {
  color: #978979;
}

.ikonic-quote-checkout
.input-text:focus,
.ikonic-quote-checkout
select:focus {
  border-color: var(--red);
  background: var(--white);

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1);
}


/* Validation */

.ikonic-quote-checkout
.woocommerce-invalid
.input-text {
  border-color: var(--red);
}

.ikonic-quote-checkout
.woocommerce-validated
.input-text {
  border-color: var(--green);
}


/* =========================================================
   ORDER REVIEW
   ========================================================= */

.ikonic-quote-checkout
#order_review_heading {
  grid-area: heading;

  margin: 0;
  padding: 27px 28px 17px;

  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius:
    var(--radius)
    var(--radius)
    0
    0;

  color: var(--ink);
  background: var(--white);

  font-size: 1.25rem;
}

.ikonic-quote-checkout
#order_review {
  grid-area: review;

  padding: 0 28px 28px;

  border: 1px solid var(--line);
  border-top: 0;
  border-radius:
    0
    0
    var(--radius)
    var(--radius);

  background: var(--white);

  box-shadow:
    0 12px 30px -22px
    rgba(42, 26, 16, 0.38);
}


/* Order table */

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table {
  width: 100%;

  margin: 0;

  border: 0;
  border-collapse: collapse;

  background: transparent;
}

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
thead {
  display: none;
}

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
th,
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
td {
  border: 0;
}

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.cart_item td {
  padding: 16px 0;

  border-bottom: 1px solid var(--line);

  vertical-align: middle;
}

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.product-name {
  padding-right: 14px;

  color: var(--ink);

  font-size: 0.84rem;
  font-weight: 700;
}

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.product-total {
  color: var(--ink);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}


/* Product image and name */

.ikonic-checkout-product {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.ikonic-checkout-product-image {
  width: 52px !important;
  height: 52px !important;

  display: block;

  margin: 0 !important;

  border: 1px solid var(--line);
  border-radius: 9px;

  object-fit: cover;
  object-position: center;

  background: var(--cream-2);
}

.ikonic-checkout-product-name {
  min-width: 0;

  line-height: 1.4;
}

.ikonic-checkout-item-quantity {
  display: inline-block;

  margin-left: 5px;

  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
}


/* Product variation */

.ikonic-quote-checkout
.variation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 5px;

  margin: 5px 0 0;

  color: var(--muted);

  font-size: 0.68rem;
  font-weight: 500;
}

.ikonic-quote-checkout
.variation dt,
.ikonic-quote-checkout
.variation dd {
  margin: 0;
}

.ikonic-quote-checkout
.variation p {
  margin: 0;
}


/* Totals */

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
tfoot th,
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
tfoot td {
  padding: 9px 0;

  color: var(--muted);

  font-size: 0.84rem;
  font-weight: 600;
}

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
tfoot td {
  color: var(--ink);

  text-align: right;
}

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.order-total th,
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.order-total td {
  padding-top: 17px;

  border-top: 1px solid var(--line);

  color: var(--ink);

  font-size: 1rem;
}

.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.order-total
.amount {
  color: var(--red);

  font-family: "Zilla Slab", serif;
  font-size: 1.35rem;
}


/* =========================================================
   REQUEST QUOTE BUTTON
   ========================================================= */

.ikonic-quote-checkout
#payment {
  margin-top: 18px;

  border-radius: 10px;

  background: transparent;
}

.ikonic-quote-checkout
#payment ul.payment_methods {
  display: none !important;
}

.ikonic-quote-checkout
#payment
.form-row.place-order {
  margin: 0;
  padding: 0;
}

.ikonic-quote-checkout
#place_order {
  width: 100%;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  float: none;

  margin: 0;
  padding: 14px 20px;

  border: 0;
  border-radius: 10px;

  color: var(--white);
  background: var(--red);

  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.ikonic-quote-checkout
#place_order:hover {
  color: var(--white);
  background: var(--red-dark);

  transform: translateY(-1px);

  box-shadow:
    0 10px 22px -12px
    rgba(213, 22, 31, 0.7);
}

.ikonic-quote-checkout
#place_order::before {
  margin-right: 8px;

  content: "✓";

  font-size: 0.9rem;
}


/* Privacy and terms */

.ikonic-quote-checkout
.woocommerce-privacy-policy-text {
  margin-bottom: 16px;

  color: var(--muted);

  font-size: 0.74rem;
  line-height: 1.6;
}

.ikonic-quote-checkout
.woocommerce-privacy-policy-text p {
  margin: 0;
}

.ikonic-quote-checkout
.woocommerce-privacy-policy-text a,
.ikonic-quote-checkout
.woocommerce-terms-and-conditions-link {
  color: var(--red);

  font-weight: 700;
}

.ikonic-quote-checkout
.woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;

  margin-bottom: 16px;

  color: var(--muted);

  font-size: 0.76rem;
  line-height: 1.5;
}


/* =========================================================
   COUPON
   ========================================================= */

.ikonic-quote-checkout
.woocommerce-form-coupon-toggle {
  margin-bottom: 14px;
}

.ikonic-quote-checkout
.woocommerce-form-coupon-toggle
.woocommerce-info {
  padding: 15px 18px;

  border: 1px dashed var(--line);
  border-radius: 10px;

  color: var(--ink);
  background: var(--cream-2);

  font-size: 0.84rem;
}

.ikonic-quote-checkout
.woocommerce-form-coupon {
  display: flex;
  align-items: stretch;
  gap: 10px;

  margin: 0 0 28px !important;
  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: var(--white);
}

.ikonic-quote-checkout
.woocommerce-form-coupon p {
  margin: 0;
}

.ikonic-quote-checkout
.woocommerce-form-coupon
.form-row-first {
  flex: 1 1 auto;
}

.ikonic-quote-checkout
.woocommerce-form-coupon
.form-row-last {
  flex: 0 0 auto;
}

.ikonic-quote-checkout
.woocommerce-form-coupon
.button {
  min-height: 48px;

  padding: 11px 20px;

  border: 0;
  border-radius: 9px;

  color: var(--white);
  background: var(--soil);

  font-size: 0.84rem;
  font-weight: 700;
}

.ikonic-quote-checkout
.woocommerce-form-coupon
.button:hover {
  color: var(--white);
  background: var(--soil-dark);
}


/* =========================================================
   CHECKOUT NOTICES
   ========================================================= */

.ikonic-quote-checkout
.woocommerce-notices-wrapper {
  margin-bottom: 22px;
}

.ikonic-quote-checkout
.woocommerce-error,
.ikonic-quote-checkout
.woocommerce-info,
.ikonic-quote-checkout
.woocommerce-message {
  margin: 0 0 18px;
  padding: 15px 18px 15px 48px;

  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.84rem;
}

.ikonic-quote-checkout
.woocommerce-error {
  border-left-color: var(--red);
}

.ikonic-quote-checkout
.woocommerce-message {
  border-left-color: var(--green);
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.ikonic-quote-checkout
.cart-empty,
.ikonic-quote-checkout
.return-to-shop {
  max-width: 680px;

  margin-right: auto;
  margin-left: auto;

  text-align: center;
}

.ikonic-quote-checkout
.cart-empty {
  padding: 50px 20px 15px;

  color: var(--muted);

  font-size: 1rem;
}

.ikonic-quote-checkout
.return-to-shop .button {
  display: inline-flex;

  padding: 13px 24px;

  border-radius: 999px;

  color: var(--white);
  background: var(--red);

  font-weight: 700;
}


/* =========================================================
   QUOTE RECEIVED PAGE
   ========================================================= */

.ikonic-quote-checkout
.woocommerce-order {
  max-width: 850px;

  margin: 0 auto;

  padding: 38px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);
}

.ikonic-quote-checkout
.woocommerce-notice--success {
  margin-bottom: 25px;

  color: var(--green);

  font-family: "Zilla Slab", serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.ikonic-quote-checkout
.woocommerce-order-overview {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 12px;

  margin: 0 0 30px !important;
  padding: 0 !important;
}

.ikonic-quote-checkout
.woocommerce-order-overview li {
  float: none;

  margin: 0 !important;
  padding: 14px !important;

  border: 1px solid var(--line) !important;
  border-radius: 9px;

  background: var(--cream);

  font-size: 0.67rem;
}

.ikonic-quote-checkout
.woocommerce-order-overview li strong {
  display: block;

  margin-top: 5px;

  color: var(--ink);

  font-size: 0.8rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .checkout-header-inner {
    grid-template-columns:
      auto
      minmax(0, 1fr)
      auto;

    gap: 20px;
  }

  .checkout-call-button small {
    display: none;
  }

  .ikonic-quote-checkout
  form.checkout {
    grid-template-columns: 1fr;

    grid-template-areas:
      "customer"
      "heading"
      "review";

    gap: 25px;
  }

  .ikonic-quote-checkout
  #order_review_heading {
    margin-bottom: -25px;
  }

  .ikonic-quote-checkout
  .woocommerce-order-overview {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .checkout-header-inner {
    min-height: 72px;

    grid-template-columns:
      auto
      minmax(0, 1fr)
      auto;

    gap: 12px;
  }

  .checkout-header-logo .custom-logo,
  .checkout-logo-link img {
    width: 82px;
    max-width: 82px;
    height: 43px;
  }

  .secure-checkout-badge {
    justify-content: center;

    font-size: 0.68rem;
  }

  .secure-checkout-badge svg {
    width: 16px;
    height: 16px;
  }

  .checkout-call-button {
    display: none;
  }

  .checkout-back-link {
    min-height: 36px;

    padding: 8px 11px;

    font-size: 0.7rem;
  }

  .checkout-progress {
    padding-top: 22px;
  }

  .progress-step .step-label {
    display: none;
  }

  .progress-line {
    width: 35px;

    margin: 0 7px;
  }

  .ikonic-checkout-section {
    padding-top: 19px;
    padding-bottom: 60px;
  }

  .checkout-page-heading {
    margin-bottom: 28px;
  }

  .checkout-page-heading h1 {
    font-size: 1.85rem;
  }

  .ikonic-quote-checkout
  #customer_details .col-1 {
    padding: 26px 21px;
  }

  .ikonic-quote-checkout
  .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .ikonic-quote-checkout
  .woocommerce-billing-fields__field-wrapper
  .form-row-wide,
  .ikonic-quote-checkout
  .woocommerce-billing-fields__field-wrapper
  .form-row-first,
  .ikonic-quote-checkout
  .woocommerce-billing-fields__field-wrapper
  .form-row-last {
    grid-column: 1;
  }

  .ikonic-quote-checkout
  #order_review_heading {
    padding: 24px 21px 16px;
  }

  .ikonic-quote-checkout
  #order_review {
    padding: 0 21px 23px;
  }

  .ikonic-quote-checkout
  .woocommerce-form-coupon {
    flex-direction: column;
  }

  .ikonic-quote-checkout
  .woocommerce-form-coupon
  .form-row-first,
  .ikonic-quote-checkout
  .woocommerce-form-coupon
  .form-row-last,
  .ikonic-quote-checkout
  .woocommerce-form-coupon
  .button {
    width: 100%;
  }

  .ikonic-quote-checkout
  .woocommerce-order {
    padding: 27px 20px;
  }

  .ikonic-quote-checkout
  .woocommerce-order-overview {
    grid-template-columns: 1fr;
  }

}


@media screen and (max-width: 782px) {

  .admin-bar .checkout-site-header {
    top: 46px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .secure-checkout-badge span {
    max-width: 85px;

    line-height: 1.25;
  }

  .checkout-back-link span {
    display: none;
  }

  .ikonic-checkout-product {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 9px;
  }

  .ikonic-checkout-product-image {
    width: 44px !important;
    height: 44px !important;
  }

  .ikonic-quote-checkout
  .woocommerce-checkout-review-order-table
  .product-name {
    font-size: 0.78rem;
  }

  .ikonic-quote-checkout
  .woocommerce-checkout-review-order-table
  .product-total {
    font-size: 0.7rem;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .checkout-site-header *,
  .ikonic-quote-checkout * {
    transition: none !important;
  }

}

















/* =========================================================
   QUOTE CHECKOUT LAYOUT CORRECTIONS
   Add after all existing checkout CSS
   ========================================================= */

/* Remove WooCommerce's old floating checkout layout */

body.woocommerce-checkout
.ikonic-quote-checkout
form.checkout.woocommerce-checkout {
  width: 100%;

  display: grid !important;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 420px);

  grid-template-areas:
    "customer order-heading"
    "customer order-review";

  align-items: start;
  gap: 0 42px;

  margin: 0;
  padding: 0;
}

body.woocommerce-checkout
.ikonic-quote-checkout
form.checkout::before,
body.woocommerce-checkout
.ikonic-quote-checkout
form.checkout::after {
  display: none !important;
}


/* =========================================================
   CUSTOMER DETAILS CARD
   ========================================================= */

body.woocommerce-checkout
.ikonic-quote-checkout
#customer_details {
  grid-area: customer;

  width: 100% !important;

  display: block;

  margin: 0 !important;
  padding: 0 !important;
}

body.woocommerce-checkout
.ikonic-quote-checkout
#customer_details::before,
body.woocommerce-checkout
.ikonic-quote-checkout
#customer_details::after {
  display: none !important;
}

body.woocommerce-checkout
.ikonic-quote-checkout
#customer_details .col-1 {
  width: 100% !important;

  display: block;

  float: none !important;

  margin: 0 !important;
  padding: 32px !important;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  box-shadow:
    0 12px 30px -22px
    rgba(42, 26, 16, 0.4);
}

body.woocommerce-checkout
.ikonic-quote-checkout
#customer_details .col-2 {
  display: none !important;
}


/* Customer Details heading */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields > h3 {
  display: block;

  margin: 0 0 25px !important;
  padding: 0 0 15px !important;

  border-bottom: 1px solid var(--line);

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}


/* =========================================================
   CUSTOMER FIELDS GRID
   ========================================================= */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper {
  width: 100%;

  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 20px 18px;

  margin: 0;
  padding: 0;
}


/* Override WooCommerce field floats and widths */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper
.form-row,
body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper
.form-row-first,
body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper
.form-row-last,
body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields__field-wrapper
.form-row-wide {
  width: 100% !important;
  max-width: none !important;

  display: block;

  float: none !important;
  clear: none !important;

  margin: 0 !important;
  padding: 0 !important;
}


/* Full-width name */

body.woocommerce-checkout
.ikonic-quote-checkout
#billing_first_name_field {
  grid-column: 1 / -1;
}


/* Email and phone share one row */

body.woocommerce-checkout
.ikonic-quote-checkout
#billing_email_field {
  grid-column: 1;
}

body.woocommerce-checkout
.ikonic-quote-checkout
#billing_phone_field {
  grid-column: 2;
}


/* Town/city full width */

body.woocommerce-checkout
.ikonic-quote-checkout
#billing_city_field {
  grid-column: 1 / -1;
}


/* Labels */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields
.form-row label {
  display: block;

  margin: 0 0 8px !important;
  padding: 0;

  color: var(--ink);

  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.4;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields
.optional {
  color: var(--muted);

  font-size: 0.72rem;
  font-weight: 500;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields
.required {
  color: var(--red);
}


/* Input wrappers */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-input-wrapper {
  width: 100%;

  display: block;
}


/* Inputs */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields
.input-text,
body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields
select {
  width: 100% !important;
  min-width: 0;
  min-height: 49px;

  display: block;

  margin: 0 !important;
  padding: 12px 14px !important;

  border: 1px solid var(--line) !important;
  border-radius: 9px !important;

  color: var(--ink) !important;
  background: var(--cream) !important;

  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;

  box-shadow: none !important;
  outline: none;

  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields
.input-text:focus,
body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields
select:focus {
  border-color: var(--red) !important;
  background: var(--white) !important;

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.1) !important;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-billing-fields
.input-text::placeholder {
  color: #978979;

  opacity: 1;
}


/* Select2 fallback */

body.woocommerce-checkout
.ikonic-quote-checkout
.select2-container {
  width: 100% !important;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.select2-container
.select2-selection--single {
  min-height: 49px;

  border: 1px solid var(--line);
  border-radius: 9px;

  background: var(--cream);
}

body.woocommerce-checkout
.ikonic-quote-checkout
.select2-container
.select2-selection--single
.select2-selection__rendered {
  padding: 10px 38px 10px 14px;

  color: var(--ink);

  line-height: 27px;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.select2-container
.select2-selection--single
.select2-selection__arrow {
  top: 11px;
  right: 9px;
}


/* Validation */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-invalid
.input-text {
  border-color: var(--red) !important;

  box-shadow:
    0 0 0 3px
    rgba(213, 22, 31, 0.08) !important;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-validated
.input-text {
  border-color: var(--green) !important;
}


/* =========================================================
   YOUR QUOTE REQUEST CARD
   ========================================================= */

body.woocommerce-checkout
.ikonic-quote-checkout
#order_review_heading {
  grid-area: order-heading;

  width: 100%;

  display: block;
  float: none !important;

  margin: 0 !important;
  padding: 27px 28px 17px !important;

  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius:
    var(--radius)
    var(--radius)
    0
    0;

  color: var(--ink);
  background: var(--white);

  font-family: "Zilla Slab", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

body.woocommerce-checkout
.ikonic-quote-checkout
#order_review {
  grid-area: order-review;

  width: 100%;

  display: block;
  float: none !important;

  margin: 0 !important;
  padding: 0 28px 28px !important;

  border: 1px solid var(--line);
  border-top: 0;
  border-radius:
    0
    0
    var(--radius)
    var(--radius);

  background: var(--white);

  box-shadow:
    0 12px 30px -22px
    rgba(42, 26, 16, 0.4);
}


/* Keep table content away from card edges */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table {
  width: 100%;

  margin: 0 !important;
  padding: 0;

  border: 0 !important;
  border-collapse: collapse;

  background: transparent;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.cart_item td {
  padding-top: 17px !important;
  padding-bottom: 17px !important;

  border-top: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  border-bottom: 1px solid var(--line) !important;

  vertical-align: middle;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.product-name {
  padding-right: 15px !important;
  padding-left: 0 !important;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.product-total {
  padding-right: 0 !important;
  padding-left: 10px !important;

  text-align: right;
}


/* Totals spacing */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
tfoot th,
body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
tfoot td {
  padding-top: 9px !important;
  padding-bottom: 9px !important;

  border: 0 !important;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
tfoot th {
  padding-left: 0 !important;

  color: var(--muted);

  text-align: left;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
tfoot td {
  padding-right: 0 !important;

  color: var(--ink);

  text-align: right;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.order-total th,
body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-checkout-review-order-table
.order-total td {
  padding-top: 17px !important;

  border-top: 1px solid var(--line) !important;

  color: var(--ink);

  font-size: 1rem;
}


/* =========================================================
   PAYMENT / QUOTE SUBMISSION AREA
   ========================================================= */

body.woocommerce-checkout
.ikonic-quote-checkout
#payment.woocommerce-checkout-payment {
  width: 100%;

  margin: 18px 0 0 !important;
  padding: 0 !important;

  border: 0;
  border-radius: 0;

  background: transparent !important;
}


/* No payment methods are needed for a quote */

body.woocommerce-checkout
.ikonic-quote-checkout
#payment
ul.payment_methods {
  display: none !important;
}


/* Remove WooCommerce's triangle decoration */

body.woocommerce-checkout
.ikonic-quote-checkout
#payment
.payment_box::before {
  display: none !important;
}


/* Place order wrapper */

body.woocommerce-checkout
.ikonic-quote-checkout
#payment
.form-row.place-order {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 15px;

  float: none !important;
  clear: both;

  margin: 0 !important;
  padding: 19px 0 0 !important;

  border-top: 1px solid var(--line);
}


/* =========================================================
   PRIVACY TEXT
   ========================================================= */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-privacy-policy-text {
  width: 100%;

  display: block;

  order: 1;

  margin: 0 !important;
  padding: 14px 15px !important;

  border: 1px solid var(--line);
  border-radius: 9px;

  color: var(--muted);
  background: var(--cream);

  font-size: 0.75rem;
  line-height: 1.65;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-privacy-policy-text p {
  margin: 0 !important;
  padding: 0;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-privacy-policy-text a {
  color: var(--red);

  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* =========================================================
   TERMS CHECKBOX
   ========================================================= */

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-terms-and-conditions-wrapper {
  width: 100%;

  order: 2;

  margin: 0;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-form__label-for-checkbox {
  width: 100%;

  display: flex !important;
  align-items: flex-start;
  gap: 9px;

  margin: 0 !important;
  padding: 0;

  color: var(--muted);

  font-size: 0.76rem;
  line-height: 1.55;

  cursor: pointer;
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-form__label-for-checkbox
input[type="checkbox"] {
  width: 16px;
  height: 16px;

  flex: 0 0 16px;

  margin: 2px 0 0 !important;

  accent-color: var(--red);
}

body.woocommerce-checkout
.ikonic-quote-checkout
.woocommerce-terms-and-conditions-link {
  color: var(--red);

  font-weight: 700;
}


/* =========================================================
   REQUEST QUOTE BUTTON
   ========================================================= */

body.woocommerce-checkout
.ikonic-quote-checkout
#place_order {
  width: 100% !important;
  min-height: 53px;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;

  order: 3;

  float: none !important;

  margin: 0 !important;
  padding: 14px 20px !important;

  border: 0 !important;
  border-radius: 10px !important;

  color: var(--white) !important;
  background: var(--red) !important;

  font-family: "Inter", sans-serif;
  font-size: 0.96rem !important;
  font-weight: 800 !important;
  line-height: 1.3;
  text-align: center;

  box-shadow: none !important;

  cursor: pointer;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

body.woocommerce-checkout
.ikonic-quote-checkout
#place_order:hover {
  color: var(--white) !important;
  background: var(--red-dark) !important;

  transform: translateY(-1px);

  box-shadow:
    0 10px 22px -12px
    rgba(213, 22, 31, 0.7) !important;
}

body.woocommerce-checkout
.ikonic-quote-checkout
#place_order:focus-visible {
  outline: 3px solid rgba(213, 22, 31, 0.24);
  outline-offset: 3px;
}

body.woocommerce-checkout
.ikonic-quote-checkout
#place_order:disabled {
  color: var(--muted) !important;
  background: var(--cream-2) !important;

  cursor: not-allowed;

  transform: none;
  box-shadow: none !important;
}


/* =========================================================
   WOOCOMMERCE BLOCK UI DURING SUBMISSION
   ========================================================= */

body.woocommerce-checkout
.ikonic-quote-checkout
.blockUI.blockOverlay {
  border-radius: var(--radius);

  background-color: rgba(247, 241, 228, 0.65) !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  body.woocommerce-checkout
  .ikonic-quote-checkout
  form.checkout.woocommerce-checkout {
    grid-template-columns: 1fr;

    grid-template-areas:
      "customer"
      "order-heading"
      "order-review";

    gap: 24px;
  }

  body.woocommerce-checkout
  .ikonic-quote-checkout
  #order_review_heading {
    margin-bottom: -24px !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  body.woocommerce-checkout
  .ikonic-quote-checkout
  #customer_details .col-1 {
    padding: 25px 20px !important;
  }

  body.woocommerce-checkout
  .ikonic-quote-checkout
  .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  body.woocommerce-checkout
  .ikonic-quote-checkout
  #billing_first_name_field,
  body.woocommerce-checkout
  .ikonic-quote-checkout
  #billing_email_field,
  body.woocommerce-checkout
  .ikonic-quote-checkout
  #billing_phone_field,
  body.woocommerce-checkout
  .ikonic-quote-checkout
  #billing_city_field {
    grid-column: 1;
  }

  body.woocommerce-checkout
  .ikonic-quote-checkout
  #order_review_heading {
    padding: 24px 20px 16px !important;
  }

  body.woocommerce-checkout
  .ikonic-quote-checkout
  #order_review {
    padding: 0 20px 22px !important;
  }

  body.woocommerce-checkout
  .ikonic-quote-checkout
  .woocommerce-privacy-policy-text {
    padding: 13px !important;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  body.woocommerce-checkout
  .ikonic-quote-checkout
  #customer_details .col-1 {
    padding: 22px 17px !important;
  }

  body.woocommerce-checkout
  .ikonic-quote-checkout
  #order_review_heading {
    padding-right: 17px !important;
    padding-left: 17px !important;
  }

  body.woocommerce-checkout
  .ikonic-quote-checkout
  #order_review {
    padding-right: 17px !important;
    padding-left: 17px !important;
  }

}






/* =========================================================
   IKONIC WOOCOMMERCE CART PAGE
   ========================================================= */

.ikonic-cart-page {
  width: 100%;
  min-height: 65vh;
}

.ikonic-cart-main-section {
  padding: 25px 0 84px;
}


/* =========================================================
   CART PROGRESS
   ========================================================= */

.ikonic-cart-progress {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 28px 0 8px;
}

.ikonic-cart-progress .progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ikonic-cart-progress .step-circle {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border: 2px solid var(--line);
  border-radius: 50%;

  color: var(--muted);
  background: var(--cream-2);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

.ikonic-cart-progress
.progress-step.current
.step-circle {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.ikonic-cart-progress .step-label {
  color: var(--muted);

  font-size: 0.84rem;
  font-weight: 700;
}

.ikonic-cart-progress
.progress-step.current
.step-label {
  color: var(--ink);
}

.ikonic-cart-progress .progress-line {
  width: 56px;
  height: 2px;

  margin: 0 12px;

  background: var(--line);
}


/* =========================================================
   CART LAYOUT
   ========================================================= */

.ikonic-cart-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    380px;

  gap: 40px;
  align-items: start;
}

.ikonic-cart-products-column {
  min-width: 0;
}

.ikonic-cart-form {
  margin: 0;
}


/* =========================================================
   CART ITEMS CARD
   ========================================================= */

.ikonic-cart-items-card {
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  box-shadow:
    0 12px 30px -24px
    rgba(42, 26, 16, 0.4);
}

body.woocommerce-cart
.ikonic-cart-table {
  width: 100%;

  margin: 0 !important;

  border: 0 !important;
  border-collapse: collapse;

  background: transparent;
}

body.woocommerce-cart
.ikonic-cart-table th,
body.woocommerce-cart
.ikonic-cart-table td {
  border: 0;
}


/* Table headings */

body.woocommerce-cart
.ikonic-cart-table thead th {
  padding: 17px 13px;

  border-bottom: 2px solid var(--line);

  color: var(--muted);
  background: var(--cream);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
}

body.woocommerce-cart
.ikonic-cart-table thead
.product-thumbnail {
  width: 92px;
}

body.woocommerce-cart
.ikonic-cart-table thead
.product-remove {
  width: 80px;
}


/* Cart rows */

body.woocommerce-cart
.ikonic-cart-table
.ikonic-cart-row td {
  padding: 20px 13px;

  border-bottom: 1px solid var(--line);

  vertical-align: middle;
}

body.woocommerce-cart
.ikonic-cart-table
.ikonic-cart-row:last-of-type td {
  border-bottom: 0;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.ikonic-cart-thumbnail {
  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: var(--cream-2);
}

body.woocommerce-cart
.ikonic-cart-thumbnail img {
  width: 100% !important;
  height: 100% !important;

  display: block;

  margin: 0 !important;

  object-fit: cover;
  object-position: center;
}


/* =========================================================
   PRODUCT INFORMATION
   ========================================================= */

.ikonic-cart-product-info {
  min-width: 170px;
}

.ikonic-cart-product-name {
  display: inline-block;

  margin-bottom: 5px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;

  transition: color 0.15s ease;
}

a.ikonic-cart-product-name:hover {
  color: var(--red);
}

body.woocommerce-cart
.ikonic-cart-product-info
.variation {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 6px;

  margin: 4px 0 0;

  color: var(--muted);

  font-size: 0.72rem;
}

body.woocommerce-cart
.ikonic-cart-product-info
.variation dt,
body.woocommerce-cart
.ikonic-cart-product-info
.variation dd {
  margin: 0;
}

body.woocommerce-cart
.ikonic-cart-product-info
.variation p {
  margin: 0;
}

.ikonic-cart-product-info
.backorder_notification {
  margin: 6px 0 0;

  color: #b7791f;

  font-size: 0.73rem;
  font-weight: 700;
}


/* =========================================================
   PRICE AND SUBTOTAL
   ========================================================= */

body.woocommerce-cart
.ikonic-cart-table
.product-price,
body.woocommerce-cart
.ikonic-cart-table
.product-subtotal {
  color: var(--ink);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

body.woocommerce-cart
.ikonic-cart-table
.product-subtotal {
  font-size: 0.9rem;
}


/* =========================================================
   QUANTITY CONTROLS
   ========================================================= */

.ikonic-cart-quantity {
  width: max-content;

  display: inline-flex;
  align-items: stretch;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 9px;

  background: var(--white);
}

.ikonic-cart-qty-button {
  width: 31px;
  height: 34px;

  display: grid;
  place-items: center;

  flex: 0 0 31px;

  margin: 0;
  padding: 0;

  border: 0;

  color: var(--ink);
  background: var(--cream-2);

  font-size: 1rem;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.ikonic-cart-qty-button:hover {
  color: var(--white);
  background: var(--red);
}

.ikonic-cart-quantity .quantity {
  width: 38px;

  display: flex;

  margin: 0 !important;
}

body.woocommerce-cart
.ikonic-cart-quantity
.quantity .qty {
  width: 38px;
  height: 34px;
  min-height: 34px;

  margin: 0;
  padding: 0 3px;

  border: 0;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 0;

  color: var(--ink);
  background: var(--white);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;

  box-shadow: none;
  outline: none;

  appearance: textfield;
}

body.woocommerce-cart
.ikonic-cart-quantity
.quantity .qty::-webkit-outer-spin-button,
body.woocommerce-cart
.ikonic-cart-quantity
.quantity .qty::-webkit-inner-spin-button {
  margin: 0;

  appearance: none;
}


/* =========================================================
   REMOVE LINK
   ========================================================= */

body.woocommerce-cart
.ikonic-cart-remove {
  width: auto;
  height: auto;

  display: inline-flex;
  align-items: center;
  gap: 5px;

  margin: 0;
  padding: 6px 0;

  border-radius: 0;

  color: var(--red) !important;
  background: transparent !important;

  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1;

  transition: color 0.15s ease;
}

body.woocommerce-cart
.ikonic-cart-remove:hover {
  color: var(--red-dark) !important;
  background: transparent !important;
}

.ikonic-cart-remove svg {
  width: 12px;
  height: 12px;
}


/* =========================================================
   CART ACTIONS
   ========================================================= */

body.woocommerce-cart
.ikonic-cart-table
.ikonic-cart-actions td {
  padding: 18px 20px !important;

  border-top: 1px solid var(--line);

  background: var(--cream);
}

.ikonic-cart-actions-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ikonic-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--ink);

  font-size: 0.84rem;
  font-weight: 700;

  transition: color 0.15s ease;
}

.ikonic-continue-shopping:hover {
  color: var(--red);
}

body.woocommerce-cart
.ikonic-update-cart {
  min-height: 40px;

  margin: 0 !important;
  padding: 9px 18px !important;

  border: 1px solid var(--line) !important;
  border-radius: 8px !important;

  color: var(--ink) !important;
  background: var(--white) !important;

  font-family: inherit;
  font-size: 0.8rem !important;
  font-weight: 700 !important;

  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

body.woocommerce-cart
.ikonic-update-cart:hover {
  color: var(--red) !important;
  border-color: var(--red) !important;
}

body.woocommerce-cart
.ikonic-update-cart:disabled {
  color: #a89d90 !important;

  opacity: 0.55;
  cursor: not-allowed;
}


/* =========================================================
   QUOTE SUMMARY
   ========================================================= */

.ikonic-cart-summary-card {
  position: sticky;
  top: 92px;

  padding: 28px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  box-shadow:
    0 12px 30px -24px
    rgba(42, 26, 16, 0.4);
}

.ikonic-cart-summary-card h2 {
  margin: 0 0 19px;

  font-size: 1.2rem;
}

.ikonic-cart-summary-row,
.ikonic-cart-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;

  padding: 11px 0;

  color: var(--muted);

  font-size: 0.86rem;
}

.ikonic-cart-summary-row {
  border-bottom: 1px solid var(--line);
}

.ikonic-cart-summary-row strong {
  color: var(--ink);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.87rem;
}

.ikonic-cart-total-row {
  margin-top: 7px;
  padding-top: 17px;

  border-top: 1px solid var(--line);

  color: var(--ink);

  font-weight: 700;
}

.ikonic-cart-total-row strong {
  color: var(--red);

  font-family: "Zilla Slab", serif;
  font-size: 1.35rem;
}


/* Delivery note */

.ikonic-cart-delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  margin: 17px 0;
  padding: 15px;

  border-radius: 10px;

  color: var(--muted);
  background: var(--cream-2);
}

.ikonic-cart-delivery-note svg {
  width: 21px;
  height: 21px;

  flex: 0 0 21px;

  color: var(--red);
}

.ikonic-cart-delivery-note strong {
  display: block;

  margin-bottom: 4px;

  color: var(--ink);

  font-size: 0.8rem;
}

.ikonic-cart-delivery-note p {
  margin: 0;

  font-size: 0.72rem;
  line-height: 1.55;
}


/* Request quote button */

body.woocommerce-cart
.ikonic-request-quote-button {
  width: 100%;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin: 18px 0 0 !important;
  padding: 14px 18px !important;

  border: 0 !important;
  border-radius: 10px !important;

  color: var(--white) !important;
  background: var(--red) !important;

  font-family: inherit;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  text-align: center;

  transition:
    background-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

body.woocommerce-cart
.ikonic-request-quote-button:hover {
  color: var(--white) !important;
  background: var(--red-dark) !important;

  transform: translateY(-1px);

  box-shadow:
    0 10px 22px -12px
    rgba(213, 22, 31, 0.7);
}

.ikonic-request-quote-button svg {
  width: 18px;
  height: 18px;

  flex: 0 0 18px;
}


/* Trust details */

.ikonic-cart-trust-list {
  display: flex;
  flex-direction: column;
  gap: 9px;

  margin-top: 18px;
}

.ikonic-cart-trust-list > div {
  display: flex;
  align-items: center;
  gap: 7px;

  color: var(--muted);

  font-size: 0.72rem;
}

.ikonic-cart-trust-list svg {
  width: 14px;
  height: 14px;

  flex: 0 0 14px;

  color: var(--green);
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.ikonic-empty-cart {
  max-width: 720px;

  margin: 0 auto;
  padding: 70px 30px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  text-align: center;
}

.ikonic-empty-cart-icon {
  width: 74px;
  height: 74px;

  display: grid;
  place-items: center;

  margin: 0 auto 22px;

  border-radius: 50%;

  color: var(--red);
  background: var(--cream-2);
}

.ikonic-empty-cart-icon svg {
  width: 35px;
  height: 35px;
}

.ikonic-empty-cart h2 {
  margin-bottom: 10px;

  font-size: 1.45rem;
}

.ikonic-empty-cart p {
  max-width: 500px;

  margin: 0 auto 26px;

  color: var(--muted);

  font-size: 0.92rem;
}


/* =========================================================
   CROSS SELLS
   ========================================================= */

.ikonic-cart-cross-sells {
  padding-top: 74px;
  padding-bottom: 82px;
}

.ikonic-cart-cross-sells
.cross-sells {
  margin: 0;
}

.ikonic-cart-cross-sells
.cross-sells > h2:empty {
  display: none;
}

.ikonic-cart-cross-sells
ul.products {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 22px;

  margin: 0 !important;
  padding: 0 !important;
}

.ikonic-cart-cross-sells
ul.products::before,
.ikonic-cart-cross-sells
ul.products::after {
  display: none;
}

.ikonic-cart-cross-sells
ul.products li.product {
  width: auto !important;

  float: none !important;

  margin: 0 !important;
}


/* =========================================================
   WOOCOMMERCE NOTICES
   ========================================================= */

.ikonic-cart-main-section
.woocommerce-message,
.ikonic-cart-main-section
.woocommerce-error,
.ikonic-cart-main-section
.woocommerce-info {
  margin: 0 0 22px;
  padding: 16px 18px 16px 49px;

  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 10px;

  color: var(--ink);
  background: var(--white);

  font-size: 0.84rem;
}

.ikonic-cart-main-section
.woocommerce-error {
  border-left-color: var(--red);
}

.ikonic-cart-main-section
.woocommerce-info {
  border-left-color: var(--gold);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .ikonic-cart-layout {
    grid-template-columns: 1fr;
  }

  .ikonic-cart-summary-card {
    position: static;
  }

  .ikonic-cart-cross-sells
  ul.products {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .ikonic-cart-progress
  .step-label {
    display: none;
  }

  .ikonic-cart-progress
  .progress-line {
    width: 34px;

    margin: 0 7px;
  }

  .ikonic-cart-main-section {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  body.woocommerce-cart
  .ikonic-cart-table thead {
    display: none;
  }

  body.woocommerce-cart
  .ikonic-cart-table,
  body.woocommerce-cart
  .ikonic-cart-table tbody,
  body.woocommerce-cart
  .ikonic-cart-table tr,
  body.woocommerce-cart
  .ikonic-cart-table td {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .ikonic-cart-row {
    position: relative;

    display: grid;

    grid-template-columns:
      76px
      minmax(0, 1fr);

    padding: 19px;

    border-bottom: 1px solid var(--line);
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .ikonic-cart-row td {
    padding: 0 !important;

    border: 0 !important;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .product-thumbnail {
    grid-column: 1;
    grid-row: 1 / span 4;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .product-name {
    grid-column: 2;

    padding-right: 35px !important;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .product-price,
  body.woocommerce-cart
  .ikonic-cart-table
  .product-quantity,
  body.woocommerce-cart
  .ikonic-cart-table
  .product-subtotal {
    grid-column: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 10px;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .product-price::before {
    content: "Price";

    color: var(--muted);

    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .product-quantity::before {
    content: "Quantity";

    color: var(--muted);

    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .product-subtotal::before {
    content: "Subtotal";

    color: var(--muted);

    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .product-remove {
    position: absolute;
    top: 14px;
    right: 18px;

    width: auto;
  }

  body.woocommerce-cart
  .ikonic-cart-remove span {
    display: none;
  }

  .ikonic-cart-thumbnail {
    width: 64px;
    height: 64px;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .ikonic-cart-actions {
    display: block;
  }

  body.woocommerce-cart
  .ikonic-cart-table
  .ikonic-cart-actions td {
    display: block;

    padding: 18px !important;
  }

  .ikonic-cart-actions-inner {
    align-items: stretch;
    flex-direction: column;
  }

  body.woocommerce-cart
  .ikonic-update-cart {
    width: 100%;
  }

  .ikonic-continue-shopping {
    justify-content: center;
  }

  .ikonic-cart-cross-sells
  ul.products {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  body.woocommerce-cart
  .ikonic-cart-table
  .ikonic-cart-row {
    grid-template-columns:
      65px
      minmax(0, 1fr);

    padding: 17px;
  }

  .ikonic-cart-thumbnail {
    width: 55px;
    height: 55px;
  }

  .ikonic-cart-product-name {
    font-size: 0.9rem;
  }

  .ikonic-cart-summary-card {
    padding: 23px 19px;
  }

}





/* =========================================================
   IKONIC QUOTE RECEIVED PAGE
   ========================================================= */

.ikonic-quote-received-page {
  width: 100%;
  max-width: 1180px;

  margin: 0 auto;
  padding: 28px 32px 84px;
}


/* Remove default WooCommerce confirmation styling */

body.woocommerce-order-received
.woocommerce {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;
}

body.woocommerce-order-received
.woocommerce-order {
  width: 100%;
  max-width: none;

  margin: 0;
  padding: 0;

  border: 0;
  background: transparent;
}

body.woocommerce-order-received
.woocommerce-notice--success,
body.woocommerce-order-received
.woocommerce-order-overview,
body.woocommerce-order-received
.woocommerce-order-details,
body.woocommerce-order-received
.woocommerce-customer-details {
  margin: 0;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.ikonic-received-progress {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;
  padding: 0;
}

.ikonic-received-progress .progress-step {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ikonic-received-progress .step-circle {
  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  border: 2px solid var(--line);
  border-radius: 50%;

  color: var(--muted);
  background: var(--cream-2);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
}

.ikonic-received-progress
.progress-step.done
.step-circle {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.ikonic-received-progress
.progress-step.current
.step-circle {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.ikonic-received-progress .step-label {
  color: var(--muted);

  font-size: 0.81rem;
  font-weight: 700;
}

.ikonic-received-progress
.progress-step.done
.step-label,
.ikonic-received-progress
.progress-step.current
.step-label {
  color: var(--ink);
}

.ikonic-received-progress .progress-line {
  width: 56px;
  height: 2px;

  margin: 0 13px;

  background: var(--line);
}

.ikonic-received-progress
.progress-line.done {
  background: var(--green);
}


/* =========================================================
   SUCCESS CARD
   ========================================================= */

.ikonic-quote-result-card {
  max-width: 850px;

  margin: 0 auto 40px;
  padding: 50px 42px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: var(--white);

  box-shadow:
    0 18px 45px -30px
    rgba(42, 26, 16, 0.48);

  text-align: center;
}

.ikonic-quote-result-card .eyebrow {
  justify-content: center;
}

.ikonic-quote-success-icon,
.ikonic-quote-result-icon {
  width: 78px;
  height: 78px;

  display: grid;
  place-items: center;

  margin: 0 auto 23px;

  border-radius: 50%;

  color: var(--green);
  background: rgba(53, 81, 63, 0.1);
}

.ikonic-quote-success-icon svg,
.ikonic-quote-result-icon svg {
  width: 40px;
  height: 40px;
}

.ikonic-quote-result-card h1 {
  margin: 14px 0 13px;

  color: var(--ink);

  font-size: clamp(
    2rem,
    4vw,
    2.85rem
  );
}

.ikonic-quote-result-intro,
.ikonic-quote-result-card > p {
  max-width: 680px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 0.97rem;
  line-height: 1.75;
}


/* Reference box */

.ikonic-quote-reference {
  width: max-content;
  max-width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin: 25px auto 0;
  padding: 12px 20px;

  border: 1px dashed var(--line);
  border-radius: 10px;

  background: var(--cream);
}

.ikonic-quote-reference span {
  color: var(--muted);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ikonic-quote-reference strong {
  color: var(--red);

  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
}


/* Email confirmation */

.ikonic-quote-email-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 20px !important;

  color: var(--green) !important;

  font-size: 0.82rem !important;
  font-weight: 600;
}

.ikonic-quote-email-message svg {
  width: 17px;
  height: 17px;

  flex: 0 0 17px;
}


/* Error state */

.ikonic-quote-result-error
.ikonic-quote-result-icon {
  color: var(--red);
  background: rgba(213, 22, 31, 0.09);
}


/* =========================================================
   MAIN GRID
   ========================================================= */

.ikonic-quote-received-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    360px;

  gap: 30px;
  align-items: start;
}

.ikonic-quote-received-main {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ikonic-quote-received-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


/* =========================================================
   SHARED CARD
   ========================================================= */

.ikonic-received-card {
  padding: 30px;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: var(--white);

  box-shadow:
    0 12px 30px -25px
    rgba(42, 26, 16, 0.4);
}

.ikonic-received-card-heading {
  margin-bottom: 24px;
  padding-bottom: 18px;

  border-bottom: 1px solid var(--line);
}

.ikonic-received-card-heading h2 {
  margin: 10px 0 0;

  font-size: 1.35rem;
}

.ikonic-received-card > h2 {
  margin: 0 0 20px;

  font-size: 1.2rem;
}


/* =========================================================
   NEXT STEPS
   ========================================================= */

.ikonic-quote-next-steps {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}

.ikonic-quote-next-step {
  min-width: 0;

  padding: 20px;

  border: 1px solid var(--line);
  border-radius: 11px;

  background: var(--cream);
}

.ikonic-next-step-number {
  display: inline-flex;

  margin-bottom: 16px;
  padding: 4px 9px;

  border-radius: 6px;

  color: var(--gold);
  background: var(--soil);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  font-weight: 700;
}

.ikonic-quote-next-step h3 {
  margin: 0 0 8px;

  font-size: 0.98rem;
}

.ikonic-quote-next-step p {
  margin: 0;

  color: var(--muted);

  font-size: 0.79rem;
  line-height: 1.65;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.ikonic-received-products {
  display: flex;
  flex-direction: column;
}

.ikonic-received-product {
  display: grid;

  grid-template-columns:
    68px
    minmax(0, 1fr)
    auto;

  align-items: center;
  gap: 15px;

  padding: 17px 0;

  border-bottom: 1px solid var(--line);
}

.ikonic-received-product:first-child {
  padding-top: 0;
}

.ikonic-received-product:last-child {
  padding-bottom: 0;

  border-bottom: 0;
}

.ikonic-received-product-media {
  width: 68px;
  height: 68px;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: var(--cream-2);
}

.ikonic-received-product-media a {
  width: 100%;
  height: 100%;

  display: block;
}

.ikonic-received-product-image,
.ikonic-received-product-media img {
  width: 100% !important;
  height: 100% !important;

  display: block;

  margin: 0 !important;

  object-fit: cover;
}

.ikonic-received-product-info {
  min-width: 0;
}

.ikonic-received-product-name {
  display: inline-block;

  margin-bottom: 5px;

  color: var(--ink);

  font-family: "Zilla Slab", serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

a.ikonic-received-product-name:hover {
  color: var(--red);
}

.ikonic-received-product-meta {
  margin-bottom: 5px;

  color: var(--muted);

  font-size: 0.72rem;
}

.ikonic-received-product-meta ul,
.ikonic-received-product-meta p {
  margin: 0;
}

.ikonic-received-product-quantity {
  color: var(--muted);

  font-size: 0.74rem;
  font-weight: 600;
}

.ikonic-received-product-total {
  min-width: 120px;

  text-align: right;
}

.ikonic-received-product-total span {
  display: block;

  margin-bottom: 4px;

  color: var(--muted);

  font-size: 0.65rem;
}

.ikonic-received-product-total strong {
  color: var(--ink);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  white-space: nowrap;
}


/* =========================================================
   REQUEST SUMMARY
   ========================================================= */

.ikonic-received-summary-card {
  position: sticky;
  top: 95px;
}

.ikonic-received-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;

  padding: 10px 0;

  border-bottom: 1px solid var(--line);

  color: var(--muted);

  font-size: 0.78rem;
}

.ikonic-received-summary-row strong {
  color: var(--ink);

  font-size: 0.78rem;
  text-align: right;
}

.ikonic-received-summary-row
.ikonic-quote-status {
  display: inline-flex;

  padding: 4px 9px;

  border-radius: 999px;

  color: var(--green);
  background: rgba(53, 81, 63, 0.1);

  font-size: 0.68rem;
}

.ikonic-received-summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;

  margin-top: 8px;
  padding-top: 17px;
}

.ikonic-received-summary-total span {
  color: var(--ink);

  font-size: 0.82rem;
  font-weight: 700;
}

.ikonic-received-summary-total strong {
  color: var(--red);

  font-family: "Zilla Slab", serif;
  font-size: 1.3rem;
  text-align: right;
}

.ikonic-received-total-note {
  margin: 15px 0 0;
  padding: 13px;

  border-radius: 8px;

  color: var(--muted);
  background: var(--cream);

  font-size: 0.68rem;
  line-height: 1.55;
}


/* =========================================================
   CUSTOMER DETAILS
   ========================================================= */

.ikonic-customer-detail {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  padding: 12px 0;

  border-bottom: 1px solid var(--line);
}

.ikonic-customer-detail:last-child {
  padding-bottom: 0;

  border-bottom: 0;
}

.ikonic-customer-detail svg {
  width: 18px;
  height: 18px;

  flex: 0 0 18px;

  margin-top: 2px;

  color: var(--red);
}

.ikonic-customer-detail div {
  min-width: 0;
}

.ikonic-customer-detail span {
  display: block;

  margin-bottom: 3px;

  color: var(--muted);

  font-size: 0.65rem;
}

.ikonic-customer-detail strong,
.ikonic-customer-detail a {
  display: block;

  overflow-wrap: anywhere;

  color: var(--ink);

  font-size: 0.78rem;
  font-weight: 700;
}

.ikonic-customer-detail a:hover {
  color: var(--red);
}


/* =========================================================
   HELP CARD
   ========================================================= */

.ikonic-received-help-card {
  padding: 26px;

  border-radius: var(--radius);

  color: var(--white);
  background: var(--soil);
}

.ikonic-received-help-card > span {
  color: var(--gold);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ikonic-received-help-card h2 {
  margin: 9px 0 9px;

  color: var(--white);

  font-size: 1.2rem;
}

.ikonic-received-help-card p {
  margin: 0 0 17px;

  color: #cbb99e;

  font-size: 0.76rem;
  line-height: 1.65;
}

.ikonic-received-help-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--white);

  font-size: 0.8rem;
  font-weight: 700;
}

.ikonic-received-help-card a:hover {
  color: var(--gold);
}

.ikonic-received-help-card svg {
  width: 17px;
  height: 17px;

  color: var(--gold);
}


/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.ikonic-quote-bottom-actions,
.ikonic-quote-result-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin-top: 35px;
}

.ikonic-quote-result-actions {
  margin-top: 27px;
}

.ikonic-quote-primary-button,
.ikonic-quote-secondary-button {
  min-height: 47px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 22px;

  border: 1.5px solid transparent;
  border-radius: 999px;

  font-size: 0.84rem;
  font-weight: 700;

  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
}

.ikonic-quote-primary-button {
  color: var(--white);
  background: var(--red);
}

.ikonic-quote-primary-button:hover {
  color: var(--white);
  background: var(--red-dark);

  transform: translateY(-1px);
}

.ikonic-quote-secondary-button {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.ikonic-quote-secondary-button:hover {
  color: var(--red);
  border-color: var(--red);

  transform: translateY(-1px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .ikonic-quote-received-grid {
    grid-template-columns: 1fr;
  }

  .ikonic-quote-received-sidebar {
    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .ikonic-received-summary-card {
    position: static;
  }

  .ikonic-received-help-card {
    grid-column: 1 / -1;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {

  .ikonic-quote-received-page {
    padding:
      23px
      20px
      64px;
  }

  .ikonic-received-progress
  .step-label {
    display: none;
  }

  .ikonic-received-progress
  .progress-line {
    width: 33px;

    margin: 0 7px;
  }

  .ikonic-quote-result-card {
    margin-bottom: 27px;
    padding: 38px 22px;
  }

  .ikonic-quote-result-card h1 {
    font-size: 2rem;
  }

  .ikonic-quote-reference {
    flex-direction: column;
    gap: 5px;
  }

  .ikonic-quote-email-message {
    align-items: flex-start;

    text-align: left;
  }

  .ikonic-received-card {
    padding: 24px 20px;
  }

  .ikonic-quote-next-steps {
    grid-template-columns: 1fr;
  }

  .ikonic-quote-received-sidebar {
    display: flex;
  }

  .ikonic-received-product {
    grid-template-columns:
      60px
      minmax(0, 1fr);
  }

  .ikonic-received-product-media {
    width: 60px;
    height: 60px;
  }

  .ikonic-received-product-total {
    grid-column: 2;

    min-width: 0;

    margin-top: 8px;

    text-align: left;
  }

  .ikonic-received-product-total span {
    display: inline;

    margin-right: 5px;
  }

  .ikonic-quote-bottom-actions,
  .ikonic-quote-result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ikonic-quote-primary-button,
  .ikonic-quote-secondary-button {
    width: 100%;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .ikonic-quote-received-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .ikonic-quote-result-card {
    padding-right: 18px;
    padding-left: 18px;
  }

  .ikonic-quote-success-icon,
  .ikonic-quote-result-icon {
    width: 68px;
    height: 68px;
  }

  .ikonic-quote-success-icon svg,
  .ikonic-quote-result-icon svg {
    width: 34px;
    height: 34px;
  }

  .ikonic-received-card {
    padding-right: 17px;
    padding-left: 17px;
  }

}





/* =========================================================
   SHOP MOBILE TOOLBAR FIX
   ========================================================= */

@media (max-width: 720px) {

  .ikonic-shop-page .shop-toolbar {
    width: 100%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 12px;

    margin-bottom: 24px;
  }

  /*
   * The desktop flex-basis of 320px becomes height when
   * the toolbar changes to flex-direction: column.
   */
  .ikonic-shop-page .search-box {
    position: relative;

    width: 100%;
    min-width: 0;
    height: 46px;
    min-height: 46px;

    flex: 0 0 46px;

    margin: 0;
    padding: 0;
  }

  .ikonic-shop-page .search-box svg {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 2;

    width: 17px;
    height: 17px;

    margin: 0;

    transform: translateY(-50%);

    pointer-events: none;
  }

  .ikonic-shop-page
  .search-box
  input[type="search"] {
    width: 100%;
    height: 46px;
    min-height: 46px;

    display: block;

    margin: 0;
    padding: 0 15px 0 42px;
  }

  .ikonic-shop-page
  .search-box
  input[type="hidden"] {
    display: none !important;
  }

  .ikonic-shop-page .sort-select {
    width: 100%;
    min-width: 0;
    height: 46px;

    flex: 0 0 46px;

    margin: 0;
  }

  .ikonic-shop-page .shop-filter-submit {
    width: 100%;
    min-width: 0;
    min-height: 46px;

    flex: 0 0 46px;

    margin: 0;
  }

}



/* Hide Shop navigation item on laptop and desktop */
.shop-nav-link {
  display: none !important;
}

/* Show it only on mobile screens */
@media (max-width: 767px) {
  .shop-nav-link {
    display: revert !important;
  }
}














