:root {
  --oh-blue: #35c5f0;
  --oh-blue-dark: #09addb;
  --oh-blue-soft: #e8f8fd;
  --oh-text: #2f3438;
  --oh-muted: #828c94;
  --oh-line: #eaedef;
  --oh-bg: #f7f9fa;
  --oh-card: #ffffff;
  --oh-star: #ffb23e;
  --oh-danger: #f77;
  --oh-radius: 10px;
  --app-w: 430px;
  --tabbar-h: 58px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  margin: 0;
  background: #fff;
}

body {
  margin: 0;
  padding: 0;
}

html.app-shell {
  background: #d8dde3;
}

html.app-shell body {
  margin: 0 auto;
  max-width: var(--app-w);
  min-height: 100dvh;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.06), 0 18px 50px rgba(15, 23, 42, 0.12);
  padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px));
  overscroll-behavior-y: contain;
}

body.cs-store,
body.ap-page,
body.cart-page-body,
body.od-page {
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    system-ui, sans-serif;
  color: var(--oh-text);
  word-break: keep-all;
}

a {
  color: inherit;
}

.cs-wrap {
  width: calc(100% - 28px);
  margin: 0 auto;
}

.cs-dummy-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff8e8;
  border: 1px solid #ffe08a;
  border-radius: 10px;
  color: #8a6d1b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.cs-dummy-chip {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 7px;
  border-radius: 4px;
  background: #fff3cd;
  color: #8a6d1b;
  font-size: 10px;
  font-weight: 700;
}

/* App header */
.oh-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--oh-line);
}

.oh-header-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 52px;
  padding: 8px 12px;
  padding-top: calc(8px + env(safe-area-inset-top, 0px));
}

.oh-logo,
.oh-util,
.oh-user-btn,
.oh-footer-nav {
  display: none;
}

.oh-tabs,
.oh-subnav,
.oh-float-consult {
  display: none !important;
}

.oh-footer-copy {
  margin-top: 14px;
  color: #b0b8be;
}

.oh-footer-biz {
  margin-top: 16px;
  line-height: 1.75;
}

.oh-search {
  flex: 1;
  min-width: 0;
  position: relative;
}

.oh-search input {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 20px;
  padding: 0 14px 0 38px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  background: #f5f6f7;
}

.oh-search input::placeholder {
  color: #b0b8be;
}

.oh-search button {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #8b9298;
  cursor: pointer;
  font-size: 14px;
}

.oh-actions {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.oh-icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--oh-text);
  font-size: 18px;
  cursor: pointer;
}

.oh-cart-badge {
  position: absolute;
  top: 2px;
  right: 1px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #ff5252;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 16px;
  display: none;
}

.oh-cart-badge.is-on {
  display: block;
}

/* Bottom tab bar — cspartner webapp */
.oh-tabbar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--app-w);
  z-index: 400;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--oh-line);
}

.oh-tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: #b0b8be;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.oh-tabbar a i {
  font-size: 19px;
}

.oh-tabbar a.is-on {
  color: #2f3438;
}

.oh-search-sheet {
  display: none;
  position: fixed;
  inset: 0 auto 0 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--app-w);
  z-index: 500;
  background: #fff;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 24px;
}

.oh-search-sheet.is-on {
  display: block;
}

.oh-search-sheet-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.oh-search-sheet-head input {
  flex: 1;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--oh-bg);
  padding: 0 14px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.oh-search-sheet-head button {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--oh-muted);
  cursor: pointer;
  white-space: nowrap;
}

.oh-search-suggest a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid var(--oh-line);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* Product card */
.oh-card {
  display: block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.oh-card-thumb {
  position: relative;
  aspect-ratio: 1;
  background: #f5f6f7;
  border-radius: 10px;
  overflow: hidden;
}

.oh-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oh-card-body {
  padding: 8px 2px 0;
}

.oh-card-brand {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--oh-muted);
}

