/*
 * Oraimo-style header
 * Matches the reference design:
 *   Mobile/Tablet → logo + icon strip (search · cart · account · ☰)
 *   Desktop       → logo + primary nav + icon strip (search · cart · account)
 *
 * Depends on: header-footer.css (already enqueued), theme.css
 */

/* ─── Global body font (Inter, matching Oraimo) ─────────── */
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: #222;
  background-color: #f7f7f7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Oraimo trust / announcement bar ──────────────────── */
.oraimo-trust-bar {
  --oraimo-announcement-bg: #f0f0f0;
  --oraimo-announcement-color: #444444;
  --oraimo-announcement-font-size: 12px;
  --oraimo-announcement-font-weight: 500;
  background: var(--oraimo-announcement-bg);
  border-bottom: 1px solid #e2e2e2;
  padding: 9px 0;
  font-size: var(--oraimo-announcement-font-size);
  font-weight: var(--oraimo-announcement-font-weight);
  color: var(--oraimo-announcement-color);
  overflow: hidden;
}

.oraimo-trust-bar-inner {
  display: block;
  width: 100%;
}

.oraimo-announcement-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.oraimo-announcement-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: oraimo-announcement-marquee 18s linear infinite;
}

.oraimo-announcement-chunk {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-inline-end: 14px;
}

.oraimo-announcement-text,
.oraimo-announcement-separator {
  color: var(--oraimo-announcement-color);
}

.oraimo-announcement-text {
  letter-spacing: 0.02em;
}

.oraimo-announcement-separator {
  opacity: 0.7;
}

@media (max-width: 480px) {
  .oraimo-trust-bar {
    padding: 8px 0;
  }
}

@keyframes oraimo-announcement-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .oraimo-announcement-track {
    animation: none;
  }
}

/* ─── Reset / override base site-header ──────────────── */
.oraimo-header {
  background: #1c1c1c;
  color: #fff;
  padding-block: 0;
  border-block-end: none;
  position: sticky;
  top: 0;
  z-index: 9000;
  --oraimo-header-inner-height: 60px;
}

/* ─── Inner row ───────────────────────────────────────── */
.oraimo-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: var(--oraimo-header-inner-height);
  padding-inline: 16px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .oraimo-header .header-inner {
    height: 68px;
    padding-inline: 24px;
    gap: 24px;
  }
}

@media (min-width: 1280px) {
  .oraimo-header .header-inner {
    max-width: 1440px;
    padding-inline: 40px;
  }
}

/* ─── Logo ────────────────────────────────────────────── */
.oraimo-header .header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  max-width: 50%;
  overflow: hidden;
}

.oraimo-header .header-logo img,
.oraimo-header .header-logo svg {
  width: auto;
  display: block;
  max-width: 100%;
}

.oraimo-header .header-logo .custom-logo {
  width: auto;
  max-width: 144px;
}

.oraimo-header .header-logo .site-title-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ─── Desktop primary nav ─────────────────────────────── */
.oraimo-desktop-nav {
  display: none; /* hidden on mobile; shown via media query below */
  flex: 1;
  align-items: center;
}

.oraimo-desktop-nav .menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.oraimo-desktop-nav .menu li {
  position: relative;
}

.oraimo-desktop-nav .menu > li > a {
  display: flex;
  align-items: center;
  height: 68px;
  padding-inline: 18px;
  color: #e8e8e8;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition:
    color 0.18s,
    border-color 0.18s;
}

.oraimo-desktop-nav .menu > li > a:hover,
.oraimo-desktop-nav .menu > li.current-menu-item > a,
.oraimo-desktop-nav .menu > li.current-menu-ancestor > a {
  color: #fff;
  border-bottom-color: #82e600;
}

/* Dropdown caret (WP adds menu-item-has-children) */
.oraimo-desktop-nav .menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-inline-start: 6px;
  transition: transform 0.18s;
}

/* Submenu */
.oraimo-desktop-nav .menu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #242424;
  border-radius: 6px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s,
    transform 0.18s,
    visibility 0s 0.18s;
  z-index: 9100;
}

.oraimo-desktop-nav .menu li:hover > ul,
.oraimo-desktop-nav .menu li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.18s,
    transform 0.18s;
}

.oraimo-desktop-nav .menu li ul li a {
  display: block;
  padding: 10px 20px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition:
    color 0.15s,
    background 0.15s;
}

.oraimo-desktop-nav .menu li ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 992px) {
  .oraimo-desktop-nav {
    display: flex;
  }
}

