/*
 * TEQDISTRICT — Light Theme Stylesheet
 * Style: Minimal, clean, fashion-ecom inspired
 * Font: Poppins Regular across all elements
 * Accent: #7cbd43 | Base: #ffffff / #f5f5f5
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: #111111;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 320px;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: 'Poppins', sans-serif; }
p { line-height: 1.7; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: #111111;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --green:       #7cbd43;
  --green-dark:  #5fa332;
  --green-light: #f0f7e8;
  --black:       #111111;
  --grey-900:    #222222;
  --grey-700:    #555555;
  --grey-500:    #888888;
  --grey-300:    #cccccc;
  --grey-100:    #f5f5f5;
  --white:       #ffffff;
  --border:      #e8e8e8;

  --max-w: 1400px;
  --pad:   10%;
  --r:     4px;

  --topbar-h:  40px;
  --header-h:  72px;
  --nav-h:     52px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.ic-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid #111111;
  border-radius: 0;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
  text-decoration: none;
}
.ic-btn:hover { background: #ffffff; color: #111111; }

.ic-btn--outline {
  background: transparent;
  color: #111111;
  border-color: #111111;
}
.ic-btn--outline:hover { background: #111111; color: #ffffff; }

.ic-btn--white {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}
.ic-btn--white:hover { background: transparent; color: #ffffff; border-color: #ffffff; }

.ic-btn--green {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}
.ic-btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* Underline link style (used in hero panels) */
.ic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #111111;
  transition: color 0.2s;
}
.ic-link:hover { color: var(--green); }

/* ============================================================
   TOPBAR
   ============================================================ */
.ic-topbar {
  width: 100%;
  height: var(--topbar-h);
  background: #1a1a2e;
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.ic-topbar .ic-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ic-topbar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ic-topbar__left a {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.ic-topbar__left a:hover { color: #ffffff; }
.ic-topbar__left svg { width: 12px; height: 12px; flex-shrink: 0; }
.ic-topbar__msg {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  flex: 1;
}
.ic-topbar__msg span { color: var(--green); font-weight: 600; }

/* ============================================================
   HEADER — utility bar (logo + search + actions)
   ============================================================ */
.ic-header {
  width: 100%;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 800;
}
.ic-header .ic-container {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

/* Logo */
.ic-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.ic-logo img { height: 40px; width: auto; }
.ic-logo__text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 3px;
}
.ic-logo__text em { font-style: normal; color: var(--green); }

/* Search bar */
.ic-search {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: #fafafa;
  max-width: 560px;
}
.ic-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 13px;
  color: #111111;
  outline: none;
}
.ic-search input::placeholder { color: var(--grey-500); }
.ic-search button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-500);
  transition: color 0.2s;
}
.ic-search button:hover { color: var(--green); }
.ic-search button svg { width: 18px; height: 18px; }

/* Header actions */
.ic-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
}
.ic-header-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.ic-header-action:hover { color: var(--green); }
.ic-header-action svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Cart count */
.ic-cart-wrap { position: relative; }
.ic-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger */
.ic-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #111111;
}
.ic-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s, width 0.25s;
  transform-origin: center;
}
.ic-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ic-burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.ic-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   NAVIGATION BAR
   ============================================================ */
.ic-nav-bar {
  width: 100%;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 799;
}
.ic-nav-bar .ic-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0;
}

.ic-nav__item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.ic-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #111111;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}
.ic-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px; right: 20px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.ic-nav__link:hover,
.ic-nav__link.is-active { color: var(--green); }
.ic-nav__link:hover::after,
.ic-nav__link.is-active::after { transform: scaleX(1); }

.ic-nav__link svg { width: 11px; height: 11px; opacity: 0.5; }

/* ── Mega Menu ── */
.ic-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  min-width: 900px;
  max-width: 1100px;
  padding: 36px 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  transform: translateX(-50%) translateY(8px);
  z-index: 900;
}
.ic-nav__item:hover > .ic-mega,
.ic-nav__item:focus-within > .ic-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ic-mega__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.ic-mega__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.ic-mega__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ic-mega__links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-700);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.ic-mega__links a:hover { color: #111111; padding-left: 4px; }

/* Simple dropdown (for non-mega items) */
.ic-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  min-width: 200px;
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  transform: translateY(8px);
  z-index: 900;
}
.ic-nav__item:hover > .ic-dropdown,
.ic-nav__item:focus-within > .ic-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.ic-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--grey-700);
  transition: color 0.2s, background 0.2s;
}
.ic-dropdown a:hover { color: #111111; background: var(--grey-100); }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.ic-mobile-nav {
  display: none;
  position: fixed;
  inset: calc(var(--header-h)) 0 0 0;
  background: #ffffff;
  z-index: 850;
  overflow-y: auto;
  padding: 24px var(--pad) 48px;
  flex-direction: column;
  gap: 0;
}
.ic-mobile-nav.is-open { display: flex; }