.oh-card-name {
  margin: 3px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--oh-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-card-price {
  margin: 5px 0 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.oh-card-price .pct {
  color: var(--oh-blue);
  font-size: 15px;
  font-weight: 800;
}

.oh-card-price .now {
  font-size: 15px;
  font-weight: 800;
}

.oh-card-price .was {
  width: 100%;
  font-size: 11px;
  color: #b0b8be;
  text-decoration: line-through;
}

.oh-card-social {
  margin: 3px 0 0;
  font-size: 11px;
  color: var(--oh-muted);
  font-weight: 600;
}

.oh-card-social .star {
  color: var(--oh-star);
  margin-right: 2px;
}

.oh-section {
  padding: 22px 0 4px;
}

.oh-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.oh-section-head h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.oh-section-head p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--oh-muted);
}

.oh-section-head a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--oh-muted);
}

.oh-grid,
.oh-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 10px;
}

.oh-cats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 6px;
}

.oh-cat {
  text-decoration: none;
  text-align: center;
  color: inherit;
}

.oh-cat-ico {
  width: 52px;
  height: 52px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: var(--oh-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--oh-text);
}

.oh-cat span {
  font-size: 11px;
  font-weight: 700;
}

.oh-hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #111;
  width: 100%;
}

.oh-hero .swiper-slide a {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
  min-height: 200px;
}

.oh-hero .swiper-slide > a > img,
.oh-hero .oh-hero-card > img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  display: block;
}

.oh-hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.oh-hero-copy .tag {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--oh-blue);
}

.oh-hero-copy h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.oh-hero-copy p {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.oh-hero .swiper-pagination {
  position: static;
  padding: 8px 0 0;
  background: #fff;
}

.oh-hero .swiper-pagination-bullet-active {
  background: var(--oh-blue);
}

.oh-feed-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.oh-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oh-feed-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 10px 8px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.oh-cta-band {
  margin: 20px 0 8px;
  padding: 18px 16px;
  border-radius: 14px;
  background: #f3fbfe;
  border: 1px solid #d7f1fa;
}

.oh-cta-band h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.oh-cta-band p {
  margin: 6px 0 12px;
  color: var(--oh-muted);
  font-size: 13px;
}

.oh-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 14px;
}

.oh-benefit {
  display: block;
  padding: 14px 12px;
  border-radius: 12px;
  background: var(--oh-bg);
  text-decoration: none;
}

.oh-benefit strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.oh-benefit span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--oh-muted);
  line-height: 1.4;
}

.oh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.oh-btn-primary {
  background: var(--oh-blue);
  color: #fff;
}

.oh-footer {
  margin-top: 28px;
  border-top: 1px solid var(--oh-line);
  background: #f7f8fa;
  color: #828c94;
  font-size: 12px;
}

.oh-footer-inner {
  width: calc(100% - 28px);
  margin: 0 auto;
  padding: 22px 0 18px;
  display: block;
}

.oh-footer h4 {
  margin: 0 0 6px;
  color: var(--oh-text);
  font-size: 13px;
  font-weight: 800;
}

.oh-footer a {
  color: var(--oh-text);
  font-weight: 700;
  text-decoration: none;
}

.oh-footer .phone {
  font-size: 18px;
  font-weight: 800;
  color: var(--oh-text);
}

html.app-shell #offcanvasNavbar {
  max-width: var(--app-w);
}

@media (min-width: 431px) and (max-width: 767px) {
  html.app-shell #offcanvasNavbar.offcanvas-end {
    right: calc(50vw - var(--app-w) / 2);
  }
}

@media (max-width: 430px) {
  html.app-shell {
    background: #fff;
  }
  html.app-shell body {
    box-shadow: none;
  }
}

/* Drawer */
.oh-drawer-bg {
  display: none;
  position: fixed;
  inset: 0 auto 0 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--app-w);
  background: rgba(0, 0, 0, 0.35);
  z-index: 450;
}
.oh-drawer-bg.is-on { display: block; }
.oh-drawer {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 78%;
  background: #fff;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 20px 24px;
  box-shadow: 8px 0 24px rgba(0,0,0,.08);
}
.oh-drawer-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 8px;
}
.oh-drawer-close {
  width: 36px;
  height: 36px;
  margin: -8px 0 0 -8px;
  border: 0;
  background: transparent;
  color: #2f3438;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.oh-drawer-close:hover { color: #000; }
.oh-drawer a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--oh-line);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