/* ─── Right-side icon strip ───────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0px;
  flex-shrink: 0;
}

/* Generic icon button */
.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #e8e8e8;
  border-radius: 50%;
  text-decoration: none;
  transition:
    color 0.18s,
    background 0.18s;
  padding: 0;
}

.header-icon-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-icon-btn svg {
  pointer-events: none;
  width: 16px;
  height: 16px;
}

/* Cart badge */
.header-cart-btn {
  position: relative;
}

.header-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  background: #82e600;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  border-radius: 50px;
  text-align: center;
  pointer-events: none;
  letter-spacing: 0;
}

/* Hamburger: visible only on mobile/tablet */
.oraimo-hamburger {
  display: inline-flex;
}

@media (min-width: 992px) {
  .oraimo-hamburger {
    display: none;
  }
}

/* ─── Override: search trigger inside header ──────────── */
/*
 * .hc-search-bar-widget already handles panel positioning.
 * We only need to make the trigger look like a header icon button.
 */
.oraimo-header .hc-search-bar-widget {
  position: static; /* panel is position:fixed on mobile; absolute on desktop */
}

.oraimo-header .hc-search-trigger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #e8e8e8;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition:
    color 0.18s,
    background 0.18s;
}

.oraimo-header .hc-search-trigger:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.oraimo-header .hc-search-trigger-icon {
  display: block;
  font-size: 20px;
  line-height: 1;
  color: currentColor;
}

.oraimo-header .oraimo-hamburger-icon {
  display: block;
  font-size: 20px;
  line-height: 1;
  color: currentColor;
}

/* Oraimo search overlay (same behavior across devices) */
.oraimo-header .hc-search-panel {
  position: fixed;
  inset: 0;
  z-index: 10020;
}

.oraimo-header .hc-search-overlay-bg {
  background: rgba(0, 0, 0, 0.08);
}

.oraimo-header .hc-search-panel-inner {
  position: absolute;
  top: 78px;
  left: 50%;
  width: min(700px, calc(100vw - 32px));
  transform: translate(-50%, -12px);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 24px 26px 20px;
  border-radius: 10px;
  max-height: min(560px, calc(100vh - 96px));
  overflow: hidden;
}

.oraimo-header .hc-search-open .hc-search-panel-inner {
  transform: translate(-50%, 0);
}

.oraimo-header .hc-search-input-wrap {
  position: relative;
  border-bottom: 0;
  padding: 0;
  margin-bottom: 28px;
}

.oraimo-header .hc-search-input {
  height: 56px;
  border: 1px solid #adadad;
  border-radius: 28px;
  padding: 0 60px 0 22px;
  font-size: 18px;
  line-height: 56px;
  font-weight: 400;
  color: #3a3a3a;
  background: #fff;
}

.oraimo-header .hc-search-input::placeholder {
  font-size: 18px;
  color: #777;
  font-weight: 400;
}