.ic-mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.ic-mobile-nav a:hover { color: var(--green); }

/* ============================================================
   HERO — 60% left / 40% right (two stacked panels)
   ============================================================ */
/* ---HERO WRAPPER--*/
.ic-hero {
  padding: 24px 10%;
  background: #ffffff;
}

.ic-hero__inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 12px;
  width: 100%;
  height: 520px;
}

/* ---LEFT PANEL--*/
.ic-hero__main {
  position: relative;
  overflow: hidden;
  background: #e8eef5;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
}

/* ---MAIN IMAGE (TOP RIGHT)--*/
.ic-hero__main-img {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;

  width: auto !important;
  height: 85% !important;

  object-fit: contain !important;
  object-position: top right !important;

  z-index: 1;
  pointer-events: none;
}

/* ---MAIN FADE--*/
.ic-hero__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(255,255,255,0) 40%, rgba(255,255,255,0.9) 85%);
  z-index: 1;
}

/* ---MAIN TEXT--*/
.ic-hero__main-text {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
  max-width: 60%;
}

.ic-hero__main-text h1 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: #111;
  margin-bottom: 10px;
}

.ic-hero__main-text p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

/* ---ARROWS--*/
.ic-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ic-hero__arrow--prev { left: 14px; }
.ic-hero__arrow--next { right: 14px; }

/* ---RIGHT PANELS--*/
.ic-hero__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ic-hero__panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
}

.ic-hero__panel--teal  { background: #d8eef0; }
.ic-hero__panel--green { background: #e4f0dc; }

/* ---PANEL IMAGE (TOP RIGHT)--*/
.ic-hero__panel-img {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: auto !important;

  width: auto !important;
  height: 80% !important;

  object-fit: contain !important;
  object-position: top right !important;

  z-index: 1;
  pointer-events: none;
}

/* ---PANEL FADE--*/
.ic-hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(255,255,255,0) 45%, rgba(255,255,255,0.9) 90%);
  z-index: 1;
}

/* ---PANEL TEXT--*/
.ic-hero__panel-text {
  position: relative;
  z-index: 2;
  max-width: 65%;
}

.ic-hero__panel-text h2 {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.15;
  color: #111;
  margin-bottom: 6px;
}

.ic-hero__panel-text p {
  font-size: 13px;
  color: #444;
  margin-bottom: 12px;
}

/* ---FLOAT EFFECT--*/
.ic-hero__main-img,
.ic-hero__panel-img {
  transform: translateY(8px);
}

/* ---MOBILE RESPONSIVENESS--*/
@media (max-width: 768px) {

  .ic-hero {
    padding: 16px;
  }

  .ic-hero__inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ic-hero__main,
  .ic-hero__panel {
    min-height: 260px;
  }

  /* FULL WIDTH TEXT */
  .ic-hero__main-text,
  .ic-hero__panel-text {
    max-width: 100%;
    padding: 20px;
  }

  /* 🔥 KEEP IMAGE TOP RIGHT ON MOBILE */
  .ic-hero__main-img,
  .ic-hero__panel-img {
    height: 50% !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
  }

  /* VERTICAL FADE */
  .ic-hero__main::after,
  .ic-hero__panel::after {
    background: linear-gradient(
      to top,
      rgba(255,255,255,0.95) 20%,
      rgba(255,255,255,0.6) 50%,
      rgba(255,255,255,0) 80%
    );
  }

  .ic-hero__main-text h1 {
    font-size: 24px;
  }

  .ic-hero__panel-text h2 {
    font-size: 18px;
  }

  .ic-hero__arrow {
    display: none;
  }
}
/* ============================================================
   SECTION HEADER
   ============================================================ */
.ic-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.ic-sec-head h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
}

.ic-sec-tabs {
  display: flex;
  gap: 4px;
  align-items: center;
}