/* Hero like Ohou */
.oh-hero-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 220px;
  color: #fff;
  display: block;
  text-decoration: none;
}
.oh-hero-card > img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  display: block;
}
.oh-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.62) 78%);
}
.oh-hero-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 1;
  padding: 0;
  background: none;
}
.oh-hero-copy .tag { margin: 0 0 4px; font-size: 12px; color: #fff; font-weight: 700; opacity: .9; }
.oh-hero-copy h3 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -0.04em; }
.oh-hero-copy p { margin: 4px 0 0; font-size: 13px; }

.oh-svc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 16px 0 4px;
  text-align: center;
}
.oh-svc a { text-decoration: none; color: inherit; }
.oh-svc-ico {
  width: 48px; height: 48px;
  margin: 0 auto 6px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}
.oh-svc span { font-size: 11px; font-weight: 700; }

.oh-cat-photo {
  width: 52px; height: 52px;
  margin: 0 auto 6px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f6f7;
}
.oh-cat-photo img { width: 100%; height: 100%; object-fit: cover; }

.oh-hscroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.oh-hcard {
  flex: 0 0 148px;
  text-decoration: none;
  color: inherit;
}
.oh-hcard .oh-card-thumb { border-radius: 12px; }
.oh-badge-sale {
  position: absolute;
  top: 8px; left: 8px;
  background: #35c5f0;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 4px;
}

.oh-rowcard {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
}
.oh-rowcard img {
  width: 96px; height: 96px;
  border-radius: 12px;
  object-fit: cover;
}
.oh-rowcard .pct { color: #ff5252; font-size: 16px; font-weight: 800; }

.oh-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 8px;
}
.oh-chip {
  flex-shrink: 0;
  height: 34px;
  padding: 0 14px;
  border-radius: 17px;
  border: 1px solid #e6e8ea;
  background: #fff;
  color: #2f3438;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.oh-chip.is-on {
  background: #2f3438;
  border-color: #2f3438;
  color: #fff;
}

/* Interior app cards */
.iv-page { background: #fff; }
.iv-banner {
  position: relative;
  margin: 12px 0 8px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 132px;
  color: #fff;
  display: block;
  text-decoration: none;
}
.iv-banner img { width: 100%; height: 132px; object-fit: cover; display: block; }
.iv-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(53,197,240,.72), rgba(53,197,240,.28));
}
.iv-banner div {
  position: absolute; inset: 0;
  z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 18px;
}
.iv-banner strong { font-size: 17px; font-weight: 800; }
.iv-banner span { margin-top: 4px; font-size: 12px; opacity: .92; }
.iv-count { position: absolute; right: 10px; bottom: 8px; z-index: 2; font-size: 11px; background: rgba(0,0,0,.28); padding: 2px 7px; border-radius: 8px; }