.oraimo-header .hc-search-icon-input {
  position: absolute;
  right: 20px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  color: #9a9a9a;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}

.oraimo-header .hc-search-clear {
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e2e2e2;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oraimo-header .hc-search-clear[hidden] {
  display: none !important;
}

.oraimo-header .hc-search-clear:not(.hc-search-clear--footer) {
  display: none !important;
}

.oraimo-header .hc-search-clear-icon {
  display: block;
  font-size: 11px;
  line-height: 1;
}

.oraimo-header .hc-search-close-panel {
  display: inline-flex;
}

.oraimo-header .hc-search-popular-title {
  display: block;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
  color: #2f2f2f;
}

.oraimo-header .hc-search-results {
  min-height: 120px;
  max-height: 290px;
  overflow-y: auto;
  padding: 0;
}

.oraimo-header .hc-search-panel-footer {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}

.oraimo-header .hc-search-clear--footer {
  position: static;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #6f6f6f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.oraimo-header .hc-search-clear-icon--footer {
  display: block;
  font-size: 14px;
  line-height: 1;
}

.oraimo-header .hc-search-view-all {
  padding-top: 10px;
}

.oraimo-header .hc-search-view-all-icon {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

.oraimo-header .hc-search-input-wrap::before,
.oraimo-header .hc-search-input-wrap::after {
  display: none;
}

@media (min-width: 992px) {
  .oraimo-header .hc-search-bar-widget {
    position: relative;
  }

  .oraimo-header .hc-search-panel {
    position: absolute;
    inset: auto;
    top: calc(100% + 12px);
    right: 0;
    width: 440px;
    height: auto;
  }

  .oraimo-header .hc-search-overlay-bg {
    display: none;
  }

  .oraimo-header .hc-search-panel-inner {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    max-height: none;
    padding: 18px 18px 16px;
    border-radius: 4px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
  }

  .oraimo-header .hc-search-open .hc-search-panel-inner {
    transform: translateY(0);
  }

  .oraimo-header .hc-search-input-wrap {
    margin-bottom: 14px;
  }

  .oraimo-header .hc-search-input {
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    border-radius: 22px;
    padding: 0 16px;
  }

  .oraimo-header .hc-search-input::placeholder {
    font-size: 14px;
  }

  .oraimo-header .hc-search-icon-input {
    right: 14px;
    font-size: 15px;
  }

  .oraimo-header .hc-search-popular-title {
    margin-bottom: 10px;
    font-size: 15px;
  }

  .oraimo-header .hc-search-results {
    min-height: 0;
    max-height: 180px;
  }

  .oraimo-header .hc-search-panel-footer {
    padding-top: 12px;
  }

  .oraimo-header .hc-search-clear--footer {
    width: 30px;
    height: 30px;
  }

  .oraimo-header .hc-search-clear-icon--footer {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .oraimo-header .hc-search-panel-inner {
    width: 100%;
    max-width: 100%;
    padding: 18px 18px 16px;
    max-height: 70vh;
  }

  .oraimo-header .hc-search-input-wrap {
    margin-bottom: 20px;
  }

  .oraimo-header .hc-search-input {
    height: 50px;
    line-height: 50px;
    padding-inline: 18px;
  }

  .oraimo-header .hc-search-icon-input {
    right: 14px;
    font-size: 15px;
  }

  .oraimo-header .hc-search-popular-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

/* ─── Mobile/Tablet overlay panels ─────────────────────── */
body.oraimo-mobile-panel-active {
  overflow: hidden;
}

.oraimo-mobile-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 10030;
  background: rgba(0, 0, 0, 0.12);
}

/* Respect the HTML `hidden` attribute (our base rules below would otherwise override it). */
.oraimo-mobile-panel-overlay[hidden] {
  display: none !important;
}

.oraimo-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 10040;
  background: #f1f1f1;
  color: #1f1f1f;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Respect the HTML `hidden` attribute (our base rules above would otherwise override it). */
.oraimo-mobile-panel[hidden] {
  display: none !important;
}

.oraimo-mobile-panel-header,
.oraimo-mobile-panel-head-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #d8d8d8;
}

.oraimo-mobile-panel-head-dark {
  background: #191919;
  border-bottom: 0;
  min-height: 76px;
}

.oraimo-mobile-panel-header--light {
  background: #f8f8f8;
}

.oraimo-mobile-panel-header h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.oraimo-mobile-panel-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #4b4b4b;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.oraimo-mobile-panel-close i {
  font-size: 16px;
  line-height: 1;
}

.oraimo-mobile-panel-close--light {
  color: #fff;
}

.oraimo-mobile-panel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 70%;
  margin-inline: auto;
}

.oraimo-mobile-panel-logo .custom-logo-link,
.oraimo-mobile-panel-logo img {
  display: block;
  width: auto;
  max-width: 100%;
}

.oraimo-mobile-panel-content {
  flex: 1;
  /* overflow-y: auto; */
  padding: 0 20px 20px;
}

.oraimo-mobile-cart-content {
  padding: 0 16px 220px;
  background: #fff;
}

.oraimo-mobile-cart-panel {
  background: #fff;
}

.oraimo-mobile-cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 16px;
  border-bottom: 1px solid #e6e6e6;
}

.oraimo-mobile-cart-panel-header h2 {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  margin: 0;
}

.oraimo-mobile-cart-panel-close {
  border: 0;
  background: transparent !important;
  color: #111 !important;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oraimo-mobile-cart-panel-close i {
  font-size: 22px;
  line-height: 1;
}

.hc-mobile-cart-list {
  display: grid;
  gap: 0;
}

.hc-mobile-cart-offer {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 14px 14px 10px;
  margin-bottom: 10px;
}

.hc-mobile-cart-offer-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  color: #111;
  font-size: 14px;
  line-height: 1.5;
}

.hc-mobile-cart-offer-line > span strong,
.hc-mobile-cart-offer-line > span strong .woocommerce-Price-amount,
.hc-mobile-cart-offer-line > span strong .woocommerce-Price-currencySymbol {
  color: #fe2424;
  font-weight: 500;
}