.ic-tab {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  padding: 6px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border: none;
  background: none;
}
.ic-tab.is-active,
.ic-tab:hover { color: #111111; background: var(--grey-100); }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.ic-section { padding: 56px 0; }
.ic-section--sm { padding: 36px 0; }

.ic-prod-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

/* Product card */
.ic-prod-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  group: true;
}

.ic-prod-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grey-100);
  position: relative;
  flex-shrink: 0;
}

.ic-prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.ic-prod-card:hover .ic-prod-card__img-wrap img { transform: scale(1.06); }

.ic-prod-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #111111;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  text-transform: uppercase;
  z-index: 2;
}
.ic-prod-card__badge--sale { background: #c0392b; }
.ic-prod-card__badge--new  { background: var(--green); }

.ic-prod-card__body {
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ic-prod-card__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.ic-prod-card__name {
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.ic-prod-card:hover .ic-prod-card__name { color: var(--green); }

.ic-prod-card__price {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}
.ic-prod-card__price del {
  font-weight: 400;
  color: var(--grey-500);
  font-size: 12px;
  margin-right: 4px;
  text-decoration: line-through;
}
.ic-prod-card__price ins {
  text-decoration: none;
  color: #c0392b;
}
.ic-prod-card__price .woocommerce-Price-amount { font-weight: 600; }

/* Wishlist btn on card */
.ic-prod-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.ic-prod-card:hover .ic-prod-card__wish { opacity: 1; }
.ic-prod-card__wish svg { width: 16px; height: 16px; color: #111111; }

/* ============================================================
   PERKS BAR (3 icons)
   ============================================================ */
.ic-perks {
  background: var(--grey-100);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.ic-perks .ic-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ic-perk {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
}
.ic-perk + .ic-perk { border-left: 1px solid var(--border); }
.ic-perk__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.ic-perk__icon svg { width: 32px; height: 32px; }
.ic-perk__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111111;
  margin-bottom: 3px;
  display: block;
}
.ic-perk__desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-500);
  line-height: 1.5;
}

/* ============================================================
   BANNER — full width marketing
   ============================================================ */

.ic-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ic-banner--image {
  width: 100%;
  line-height: 0;
}

.ic-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   DUAL BANNER  (50/50)
   ============================================================ */

/* ============================================================
   DUAL BANNER  (50/50)
   ============================================================ */

.ic-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 0;
}

/* cards */
.ic-dual__card {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;

  min-height: 600px;

  padding-top: 0;
  padding-bottom: 0;
}

/* left banner */
.ic-dual__card:first-child {
  justify-content: flex-end;
  padding-left: 10%;
  padding-right: 0;
}

/* right banner */
.ic-dual__card:last-child {
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 10%;
}

/* light variant */
.ic-dual__card--light {
  background: var(--grey-100);
}

/* square banners only inside dual section */
.ic-dual .ic-banner {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;

  margin: 0;
}

/* image */
.ic-dual .ic-banner__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* --   RESPONSIVE --*/

@media (max-width: 991px) {

  .ic-dual {
    grid-template-columns: 1fr;
  }

  .ic-dual__card {
    min-height: auto;

    padding-top: 0;
    padding-bottom: 0;

    justify-content: center !important;
    padding-left: 8%;
    padding-right: 8%;
  }

  .ic-dual .ic-banner {
    max-width: 420px;
  }
}

@media (max-width: 640px) {

  .ic-dual__card {
    padding-left: 0;
    padding-right: 0;
  }

  .ic-dual .ic-banner {
    max-width: 100%;
  }
}
/* ============================================================
   CATEGORY GRID
   ============================================================ */
/* --categories grid-- */
.ic-cats-grid{
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:16px;
  width:100%;
}

/* --card-- */
.ic-cat-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#111111;
}

/* --icon box-- */
.ic-cat-card__img{
  width:100%;
  aspect-ratio:1/1;
  border:1px solid var(--border);
  border-radius:18px;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

/* --svg-- */
.ic-cat-card__img svg{
  width:42%;
  height:42%;
  stroke:var(--green);
  transition:stroke .25s ease;
}

/* --hover-- */
.ic-cat-card:hover .ic-cat-card__img{
  background:var(--green);
  border-color:var(--green);
  transform:translateY(-4px);
}

.ic-cat-card:hover .ic-cat-card__img svg{
  stroke:#ffffff;
}

/* --title-- */
.ic-cat-card__name{
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  text-align:center;
  line-height:1.4;
}

/* --tablet-- */
@media (max-width:991px){

  .ic-cats-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
  }

}