.iv-sec { padding: 18px 0 4px; }
.iv-sec h2 { margin: 0 0 12px; font-size: 16px; font-weight: 800; }
.iv-link {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px;
  border: 1px solid var(--oh-line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}
.iv-link .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: #eef8fc;
  display: flex; align-items: center; justify-content: center;
  color: var(--oh-blue); font-size: 20px;
}
.iv-link strong { display: block; font-size: 15px; }
.iv-link span { display: block; font-size: 12px; color: var(--oh-muted); margin-top: 2px; }
.iv-link .chev { margin-left: auto; color: #c2c8cc; }

.iv-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.iv-box {
  margin-top: 10px;
  border: 1px solid var(--oh-line);
  border-radius: 14px;
  padding: 14px 10px 12px;
}
.iv-quote {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #e8f8fd;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}
.iv-quote i { color: var(--oh-blue); }

.iv-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.iv-mini a {
  display: block;
  padding: 14px 8px;
  border-radius: 12px;
  background: #f7f8fa;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.iv-mini i { display: block; font-size: 18px; margin-bottom: 6px; color: var(--oh-blue); }

/* My page app */
html.app-shell body:has(.mypage-container) {
  background: #f5f6f7;
}
.mypage-container {
  background: #f5f6f7 !important;
  padding: 8px 14px 24px;
}
.mp-title {
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 12px;
}
.mypage-container .profile-section,
.mypage-container .quick-nav-section,
.mypage-container .recent-viewed-section,
.mypage-container .customer-section {
  background: #fff;
  border: 0;
  border-radius: 16px;
  margin-bottom: 10px;
  padding: 16px;
}
.mypage-container .logout-btn {
  border-radius: 10px;
}
.mypage-container .profile-btn {
  background: var(--oh-blue);
  border-radius: 10px;
}
.mypage-container .profile-avatar {
  width: 56px; height: 56px;
}
.mypage-container .profile-info h2 { font-size: 16px; }

/* Desktop website layout */
@media (min-width: 768px) {
  :root {
    --page-w: 1256px;
    --tabbar-h: 0px;
  }

  html.app-shell {
    background: #fff;
  }

  html.app-shell body {
    max-width: none;
    box-shadow: none;
    padding-bottom: 0;
    overscroll-behavior-y: auto;
  }

  html.app-shell #offcanvasNavbar {
    max-width: 420px;
  }

  .cs-wrap {
    width: min(var(--page-w), calc(100% - 48px));
  }

  .oh-header {
    background: #fff;
  }

  .oh-header-inner {
    width: min(var(--page-w), calc(100% - 48px));
    margin: 0 auto;
    min-height: 64px;
    padding: 10px 0;
    gap: 12px;
  }

  .oh-menu-btn {
    display: none;
  }

  .oh-logo {
    display: block;
    flex-shrink: 0;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--oh-blue);
    text-decoration: none;
  }

  .oh-tabs {
    display: flex !important;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
  }

  .oh-tabs a {
    padding: 6px 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--oh-text);
    letter-spacing: -0.03em;
  }

  .oh-tabs a.is-on,
  .oh-tabs a:hover {
    color: var(--oh-blue);
  }

  .oh-search {
    flex: 1 1 160px;
    margin-left: auto;
    min-width: 140px;
    max-width: 380px;
  }

  .oh-search input {
    height: 42px;
    border: 1px solid var(--oh-blue);
    border-radius: 4px;
    background: #fff;
    padding-left: 42px;
    font-size: 14px;
  }

  .oh-search button {
    top: 4px;
    left: 6px;
    color: var(--oh-blue);
  }

  .oh-actions {
    gap: 0;
  }

  .oh-icon-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  a.oh-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
  }

  .oh-user-btn {
    display: inline-flex;
  }

  .oh-tabbar {
    display: none;
  }

  .oh-hero {
    width: min(var(--page-w), calc(100% - 48px));
    margin: 20px auto 0;
    border-radius: 16px;
  }

  .oh-hero .swiper-slide > a > img,
  .oh-hero .oh-hero-card > img,
  .oh-hero-card > img {
    height: 340px;
  }

  .oh-hero-card {
    min-height: 340px;
  }

  .oh-hero-copy {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }

  .oh-hero-copy h3 {
    font-size: 28px;
  }

  .oh-svc {
    padding: 32px 0 8px;
    gap: 16px;
  }

  .oh-svc-ico {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 26px;
  }

  .oh-svc span {
    font-size: 13px;
  }

  .oh-section {
    padding: 40px 0 8px;
  }

  .oh-section-head {
    margin-bottom: 20px;
  }

  .oh-section-head h2 {
    font-size: 22px;
  }

  .oh-section-head a {
    font-size: 14px;
  }

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

  .oh-cat-photo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .oh-cat span {
    font-size: 13px;
  }

  .oh-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .oh-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .oh-card-thumb {
    border-radius: 8px;
  }

  .oh-card-name {
    font-size: 15px;
  }

  .oh-card-price .pct,
  .oh-card-price .now {
    font-size: 17px;
  }

  .oh-card:hover .oh-card-thumb img,
  .oh-hcard:hover .oh-card-thumb img,
  .oh-feed-item:hover img,
  .oh-rowcard:hover img {
    transform: scale(1.04);
  }

  .oh-card-thumb img,
  .oh-feed-item img,
  .oh-rowcard img {
    transition: transform 0.35s ease;
  }

  .oh-recs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .oh-rowcard {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 10px;
  }

  .oh-rowcard img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 8px;
  }

  .oh-hscroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    gap: 16px;
  }

  .oh-hcard {
    flex: none;
    width: auto;
  }

  .oh-feed-item {
    border-radius: 8px;
  }

  .oh-feed-item figcaption {
    font-size: 13px;
    padding: 28px 14px 12px;
  }

  .oh-footer {
    margin-top: 64px;
  }

  .oh-footer-inner {
    width: min(var(--page-w), calc(100% - 48px));
    padding: 48px 0 32px;
  }

  .oh-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.4fr;
    gap: 40px;
  }

  .oh-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .oh-footer-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #525252;
  }

  .oh-footer-nav a:hover {
    color: var(--oh-blue);
  }

  .oh-footer-biz {
    margin-top: 0;
  }

  .oh-footer .phone {
    display: block;
    margin-top: 6px;
    font-size: 28px;
  }

  .oh-footer-copy {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--oh-line);
  }

  .iv-banner {
    min-height: 220px;
    border-radius: 20px;
    margin: 28px 0 12px;
  }

  .iv-banner img {
    height: 220px;
  }

  .iv-banner strong {
    font-size: 28px;
  }

  .iv-banner span {
    font-size: 15px;
  }

  .iv-sec {
    padding: 28px 0 8px;
  }

  .iv-sec h2 {
    font-size: 20px;
  }

  .iv-link {
    padding: 20px 18px;
  }

  .iv-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .iv-values .iv-link {
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 24px 20px;
    gap: 14px;
  }

  .iv-values .iv-link span {
    margin-top: 0;
  }

  .iv-mini {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .mypage-container {
    width: min(960px, calc(100% - 48px));
    margin: 24px auto 64px;
    padding: 8px 0 24px;
    min-height: auto;
  }

  .cart-page-wrap {
    max-width: 960px;
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .pd-page {
    padding: 32px 0 64px;
  }

  .pd-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: start;
  }

  .pd-actions {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 20px 0 0;
    border-top: 0;
    background: transparent;
  }

  .pd-cover {
    border-radius: 8px;
  }

  .consult-hero {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 0 12px;
  }

  .consult-hero h1 {
    font-size: 32px;
  }

  .consult-hero p {
    font-size: 15px;
  }

  .cs-store .ap-form {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .oh-header-inner {
    min-height: 80px;
    padding: 12px 0;
    gap: 20px;
  }

  .oh-logo {
    max-width: 220px;
    font-size: 22px;
  }

  .oh-tabs {
    gap: 8px;
  }

  .oh-tabs a {
    padding: 8px 10px;
    font-size: 16px;
  }

  .oh-search {
    flex: 0 1 380px;
    max-width: 380px;
  }

  .oh-search input {
    height: 44px;
    font-size: 15px;
  }

  .oh-util {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--oh-text);
    white-space: nowrap;
  }

  .oh-util:hover,
  .oh-util.is-on {
    color: var(--oh-blue);
  }

  a.oh-user-btn {
    display: none;
  }

  .oh-subnav {
    display: block !important;
    border-top: 1px solid var(--oh-line);
    background: #fff;
  }

  .oh-subnav-inner {
    width: min(var(--page-w), calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    height: 46px;
  }

  .oh-subnav-inner a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #424242;
  }

  .oh-subnav-inner a:hover {
    color: var(--oh-blue);
  }

  .oh-hero {
    margin-top: 24px;
  }

  .oh-hero .swiper-slide > a > img,
  .oh-hero .oh-hero-card > img,
  .oh-hero-card > img {
    height: 420px;
  }

  .oh-hero-card {
    min-height: 420px;
  }

  .oh-hero-copy {
    left: 40px;
    right: 40px;
    bottom: 40px;
  }

  .oh-hero-copy .tag {
    font-size: 14px;
  }

  .oh-hero-copy h3 {
    font-size: 36px;
  }

  .oh-hero-copy p {
    font-size: 16px;
  }

  .oh-cats {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .oh-grid,
  .oh-recs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .oh-feed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .oh-hscroll {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }
}