.hc-mobile-cart-offer-line i {
  color: #999;
  font-size: 20px;
  line-height: 1;
  margin-top: 1px;
}

.hc-mobile-cart-offer-foot {
  margin-top: 6px;
  color: #111;
  font-size: 14px;
  line-height: 1.3;
  padding-top: 8px;
  border-top: 1px solid #efefef;
}

.hc-mobile-cart-item {
  background: transparent;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #ededed;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 40px 120px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
}

.hc-mobile-cart-item-select {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  background-color: transparent !important;
  align-self: center;
  padding-inline: unset !important;
}

.hc-mobile-cart-item-select span {
  width: 18px;
  height: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 50%;
  display: block;
  background: #fff;
}

.hc-mobile-cart-item-select.is-checked span,
.hc-mobile-cart-item.is-selected .hc-mobile-cart-item-select span {
  border-color: #79d50f;
  background: #79d50f;
  position: relative;
}

.hc-mobile-cart-item-select.is-checked span::after,
.hc-mobile-cart-item.is-selected .hc-mobile-cart-item-select span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 6px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hc-mobile-cart-item-thumb {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f7f7;
}

.hc-mobile-cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hc-mobile-cart-item-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hc-mobile-cart-item-top {
  display: block;
  min-width: 0;
}

.hc-mobile-cart-item-title {
  color: #111;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  text-decoration: none;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hc-mobile-cart-item-remove {
  color: inherit;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
  border: 0;
  background: transparent !important;
}

.hc-mobile-cart-item-remove i {
  font-size: 22px;
  color: #9c9c9c;
}

.hc-mobile-cart-item-variation {
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1.3;
}

.hc-mobile-cart-item-bottom {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* gap: 12px; */
}

.hc-mobile-cart-item-price {
  color: #111;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  /* gap: 10px; */
  flex-direction: column;
}

.hc-mobile-cart-item-price .woocommerce-Price-amount {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.hc-mobile-cart-item-price-regular {
  color: #9c9c9c;
  font-size: 12px;
  font-weight: 400;
}

.hc-mobile-cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hc-mobile-cart-item-qty-btn,
.hc-mobile-cart-item-qty-val {
  width: 30px;
  height: 24px;
  border-radius: 4px;
  /* background: #f4f4f4; */
  background: #f4f4f400 !important;
  color: #111;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hc-mobile-cart-item-qty-btn {
  border: 0;
  background: #f4f4f4;
}

.hc-mobile-cart-item-qty-btn i {
  font-size: 16px;
  line-height: 1;
  color: #777;
}

.hc-mobile-cart-item-qty-btn.is-disabled {
  color: #bcbcbc;
}

.hc-mobile-cart-item-qty-val {
  background: #fff;
  border: 1px solid #e6e6e6;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.hc-mobile-cart-empty {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 14px;
  color: #666;
  font-size: 14px;
}

.oraimo-mobile-cart-content .woocommerce-mini-cart__total,
.oraimo-mobile-cart-content .woocommerce-mini-cart__buttons {
  display: none;
}

.oraimo-mobile-cart-summary {
  border-top: 1px solid #d9d9d9;
  padding: 16px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.oraimo-mobile-cart-summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.oraimo-mobile-cart-summary-subtotal {
  text-align: right;
}

.oraimo-mobile-cart-summary-subtotal-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  line-height: 1.2;
}

.hc-mobile-cart-summary-row-discount .hc-mobile-cart-summary-label,
.hc-mobile-cart-summary-row-discount .hc-mobile-cart-summary-discount {
  color: #ff1f1f;
}

.hc-mobile-cart-summary-row-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 12px;
}

.oraimo-mobile-cart-summary-buttons {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.oraimo-mobile-cart-select-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  padding: 0 !important;
}

.oraimo-mobile-cart-select-all span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d5d5d5;
  display: block;
  background: #fff;
}

.oraimo-mobile-cart-select-all.is-checked span {
  border-color: #79d50f;
  background: #79d50f;
  position: relative;
}

.oraimo-mobile-cart-select-all.is-checked span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.oraimo-mobile-cart-select-all em {
  font-style: normal;
  font-size: 14px;
  color: #4a4a4a;
}

.oraimo-mobile-cart-total {
  font-size: 20px;
  color: #111;
  line-height: 1.1;
  font-weight: 700;
}

.oraimo-mobile-cart-saved {
  display: none;
}

.oraimo-mobile-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.oraimo-mobile-cart-btn--outline {
  border: 1px solid #1d1d1d;
  color: #111;
  background: #fff;
}