/* --mobile-- */
@media (max-width:640px){

  .ic-cats-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
  }

  .ic-cat-card__img{
    border-radius:14px;
  }

  .ic-cat-card__name{
    font-size:10px;
  }

}
/* ============================================================
   DIVIDER
   ============================================================ */
.ic-divider { width: 100%; height: 1px; background: var(--border); border: none; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.ic-footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.ic-footer__main {
  padding: 64px 0 48px;
}
.ic-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  width: 100%;
}

.ic-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  margin-bottom: 16px;
}
.ic-footer__logo em { font-style: normal; color: var(--green); }

.ic-footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: 24px;
}

.ic-footer__socials {
  display: flex;
  gap: 10px;
}
.ic-footer__social {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-700);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.ic-footer__social:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.ic-footer__social svg { width: 15px; height: 15px; }

.ic-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #111111;
  display: block;
  margin-bottom: 18px;
}

.ic-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ic-footer__links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-500);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ic-footer__links a:hover { color: #111111; }

.ic-footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.ic-footer__contact-item svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.ic-footer__contact-item a,
.ic-footer__contact-item span {
  font-size: 13px;
  font-weight: 300;
  color: var(--grey-500);
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s;
}
.ic-footer__contact-item a:hover { color: #111111; }

/* Footer bar */
.ic-footer__bar {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.ic-footer__bar .ic-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ic-footer__copy {
  font-size: 12px;
  color: var(--grey-500);
}
.ic-footer__bar-links {
  display: flex;
  gap: 20px;
}
.ic-footer__bar-links a {
  font-size: 12px;
  color: var(--grey-500);
  text-decoration: none;
  transition: color 0.2s;
}
.ic-footer__bar-links a:hover { color: #111111; }


/* ============================================================
   WOO RESETS
   ============================================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: #111111 !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  border: 1.5px solid #111111 !important;
  padding: 11px 24px !important;
  transition: background 0.22s, color 0.22s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: transparent !important;
  color: #111111 !important;
}
.woocommerce ul.products li.product .price { color: #111111 !important; font-weight: 600; }
.woocommerce ul.products li.product ins { text-decoration: none !important; color: #c0392b !important; }
.woocommerce .star-rating span::before { color: var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .ic-prod-grid  { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .ic-cats-grid  { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .ic-mega__grid { grid-template-columns: repeat(3,1fr); }
  .ic-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 992px) {
  .ic-prod-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ic-cats-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ic-perks .ic-container { grid-template-columns: 1fr; gap: 0; }
  .ic-perk { padding: 16px 0; border-left: none !important; border-top: 1px solid var(--border); }
  .ic-perk:first-child { border-top: none; }
  .ic-dual { grid-template-columns: 1fr; }
  .ic-dual__card { min-height: 280px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --nav-h: 0px; }

  .ic-topbar { display: none; }
  .ic-nav-bar { display: none; }

  .ic-search { display: none; }
  .ic-header__actions .ic-header-action:not(.ic-cart-wrap):not(.ic-burger) { display: none; }

  .ic-burger { display: flex; }

  .ic-hero { padding: 16px var(--pad); }
  .ic-hero__inner {
    grid-template-columns: 1fr;
    height: auto;
  }
  .ic-hero__main  { height: 380px; border-radius: 12px; }
  .ic-hero__side  { flex-direction: column; gap: 10px; }
  .ic-hero__panel { min-height: 220px; border-radius: 12px; }
  .ic-hero__panel + .ic-hero__panel { border-top: none; }

  .ic-prod-grid  { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
  .ic-cats-grid  { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .ic-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ic-footer__bar .ic-container { flex-direction: column; align-items: flex-start; }

  .ic-banner__content { padding: 40px var(--pad); }
  .ic-dual__card-content { padding: 24px var(--pad); }

  .ic-mega { min-width: unset; }
}

@media (max-width: 480px) {
  .ic-prod-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .ic-cats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ic-hero { padding: 12px var(--pad); }
  .ic-hero__main { height: 300px; border-radius: 10px; }
  .ic-hero__main-text { padding: 24px; }
  .ic-hero__panel { min-height: 190px; border-radius: 10px; }
  .ic-hero__panel-text { padding: 20px; }
  .ic-section { padding: 40px 0; }
  .ic-banner__title { font-size: 22px; }
}

/* ============================================================
   WOOCOMMERCE SHOP + CATEGORY ARCHIVE
   TEQ DISTRICT — CLEAN ECOM GRID SYSTEM
============================================================ */

/*--shop wrapper--*/
.ic-shop-wrapper {
  width: 100%;
}

/*--container alignment--*/
.ic-shop-wrapper .ic-container {
  width: 100%;
}

/*--shop header--*/
.ic-shop-header {
  margin-bottom: 28px;
}

/*--shop title--*/
.ic-shop-title {
  font-size: 26px;
  font-weight: 700;
  color: #111111;
}

/* --PRODUCT GRID-- */

/*--grid layout--*/
.ic-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  width: 100%;
}

/*--tablet--*/
@media (max-width: 1024px) {
  .ic-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/*--mobile--*/
@media (max-width: 768px) {
  .ic-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/*--small mobile--*/
@media (max-width: 480px) {
  .ic-products-grid {
    grid-template-columns: 1fr;
  }
}

/* --PRODUCT CARD-- */

/*--card base--*/
.ic-products-grid .product {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*--hover state--*/
.ic-products-grid .product:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* --PRODUCT IMAGE (CLEAN SQUARE SYSTEM) -- */

/*--image wrapper (critical)--*/
.ic-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

/*--image behavior--*/
.ic-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/*--subtle hover zoom (premium feel)--*/
.ic-products-grid .product:hover .ic-product-image img {
  transform: scale(1.03);
}

/* -- PRODUCT CONTENT---*/

/*--content wrapper--*/
.ic-product-info,
.ic-product-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/*--title--*/
.ic-product-title,
.ic-products-grid .woocommerce-loop-product__title {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
}

/* -category--*/
.ic-product-category {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777777;
  margin-top: 4px;
}

/*--title hover--*/
.ic-products-grid .product:hover .ic-product-title,
.ic-products-grid .product:hover .woocommerce-loop-product__title {
  color: var(--green, #7cbd43);
}

/* --PRICE--*/

.ic-product-price,
.ic-products-grid .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--green, #7cbd43);
}

/*--old price--*/
.ic-products-grid .price del {
  color: #999999;
  font-size: 12px;
  margin-right: 6px;
  text-decoration: line-through;
}

/*--sale price--*/
.ic-products-grid .price ins {
  text-decoration: none;
  color: #c0392b;
}

/* --ADD TO CART BUTTON--*/

.ic-products-grid .button {
  margin: 0 14px 14px;
  padding: 10px 12px;
  font-size: 12px;
  border-radius: 8px;
  background: var(--green, #7cbd43);
  color: #ffffff;
  text-align: center;
  border: none;
  transition: background 0.2s ease;
}

/*--hover--*/
.ic-products-grid .button:hover {
  background: var(--green-dark, #5fa332);
}

/* -- EMPTY STATE--*/

.ic-no-products {
  padding: 60px 0;
  text-align: center;
  color: #777777;
}

/*--   WOOCOMMERCE DEFAULT CLEANUP--*/

.woocommerce ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
}

.woocommerce ul.products li.product img {
  max-width: 100%;
  height: auto;
}

/*==============================================================
# USE CASE SINGLE
==============================================================*/
/*--use case page--*/

/*--page base--*/
.use-case-page{
    width:100%;
    padding:80px 0 40px;
    background:#fff;
}

/*--header--*/
.use-case-header{
    width:75%;
    max-width:1200px;
    margin:0 auto 40px;
}

.use-case-header h1{
    font-size:44px;
    font-weight:700;
    color:#111;
    line-height:1.2;
    position:relative;
    padding-bottom:12px;
}

.use-case-header h1::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:80px;
    height:3px;
    background:#C30010;
}

/*--image section--*/
.use-case-image{
    width:75%;
    max-width:1200px;
    margin:0 auto 40px;
    border-radius:18px;
    overflow:hidden;
}

.use-case-image img{
    width:100%;
    height:auto;
    display:block;
}

/*--content--*/
.use-case-content{
    width:75%;
    max-width:1200px;
    margin:0 auto;
    font-size:17px;
    line-height:1.9;
    color:#444;
    padding-bottom:60px;
}

/*--related section--*/
.related-products-section{
    width:75%;
    max-width:1200px;
    margin:0 auto;
    padding:60px 0 120px;
}

/*--section title--*/
.section-title h2{
    font-size:28px;
    font-weight:600;
    color:#111;
    margin-bottom:30px;
    position:relative;
}

.section-title h2::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:#C30010;
    margin-top:10px;
}

/*--GRID (5 desktop / 2 mobile)--*/
.products-grid{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:20px;
}

/*--grid--*/
.products-grid{
    display:grid;
    grid-template-columns:repeat(5, minmax(0, 1fr));
    gap:20px;
}

/*--card--*/
.product-card{
    display:block;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    box-shadow:0 4px 18px rgba(0,0,0,0.06);
}

/*--image (1:1 PERFECT SQUARE)--*/
.product-image{
    width:100%;
    aspect-ratio:1 / 1;   /* KEY FIX: perfect square */
    background:#f6f6f6;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;    /* fills container, no distortion */
    display:block;
}

/*--info--*/
.product-info{
    display:block;
    padding:12px 14px;
}

/*--category (GREEN THEME)--*/
.product-category{
    display:block;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    color:#7abd43;
    margin-bottom:6px;
}

.product-category a{
    color:#7abd43;
    text-decoration:none;
}

/*--title--*/
.product-title{
    display:block;
    font-size:15px;
    font-weight:600;
    color:#111;
}

/*--hover effect (GREEN SHIFT)--*/
.product-card:hover{
    box-shadow:0 10px 25px rgba(122,189,67,0.25);
    transform:translateY(-5px);
}

/*--section heading (UPDATED GREEN)--*/
.section-title h2::after{
    background:#7abd43;
}

/*--responsive--*/
@media (max-width:1024px){
    .products-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width:640px){
    .products-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:14px;
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  width: 100%;
  padding: 0 10%;
  background: #ffffff;
}

.contact-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid #e8e8e8;
}

.contact-header h1 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact-header h1::after {
  display: none;
}

.contact-header p {
  font-size: 15px;
  font-weight: 300;
  color: #888888;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
  padding: 56px 0 80px;
  width: 100%;
}

/* ── Form ── */

.contact-form-section {
  background: #ffffff;
}

.contact-form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-section input,
.contact-form-section input[type="text"],
.contact-form-section input[type="email"],
.contact-form-section textarea {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #111111;
  background: #ffffff;
  border: 1.5px solid #e8e8e8;
  border-radius: 0;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.22s;
  line-height: 1.5;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder {
  color: #aaaaaa;
  font-weight: 300;
}

.contact-form-section input:focus,
.contact-form-section input[type="text"]:focus,
.contact-form-section input[type="email"]:focus,
.contact-form-section textarea:focus {
  border-color: #7cbd43;
  box-shadow: none;
}

.contact-form-section textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form-section button,
.contact-form-section button[type="submit"] {
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #111111;
  border: 1.5px solid #111111;
  border-radius: 0;
  padding: 13px 36px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  margin-top: 4px;
}

.contact-form-section button:hover,
.contact-form-section button[type="submit"]:hover {
  background: #ffffff;
  color: #111111;
}

/* ── Info card ── */

.contact-info {
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 130px;
}

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.01em;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
  margin: 0;
  line-height: 1.3;
}

.contact-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #555555;
  line-height: 1.65;
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.contact-info p strong {
  font-weight: 600;
  color: #111111;
  flex-shrink: 0;
  min-width: 72px;
}

/* ── Map ── */

.contact-map {
  width: 100%;
  background: #f5f5f5;
  border-top: 1px solid #e8e8e8;
  padding: 56px 10%;
  box-sizing: border-box;
}

.contact-map-header {
  margin-bottom: 24px;
}

.contact-map-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 8px;
}

.contact-map-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #888888;
  margin: 0;
}

.map-container {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  line-height: 0;
  box-shadow: none;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(15%);
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 0 60px;
  }
  .contact-info {
    position: static;
  }
}

@media (max-width: 600px) {
  .contact-page   { padding: 0 5%; }
  .contact-map    { padding: 40px 5%; }
  .contact-header { padding: 36px 0 28px; }
  .form-grid      { grid-template-columns: 1fr; }
  .map-container iframe { height: 300px; }
  .contact-form-section button,
  .contact-form-section button[type="submit"] {
    width: 100%;
    text-align: center;
    align-self: stretch;
  }
}