.oraimo-mobile-cart-btn--solid {
  border: 1px solid #111;
  color: #fff;
  background: #0a0a12;
}

/* ========================================================
   Cart page (matches screenshots)
   ======================================================== */

.hc-cart-page {
  background: #f7f7f7;
}

.hc-cart-page-inner {
  max-width: 1240px;
  margin: 0 auto;
  /* padding: 24px 16px 36px; */
}

.hc-cart-page-steps {
  display: none;
  padding: 12px 0 6px;
  justify-content: center;
}

.hc-cart-page-steps ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  line-height: 1.2;
  color: #adadad;
}

.hc-cart-page-steps li {
  white-space: nowrap;
}

.hc-cart-page-steps li + li::before {
  content: ">";
  color: #c9c9c9;
  margin-right: 10px;
}

.hc-cart-page-steps li + li {
  margin-left: 10px;
}

.hc-cart-page-steps li.is-current {
  color: #111;
  font-weight: 700;
}

.hc-cart-page-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  padding: 6px 0 16px;
}

.hc-cart-page-back,
.hc-cart-page-header-spacer {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hc-cart-page-back {
  text-decoration: none !important;
  color: #111;
}

.hc-cart-page-back i {
  font-size: 28px;
  line-height: 1;
}

.hc-cart-page-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  text-align: center;
}

.hc-cart-page-layout {
  display: block;
}

.hc-cart-page-offer {
  background: transparent;
  border-radius: 0;
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid #efefef;
  margin: 0;
}

.hc-cart-page-offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: #111;
}

.hc-cart-page-offer-text {
  display: block;
  min-width: 0;
}

.hc-cart-page-offer-row strong {
  color: #fe2424;
  font-weight: 600;
}

.hc-cart-page-offer-add {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hc-cart-page-offer-add i {
  color: #999;
  font-size: 18px;
  line-height: 1;
}

.hc-cart-page-offer-rule {
  margin-top: 6px;
  padding-top: 0;
  border-top: 0;
  color: #111;
  font-size: 14px;
}

.hc-cart-page-list-wrap {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #efefef;
  padding: 0;
  overflow: hidden;
}

.hc-cart-page-list-wrap .hc-cart-page-list {
  padding: 14px 18px 18px;
}

.hc-cart-page-list {
  gap: 14px;
}

.hc-cart-page-item {
  border: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.hc-cart-page-item-card {
  flex: 1 1 auto;
  min-width: 0;
  background: #fff;
  /* border: 1px solid #efefef;
  border-radius: 12px;
  padding: 16px; */
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  column-gap: 14px;
  align-items: start;
}

.hc-cart-page-item + .hc-cart-page-item {
  margin-top: 0;
}

.hc-cart-page .hc-mobile-cart-item-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hc-cart-page .hc-mobile-cart-item-thumb {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  border: 1px solid #efefef;
}

.hc-cart-page .hc-mobile-cart-item-top {
  min-width: 0;
}

.hc-cart-page .hc-mobile-cart-item-title {
  font-size: 14px;
  font-weight: 500;
}

.hc-cart-page .hc-mobile-cart-item-select {
  width: 18px;
  height: 18px;
  padding: 0;
  flex: 0 0 auto;
  align-self: center;
}

.hc-cart-page .hc-mobile-cart-item-select span {
  width: 18px;
  height: 18px;
}

.hc-cart-page .hc-mobile-cart-item-select.is-checked span::after,
.hc-cart-page
  .hc-mobile-cart-item.is-selected
  .hc-mobile-cart-item-select
  span::after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
}

.hc-cart-page-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.hc-cart-page-item-actions {
  display: inline-flex;
  align-items: center;
  /* gap: 12px; */
  flex: 0 0 auto;
}

.hc-cart-page-item-wishlist,
.hc-cart-page-item-remove {
  width: 14px;
  height: 14px;
  border: 0;
  background: transparent !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9c9c9c !important;
  padding-inline: 14px !important;
}

.hc-cart-page-item-wishlist i,
.hc-cart-page-item-remove i {
  font-size: 14px;
  line-height: 1;
}

.hc-cart-page-item-variation {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f3f3f3;
  color: #3c3c3c;
  font-size: 14px;
  width: fit-content;
}

.hc-cart-page-item-variation i {
  display: inline-flex;
  color: #9c9c9c;
  font-size: 16px;
  line-height: 1;
}

.hc-cart-page .hc-mobile-cart-item-bottom {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* gap: 12px; */
  /* margin-top: 8px; */
  flex-direction: column;
}

.hc-cart-page .hc-mobile-cart-item-price {
  font-size: 14px;
  font-weight: 700;
}

.hc-cart-page .hc-mobile-cart-item-qty {
  gap: 14px;
}

.hc-cart-page .hc-mobile-cart-item-qty-btn,
.hc-cart-page .hc-mobile-cart-item-qty-val {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.hc-cart-page .hc-mobile-cart-item-qty-btn {
  background: #f0f0f0;
  border: 1px solid #ececec;
  color: #9c9c9c !important;
}

.hc-cart-page .hc-mobile-cart-item-qty-btn span {
  font-size: 18px;
  line-height: 1;
}

.hc-cart-page .hc-mobile-cart-item-qty-btn[data-mobile-cart-qty="increment"] {
  background: #fff;
}

.hc-cart-page .hc-mobile-cart-item-qty-val {
  width: 24px;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  color: #111;
}

/* Mobile bottom totals bar (screenshot 1) */
.anchor-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #fff;
  border-top: 1px solid var(--hc-border-color);
}

.hc-cart-page-bottom {
  padding: 12px 16px;
  display: grid;
  /* grid-template-columns: auto minmax(0, 1fr) minmax(160px, 52vw); */
  align-items: center;
  /* gap: 12px; */
  grid-auto-flow: column;
}

.hc-cart-page-select-all {
  gap: 10px;
}

.hc-cart-page-bottom-summary {
  min-width: 0;
  display: grid;
  gap: 4px;
  justify-items: center;
}

.hc-cart-page-bottom-total {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
}

.hc-cart-page-bottom-saved {
  font-size: 12px !important;
  line-height: 1.2 !important;
  color: #555 !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent !important;
  border: 0;
  padding: 0 !important;
  cursor: pointer;
}

.hc-cart-page-bottom-saved-amount {
  color: #fe2424;
  font-weight: 600;
}

.hc-cart-page-bottom-saved i {
  font-size: 14px;
  line-height: 1;
  color: #555;
  transform: rotate(0deg);
}

.hc-cart-page-bottom-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 992px) {
  .hc-cart-page-steps {
    display: flex;
    padding: 18px 0 10px;
  }

  .hc-cart-page-title {
    text-align: left;
  }

  .hc-cart-page-header {
    display: block;
    padding: 0 0 22px;
  }

  .hc-cart-page-back,
  .hc-cart-page-header-spacer {
    display: none;
  }

  .hc-cart-page-bottom {
    display: none;
  }
}

.hc-cart-page-summary {
  display: none;
}

.anchor-bottom .hc-cart-page-summary {
  display: block;
  background: #fff;
  border-top: 1px solid #e6e6e6;
  /* margin: 0 -16px; */
  padding: 18px 16px 14px;
}

.hc-cart-page-summary-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0;
  text-align: center;
  padding: 8px 0 18px;
}

.hc-cart-page-summary-rows {
  display: grid;
  gap: 12px;
  padding: 0;
}

.hc-cart-page-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: #111;
}

.hc-cart-page-summary-row.hc-mobile-cart-summary-row-discount
  .hc-cart-page-summary-label,
.hc-cart-page-summary-row.hc-mobile-cart-summary-row-discount
  .hc-cart-page-summary-value {
  color: #fe2424;
}

.hc-cart-page-summary-label {
  color: #2a2a2a;
  font-weight: 500;
}

.hc-cart-page-summary-value {
  font-weight: 700;
  color: #111;
  text-align: right;
}

.hc-cart-page-summary-value--discount {
  color: #fe2424;
}

.hc-cart-page-summary-divider {
  height: 1px;
  background: #eaeaea;
  width: 100%;
}

.hc-cart-page-summary-row-total {
  padding-top: 2px;
}

.hc-cart-page-summary-label--total {
  font-weight: 800;
  color: #111;
}

.hc-cart-page-summary-value--total {
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .hc-cart-page-inner {
    padding-bottom: 130px;
  }

  .hc-cart-page.is-cart-summary-collapsed .hc-cart-page-summary {
    display: none;
  }

  .hc-cart-page.is-cart-summary-collapsed .hc-cart-page-bottom-saved i {
    transform: rotate(180deg);
  }

  .hc-cart-page-summary-divider,
  .hc-cart-page-summary-row-total {
    display: none;
  }

  .hc-cart-page-summary .hc-cart-page-checkout,
  .hc-cart-page-summary .hc-cart-page-continue {
    display: none;
  }
}

.hc-cart-page-related {
  margin-top: 26px;
}

.hc-cart-page-related .hc-cart-cross-sells > h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.hc-cart-page-related .swiper-button-prev,
.hc-cart-page-related .swiper-button-next,
.hc-cart-page-related .swiper-pagination {
  display: none;
}

.hc-cart-page-related-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

@media (min-width: 992px) {
  .anchor-bottom {
    display: none;
  }

  .hc-cart-page-inner {
    padding: 34px 24px 60px;
  }

  .hc-cart-page-title {
    font-size: 28px;
  }

  .hc-cart-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
  }

  .hc-cart-page-item-variation i {
    display: none;
  }

  .hc-cart-page-summary {
    display: grid;
    gap: 12px;
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 22px;
    margin: 0;
  }

  .hc-cart-page-summary-title {
    text-align: left;
    padding: 0;
    font-size: 18px;
  }

  .hc-cart-page-checkout,
  .hc-cart-page-continue {
    border-radius: 8px;
  }

  .hc-cart-page-checkout,
  .hc-cart-page-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }

  .hc-cart-page-checkout {
    background: #111;
    color: #fff;
    border: 1px solid #111;
  }

  .hc-cart-page-continue {
    background: #fff;
    color: #111;
    border: 1px solid #e5e5e5;
  }
}

@media (max-width: 991.98px) {
  .oraimo-mobile-cart-panel-header h2 {
    font-size: 16px;
  }

  .hc-mobile-cart-item-price {
    font-size: 16px;
  }

  .hc-mobile-cart-item-qty-btn,
  .hc-mobile-cart-item-qty-val {
    width: 22px;
    height: 22px;
  }

  .oraimo-mobile-cart-total {
    font-size: 14px;
  }

  .oraimo-mobile-cart-btn {
    min-height: 44px;
    font-size: 14px;
  }
}

.oraimo-mobile-account-signin,
.oraimo-mobile-account-register {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.oraimo-mobile-account-signin {
  color: #1e1e1e;
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 700;
}

.oraimo-mobile-account-register {
  margin-top: 14px;
  color: #182200;
  background: #e8efdc;
  border: 1px solid #c6db9a;
  padding: 13px 14px;
  font-size: 14px;
  gap: 10px;
  justify-content: flex-start;
}

.oraimo-mobile-account-register span {
  font-weight: 600;
}

.oraimo-mobile-account-section {
  margin-top: 20px;
}

.oraimo-mobile-account-section h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #1f1f1f;
}

.oraimo-mobile-panel-links,
.oraimo-mobile-panel-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.oraimo-mobile-panel-links li,
.oraimo-mobile-panel-menu .menu > li {
  border-bottom: 1px solid #d6d6d6;
}

.oraimo-mobile-panel-links a,
.oraimo-mobile-panel-menu .menu > li > a {
  display: block;
  padding: 14px 0;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.oraimo-mobile-menu-promo-links {
  margin-bottom: 10px;
}

.oraimo-mobile-menu-promo-links a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border-bottom: 1px solid #d6d6d6;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  padding: 20px 0;
}

.oraimo-mobile-panel-menu .menu > li {
  position: relative;
}

.oraimo-mobile-panel-menu .menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
}

.oraimo-mobile-panel-menu .menu .sub-menu a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  color: #404040;
  text-decoration: none;
}

.oraimo-submenu-toggle {
  position: absolute;
  top: 6px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #363636;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oraimo-submenu-toggle i {
  font-size: 16px;
  line-height: 1;
}

.oraimo-mobile-panel-menu .submenu-open > .oraimo-submenu-toggle i {
  transform: rotate(180deg);
}

.oraimo-mobile-panel-widget-area {
  padding-top: 18px;
}

@media (min-width: 992px) {
  .oraimo-mobile-panel,
  .oraimo-mobile-panel-overlay {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  /* Mobile/Tablet typography rules:
   * - Regular text: 14px
   * - Headings: up to 16px
   * This block also fixes any tiny header/footer text on mobile.
   */
  .oraimo-trust-bar {
    font-size: max(14px, var(--oraimo-announcement-font-size));
  }

  .oraimo-header {
    font-size: 14px;
  }

  .oraimo-header .site-title-link {
    font-size: 16px;
    line-height: 1.2;
  }

  .header-cart-badge {
    font-size: 12px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
  }

  .oraimo-header .hc-search-clear-icon {
    font-size: 14px;
  }

  /* Icon fonts in header + overlays should follow the same max size rule. */
  .oraimo-header .hc-search-trigger-icon,
  .oraimo-header .oraimo-hamburger-icon {
    font-size: 16px;
  }

  .oraimo-header .hc-search-icon-input {
    font-size: 16px;
  }

  .oraimo-mobile-panel i.fi {
    font-size: 16px;
    line-height: 1;
  }

  /* Search: full-screen overlay on mobile/tablet (matches Image 2) */
  .oraimo-header .hc-search-bar-widget {
    position: static;
  }

  .oraimo-header .hc-search-panel {
    position: fixed;
    inset: calc(
        var(--wp-admin--admin-bar--height, 0px) +
          var(--oraimo-header-inner-height)
      )
      0 0 0;
    z-index: 10050;
  }

  .oraimo-header .hc-search-overlay-bg {
    background: #fff;
    opacity: 1;
  }

  .oraimo-header .hc-search-panel-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    padding: 18px 18px 110px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .oraimo-header .hc-search-open .hc-search-panel-inner {
    transform: none;
  }

  .oraimo-header .hc-search-input {
    background: #fff;
    font-size: 14px;
  }

  .oraimo-header .hc-search-input::placeholder {
    font-size: 14px;
  }

  .oraimo-header .hc-search-popular-title {
    font-size: 16px;
  }

  .oraimo-header .hc-search-panel-footer {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    padding-top: 0;
    width: auto;
  }

  .oraimo-header .hc-search-clear--footer {
    width: 64px;
    height: 64px;
    background: #6f6f72;
  }

  .oraimo-header .hc-search-clear-icon--footer {
    font-size: 16px;
  }

  .oraimo-footer .oraimo-footer-bottom-left,
  .oraimo-footer .oraimo-footer-bottom-right,
  .oraimo-footer .oraimo-footer-bottom .widget,
  .oraimo-footer .oraimo-footer-bottom p,
  .oraimo-footer .oraimo-footer-bottom a,
  .oraimo-footer .oraimo-footer-bottom span {
    font-size: 14px;
  }
}

/* ─── Oraimo logo colour override for dark header ──────── */
.oraimo-header .custom-logo-link img {
  filter: none;
}

/* ========================================================
   Oraimo-style widgetized footer
   ======================================================== */
.oraimo-footer {
  background: #111;
  color: #e7e7e7;
  padding: 44px 0 18px;
  margin-top: 0;
}

.oraimo-footer .oraimo-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.oraimo-footer .oraimo-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.oraimo-footer .oraimo-footer-col {
  min-width: 0;
}

.oraimo-footer .oraimo-footer-col .widget {
  margin: 0;
  color: #d4d4d4;
}

.oraimo-footer .oraimo-footer-col .widget + .widget {
  margin-top: 18px;
}

.oraimo-footer .oraimo-footer-col .widget-title,
.oraimo-footer .oraimo-footer-col h2,
.oraimo-footer .oraimo-footer-col h3,
.oraimo-footer .oraimo-footer-col h4 {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.oraimo-footer .oraimo-footer-col p,
.oraimo-footer .oraimo-footer-col li,
.oraimo-footer .oraimo-footer-col a,
.oraimo-footer .oraimo-footer-col span {
  font-size: 14px;
  line-height: 1.6;
  color: #c8c8c8;
}

.oraimo-footer .oraimo-footer-col a {
  text-decoration: none;
  transition: color 0.18s;
}

.oraimo-footer .oraimo-footer-col a:hover {
  color: #82e600;
}

.oraimo-footer .oraimo-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.oraimo-footer .oraimo-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}

.oraimo-footer .oraimo-footer-bottom-left,
.oraimo-footer .oraimo-footer-bottom-right,
.oraimo-footer .oraimo-footer-bottom .widget,
.oraimo-footer .oraimo-footer-bottom p,
.oraimo-footer .oraimo-footer-bottom a,
.oraimo-footer .oraimo-footer-bottom span {
  font-size: 13px;
  line-height: 1.5;
  color: #a8a8a8;
  margin: 0;
}

.oraimo-footer .oraimo-footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .oraimo-footer {
    padding-top: 52px;
  }

  .oraimo-footer .oraimo-footer-inner {
    padding: 0 24px;
  }

  .oraimo-footer .oraimo-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
  }

  .oraimo-footer .oraimo-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .oraimo-footer .oraimo-footer-inner {
    padding: 0 40px;
  }

  .oraimo-footer .oraimo-footer-top {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 36px;
  }
}
