﻿/* MAKATI — 아임웹용 (makati- 접두사로 기존 스타일과 충돌 방지) */
*, .makati-wrap * { box-sizing: border-box; }

html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }

.makati-wrap {
  min-height: 100vh;
  background: #fff;
  color: #101828;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", sans-serif;
  padding-bottom: 56px;

  /* ── [배너 높이] 종류별 — 아래 숫자만 수정 ── */
  /* 1. 메인 슬라이드 (index 상단) */
  --makati-main-slide-h: 400px;
  --makati-main-slide-h-mobile: 300px;
  /* 2. 카테고리 슬라이드 띠배너 (카테고리 페이지 위, 3장 슬라이드) */
  --makati-cat-slide-h: 350px;
  --makati-cat-slide-h-mobile: 250px;
  /* 3. 단일 띠배너 (메인 중간 + 카테고리 아래, 1장) */
  --makati-strip-single-h: 250px;
  --makati-strip-single-h-mobile: 150px;
  /* 띠배너 모서리 (2·3번 공통) */
  --makati-strip-radius: 10px;
  --makati-strip-radius-mobile: 8px;
}

@media (min-width: 768px) {
  .makati-wrap { padding-bottom: 0; }
}

.makati-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

/* section: 위아래만 — margin shorthand 쓰면 auto 깨짐 */
.makati-container.makati-section {
  margin-top: 48px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}

.makati-container.makati-banner-block {
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Header ── */
.makati-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.makati-util-bar {
  display: none;
  height: 36px;
  background: #021068;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.makati-util-bar .makati-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.makati-util-left,
.makati-util-right {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  line-height: 1.2;
}
.makati-util-right { text-align: right; }
.makati-util-left:hover,
.makati-util-right:hover { color: #fff; opacity: .85; }
.makati-util-accent { color: #facc15; font-weight: 700; }
.makati-util-icon { color: #facc15; }

.makati-mobile-gnb { display: block; position: relative; height: 52px; overflow: hidden; }
.makati-mobile-gnb-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 100%;
  padding: 0 16px;
}
.makati-menu-btn {
  justify-self: start;
  width: 36px; height: 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; color: #364153;
}
.makati-menu-btn span { display: block; width: 20px; height: 2px; background: currentColor; }
.makati-logo-mobile { justify-self: center; text-decoration: none; max-width: 100%; }
.makati-logo-desktop { text-decoration: none; flex-shrink: 0; margin-right: 32px; }

.makati-logo-mark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.makati-logo-reper {
  font-weight: 800;
  color: #1a2332;
  letter-spacing: -0.04em;
}

.makati-logo-box-group {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 1px;
}

.makati-logo-box {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f59e0b;
}

.makati-logo-cube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: translateY(-0.5px);
}
.makati-logo-cube svg {
  display: block;
  width: 1em;
  height: 1em;
}

.makati-logo-mobile .makati-logo-mark { font-size: 20px; }
.makati-logo-desktop .makati-logo-mark { font-size: 30px; }

.makati-logo-mobile:hover .makati-logo-reper,
.makati-logo-desktop:hover .makati-logo-reper { color: #0f172a; }
.makati-logo-mobile:hover .makati-logo-cube svg,
.makati-logo-desktop:hover .makati-logo-cube svg { transform: scale(1.06); transition: transform .2s ease; }
.makati-logo-cube svg { transition: transform .2s ease; }

.makati-mobile-icons { display: flex; align-items: center; justify-content: flex-end; gap: 12px; color: #4a5565; }
.makati-mobile-icons button { background: none; border: none; cursor: pointer; padding: 0; color: inherit; }

.makati-drawer { display: none; background: #fff; border-top: 1px solid #f3f4f6; padding: 12px 16px; box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.makati-drawer.is-open { display: block; }
.makati-drawer a {
  display: block; font-size: 14px; font-weight: 600; color: #364153;
  padding: 6px 0; border-bottom: 1px solid #f9fafb; text-decoration: none;
}
.makati-drawer a:hover { color: #155dfc; }

.makati-desktop-gnb { display: none; max-width: 1280px; margin: 0 auto; padding: 0 16px; height: 72px; align-items: center; justify-content: space-between; gap: 8px; }
.makati-search-wrap { flex: 1; max-width: 672px; margin: 0 16px; }
.makati-search {
  display: flex; align-items: center; width: 100%; padding: 10px 20px;
  border-radius: 9999px; background: #f9fafb; border: 1px solid #e5e7eb; cursor: text;
}
.makati-search span { font-size: 13px; font-weight: 500; color: #99a1af; }
.makati-nav-links { display: flex; align-items: flex-start; gap: 20px; flex-shrink: 0; }
.makati-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 48px;
  text-decoration: none;
  color: #6a7282;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: color .2s;
}
.makati-nav-item svg { display: block; flex-shrink: 0; transition: transform 0.2s ease; }
.makati-nav-item:hover { color: #155dfc; }
.makati-nav-item:hover svg { transform: translateY(-1px); }
.makati-nav-item--wish:hover { color: #ef4444; }
.makati-nav-item--wish:hover svg { transform: scale(1.08); }

@media (min-width: 768px) {
  .makati-util-bar { display: block; }
  .makati-mobile-gnb, .makati-drawer, .makati-bottom-nav { display: none !important; }
  .makati-desktop-gnb { display: flex; }
}

/* ── 1. 메인 슬라이드 ── */
.makati-banner-wrap { width: 100%;
  max-width: 1280px;
  margin: 0 auto; }
.makati-banner {
  position: relative; width: 100%; height: var(--makati-main-slide-h-mobile); overflow: hidden;
  contain: paint;
  isolation: isolate;
}
.makati-slide {
  position: absolute; inset: 0;
  opacity: 0; z-index: 0;
  transition: opacity 1.5s ease;
}
.makati-slide.is-active { opacity: 1; z-index: 10; }
.makati-slide--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15));
  z-index: 1;
  pointer-events: none;
}
.makati-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.makati-slide--overlay .makati-slide-inner {
  position: relative;
  z-index: 2;
}
.makati-slide-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 120px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.makati-slide-text { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.makati-slide-badge { font-size: 18px; font-weight: 900; color: rgba(255,255,255,.6); letter-spacing: .3em; text-transform: uppercase; margin-bottom: 8px; }
.makati-slide-title { font-size: 42px; font-weight: 900; color: #fff; line-height: 1.25; margin: 0 0 4px; }
.makati-slide-sub { font-size: 18px; color: rgba(255,255,255,.75); font-weight: 500; margin: 0 0 12px; }
.makati-slide-cta {
  display: inline-block; font-size: 16px; font-weight: 900; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.2); border-radius: 9999px; padding: 4px 12px; width: fit-content;
}
.makati-slide-icon { flex-shrink: 0; width: 110px; height: 110px; }
.makati-slide-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 4px rgba(0,0,0,.15)); }

.makati-dots { display: flex; justify-content: center; gap: 8px; padding: 10px 0; }
.makati-dot {
  height: 6px; border-radius: 9999px; border: none; cursor: pointer; padding: 0;
  background: #d1d5dc; width: 6px; transition: all .3s;
}
.makati-dot.is-active { width: 20px; background: #155dfc; }

@media (min-width: 768px) {
  .makati-banner { height: var(--makati-main-slide-h); }
  
  .makati-slide-sub { font-size: 15px; }
  .makati-slide-icon { width: 180px; height: 160px; }
}

/* ── Categories ── */
.makati-categories {
  padding-top: 32px;
  padding-bottom: 24px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f9fafb;
  contain: layout style;
}

.makati-wrap .makati-goods-title {
  display: block;
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
  text-align: center;
  font-size: 50px !important;
  font-weight: 700;
  color: #454545 !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .makati-wrap .makati-goods-title {
    font-size: 28px !important;
    margin-bottom: 20px;
  }
}

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

@media (max-width: 767px) {
  .makati-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.makati-cat-item--laptop .makati-cat-icon {
  --cat-img-pos: 42% center;
}
.makati-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.makati-cat-icon {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  
  border-radius: 50%;
  overflow: hidden;
  box-sizing: border-box;
  --cat-img-pos: 50% 50%;
}
.makati-cat-img {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  display: block;
  object-fit: cover;
  object-position: var(--cat-img-pos, 50% 50%);
}
@media (hover: hover) {
  .makati-cat-item:hover .makati-cat-label {
    color: #155dfc;
  }
}
.makati-cat-label {
  font-size: 12px;
  font-weight: 700;
  color: #4a5565;
  margin-top: 10px;
  text-align: center;
  line-height: 1.25;
  width: 100%;
  word-break: keep-all;
}

@media (min-width: 768px) {
  .makati-cat-label { font-size: 17px; margin-top: 12px; }
}

.makati-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.makati-section-title { font-size: 26px; font-weight: 700; color: #000; margin: 0; line-height: 1.3; }
.makati-section-sub { font-size: 14px; color: #666; margin-left: 8px; font-weight: 500; }

@media (max-width: 768px) {
  .makati-section-title { font-size: 20px; }
  .makati-section-sub {
    display: block;
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.4;
  }
}

/* 아임웹 이식용: 공통 상품 그리드 */
.makati-grid-4,
.makati-best-sellers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.makati-grid-5,
.makati-tv-popular-grid,
.makati-live-popular-grid,
.makati-live-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

@media (max-width: 1024px) {
  .makati-grid-4,
  .makati-best-sellers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .makati-grid-5,
  .makati-tv-popular-grid,
  .makati-live-popular-grid,
  .makati-live-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .makati-grid-4,
  .makati-best-sellers-grid,
  .makati-grid-5,
  .makati-tv-popular-grid,
  .makati-live-popular-grid,
  .makati-live-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .makati-best-sellers .makati-card-title,
  .makati-laptop .makati-card-title,
  .makati-phone .makati-card-title,
  .makati-display .makati-card-title,
  .makati-tablet-desktop .makati-card-title {
    font-size: 12px;
    height: auto;
    min-height: 34px;
  }

  .makati-best-sellers .makati-card-price,
  .makati-best-sellers .makati-card-discount,
  .makati-laptop .makati-card-price,
  .makati-laptop .makati-card-discount,
  .makati-phone .makati-card-price,
  .makati-phone .makati-card-discount,
  .makati-display .makati-card-price,
  .makati-display .makati-card-discount,
  .makati-tablet-desktop .makati-card-price,
  .makati-tablet-desktop .makati-card-discount {
    font-size: 14px;
  }

  .makati-live-popular-grid .makati-live-name {
    font-size: 12px;
    min-height: 34px;
  }

  .makati-live-popular-grid .makati-live-price {
    font-size: 16px;
  }
}

/* 아임웹 이식용: BEST SELLERS 스타일 (makati-grid-4 와 동일) */

/* ── Product Card ── */
a.makati-card {
  text-decoration: none;
  color: inherit;
}
.makati-card { display: flex; flex-direction: column; cursor: pointer; min-width: 0; }
.makati-card-img-wrap {
  position: relative; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  border: 1px solid #ddddddd4; background: #f3f4f6; transition: border-color .3s;
}
.makati-card:hover .makati-card-img-wrap { border-color: #000; }
.makati-card-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .5s;
  background: #fff;
}
.makati-card:hover .makati-card-photo { transform: scale(1.05); }
.makati-card-img {
  width: 100%; height: 100%; background: #f9fafb;
  display: flex; align-items: center; justify-content: center; color: #d1d5dc;
  transition: transform .5s;
}
.makati-card:hover .makati-card-img { transform: scale(1.05); }
.makati-card-heart {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  border: none;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.05);
  color: #94a3b8;
  transition: color 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.makati-card-heart .makati-icon-heart {
  display: block;
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
  transition: transform 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.makati-card-heart .makati-icon-heart path {
  fill: transparent;
  transition: fill 0.25s ease, fill-opacity 0.25s ease;
}

.makati-card:hover .makati-card-heart,
.makati-card-heart:hover {
  color: #ef4444;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.2), 0 0 0 1px rgba(239, 68, 68, 0.12);
  transform: scale(1.08);
}

.makati-card:hover .makati-card-heart .makati-icon-heart,
.makati-card-heart:hover .makati-icon-heart {
  transform: scale(1.06);
}

.makati-card:hover .makati-card-heart .makati-icon-heart path,
.makati-card-heart:hover .makati-icon-heart path {
  fill: currentColor;
  fill-opacity: 0.22;
}
.makati-card-body { padding: 12px 0 8px; flex-grow: 1; display: flex; flex-direction: column; min-width: 0; }
.makati-card-brand { font-size: 14px; font-weight: 700; color: #1e2939; margin: 0; min-width: 0; }
.makati-card-title {
  font-size: 15px; font-weight: 500; color: #4a5565; margin: 4px 0 0;
  line-height: 1.4; height: 36px; overflow: hidden; min-width: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.makati-card-price-old { font-size: 11px; color: #99a1af; text-decoration: line-through; margin-top: 8px; }
.makati-card-price-row { display: flex; align-items: baseline; gap: 6px; min-width: 0; flex-wrap: wrap; }
.makati-card-discount { font-size: 16px; font-weight: 700; color: #F15746; flex-shrink: 0; }
.makati-card-price { font-size: 16px; font-weight: 700; color: #000; min-width: 0; }
.makati-card-tags { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 4px; }
.makati-tag-blue { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; background: #155dfc; color: #fff; }
.makati-tag-red { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; border: 1px solid #F15746; color: #F15746; background: #fff; }

/* ── 2. 카테고리 슬라이드 띠배너 / 3. 단일 띠배너 ── */
.makati-wide-banner {
  width: 100%;
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.makati-cat-banner-slider {
  position: relative;
  width: 100%;
  height: var(--makati-cat-slide-h);
  border-radius: var(--makati-strip-radius);
  overflow: hidden;
  border: none;
  background: #f3f4f6;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.makati-wide-banner--img {
  width: 100%;
  height: var(--makati-strip-single-h);
  border-radius: var(--makati-strip-radius);
  overflow: hidden;
  border: none;
  background: #f3f4f6;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  padding: 0;
}

.makati-wide-photo,
.makati-cat-banner-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.makati-wide-banner h2 { font-size: 24px; font-weight: 900; margin: 0; }
.makati-wide-gray { background: #f3f4f6; border: 1px solid #e5e7eb; color: #6a7282; }
.makati-wide-red { background: #9f0712; color: #fff; }

@media (max-width: 768px) {
  .makati-cat-banner-slider {
    height: var(--makati-cat-slide-h-mobile);
    border-radius: var(--makati-strip-radius-mobile);
  }

  .makati-wide-banner--img {
    height: var(--makati-strip-single-h-mobile);
    border-radius: var(--makati-strip-radius-mobile);
  }

  .makati-wide-banner h2 { font-size: 16px; }
}

/* ── Live Section ── */
.makati-live { width: 100%; background: #000; border-top: 1px solid #27272a; }
.makati-live-head {
  border-bottom: 1px solid #27272a;
  background: linear-gradient(to right, #18181b, #000);
}
.makati-live-head-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.makati-live-title { font-size: 18px; font-weight: 700; color: #fff; margin: 0; display: flex; align-items: center; gap: 8px; }
.makati-live-badge {
  font-size: 10px; font-weight: 700; color: #ff6568;
  background: rgba(251,44,54,.2); padding: 2px 8px; border-radius: 9999px;
  border: 1px solid rgba(251,44,54,.3); animation: makati-pulse 2s infinite;
}
.makati-live-count { display: none; font-size: 12px; color: #00d294; font-weight: 600; }
.makati-live-body { background: linear-gradient(to bottom, #09090b, #000); padding: 32px 0 48px; }
.makati-live-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: linear-gradient(to bottom, #18181b, #000);
  border: 1px solid #000; border-radius: 12px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.makati-live-card:hover { border-color: #000; transform: translateY(-4px); box-shadow: 0 20px 25px rgba(0,0,0,.3); }
.makati-live-rank {
  position: absolute; top: 12px; left: 12px; z-index: 10;
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: #fff;
  background: linear-gradient(to bottom right, #f99c00, #e40014);
  box-shadow: 0 4px 6px rgba(0,0,0,.2);
}
.makati-live-img {
  position: relative;
  aspect-ratio: 1;
  margin: 8px;
  border-radius: 8px;
  border: 1px solid #000;
  overflow: hidden;
  background: #27272a;
}
.makati-live-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}
.makati-live-info { padding: 8px 16px 16px; }
.makati-live-brand { font-size: 10px; color: #71717b; font-weight: 900; text-transform: uppercase; margin: 0; }
.makati-live-name { font-size: 13px; font-weight: 700; color: #d4d4d8; margin: 6px 0 0; min-height: 36px; line-height: 1.375; overflow: hidden; }
.makati-live-price { margin-top: 12px; font-size: 18px; font-weight: 900; color: #fff; }
.makati-live-price small { font-size: 11px; color: #71717b; font-weight: 700; }

@media (min-width: 768px) {
  .makati-live-title { font-size: 20px; }
  .makati-live-count { display: block; }
}

@keyframes makati-pulse { 50% { opacity: .5; } }

/* ── PHOTO Reviews ── */
.photo-review-wrap {
  padding: 80px 0;
 
  background-color: #fff;
}

.photo-review-wrap .pr-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.photo-review-wrap .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.photo-review-wrap .section-title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.photo-review-wrap .decorative-line {
  width: 50px;
  height: 3px;
  background: #ab7c01;
  margin: 16px auto 0;
}

.photo-review-wrap .pr-section-desc {
  color: #888;
  margin: 20px 0 0;
  font-size: 15px;
}

.photo-review-wrap .pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.photo-review-wrap .pr-card {
  background: #fff;
  border: 2px solid #ab7c0121;
  border-radius: 20px;
  padding: 35px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  height: 100%;
  box-sizing: border-box;
}

.photo-review-wrap .pr-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.photo-review-wrap .pr-top-info {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
  width: 100%;
}

.photo-review-wrap .pr-user-name {
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.photo-review-wrap .pr-date {
  font-size: 14px;
  color: #777;
  font-weight: 400;
}

.photo-review-wrap .pr-img-circle {
  max-width: 100%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 25px;
  flex-shrink: 0;
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 rgb(179 179 179);
}

.photo-review-wrap .pr-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.photo-review-wrap .pr-card:hover .pr-img-circle img {
  transform: scale(1.1);
}

.photo-review-wrap .pr-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #757575;
  word-break: keep-all;
  padding: 0 5px;
  margin-bottom: 10px;
  flex-grow: 1;
  font-weight: 500;
}

.photo-review-wrap .pr-stars {
  color: #f4c150;
  font-size: 17px;
  letter-spacing: 2px;
}

#photo {
  scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
  .photo-review-wrap .pr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .photo-review-wrap {
    padding: 48px 0;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .photo-review-wrap .section-title {
    font-size: 24px;
  }

  .photo-review-wrap .pr-grid {
    grid-template-columns: 1fr;
  }

  .photo-review-wrap .pr-img-circle {
    width: 180px;
    height: 180px;
  }

  #photo {
    scroll-margin-top: 40px;
  }
}

/* ── Footer ── */
.makati-footer { background: #fff; border-top: 1px solid #e5e7eb; padding: 48px 0 96px; }
.makati-footer-inner { display: flex; flex-direction: column; gap: 40px; }
.makati-footer h4 { color: #155dfc; font-weight: 700; font-size: 14px; margin: 0; }
.makati-footer-phone { font-size: 24px; font-weight: 900; color: #155dfc; margin-top: 8px; }
.makati-footer-links { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; font-weight: 700; color: #4a5565; margin-bottom: 24px; }
.makati-footer-links .bold { font-weight: 900; color: #000; }
.makati-footer-info { font-size: 12px; color: #6a7282; line-height: 1.625; }
.makati-footer-info p { margin: 4px 0; }
.makati-footer-info .company { font-weight: 700; color: #364153; }
.makati-faq-btn {
  margin-top: 16px; background: #000; color: #fff; font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 6px; border: none; cursor: pointer;
}

@media (min-width: 768px) {
  .makati-footer { padding-bottom: 48px; }
  .makati-footer-inner { flex-direction: row; }
  .makati-footer-left { width: 33.333%; }
  .makati-footer-right { width: 66.666%; }
}

/* ── Bottom Nav (mobile) ── */
.makati-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: #fff; border-top: 1px solid #f3f4f6;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.makati-bottom-nav-inner { display: flex; height: 56px; }
.makati-bottom-nav button,
.makati-bottom-nav a.makati-bottom-home {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; background: none; border: none; color: #99a1af; cursor: pointer; font-size: 9px; font-weight: 700;
  text-decoration: none;
}
.makati-bottom-nav button:active,
.makati-bottom-nav a.makati-bottom-home:active { color: #155dfc; }

/* ── Category Page ── */
.makati-cat-page {
  padding-bottom: 32px;
}

.makati-cat-top {
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
}

.makati-cat-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 20px 0 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.makati-cat-tabs::-webkit-scrollbar { display: none; }

.makati-cat-tabs a {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #4a5565;
  text-decoration: none;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.makati-cat-tabs a:hover {
  border-color: #d1d5dc;
  color: #101828;
}
.makati-cat-tabs a.is-active {
  background: #101828;
  border-color: #101828;
  color: #fff;
}

.makati-cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
}

.makati-cat-chip {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #4a5565;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.makati-cat-chip:hover {
  border-color: #155dfc;
  color: #155dfc;
}
.makati-cat-chip.is-active {
  background: #fff;
  border-color: #101828;
  color: #101828;
}

.makati-cat-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  flex-wrap: wrap;
}

.makati-cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.makati-cat-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #364153;
  background: #fff;
  border: 1px solid #d1d5dc;
  border-radius: 8px;
  cursor: pointer;
}
.makati-cat-filter-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6a7282;
}

.makati-cat-banner-wrap {
  padding-top: 4px;
  padding-bottom: 4px;
}

.makati-cat-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease;
  text-decoration: none;
}

.makati-cat-banner-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.makati-cat-banner-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 16px;
}
.makati-cat-banner-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: #d1d5dc;
  cursor: pointer;
}
.makati-cat-banner-dot.is-active {
  width: 18px;
  background: #101828;
}

.makati-cat-popular {
  margin-top: 8px;
  margin-bottom: 40px;
}

.makati-cat-popular-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.makati-cat-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff7ed;
  color: #f97316;
  font-size: 14px;
  line-height: 1;
}

.makati-cat-promo-wrap {
  margin-bottom: 40px;
}

.makati-cat-all-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.makati-cat-result {
  font-size: 15px;
  font-weight: 700;
  color: #101828;
  margin: 0;
}
.makati-cat-result strong {
  color: #155dfc;
  font-weight: 800;
}

.makati-cat-sort {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #364153;
  background: #fff;
  border: 1px solid #d1d5dc;
  border-radius: 8px;
  cursor: pointer;
}
.makati-cat-sort::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6a7282;
}

.makati-cat-products {
  margin-bottom: 48px;
}

.makati-cat-section-title {
  font-size: 20px;
  font-weight: 800;
  color: #101828;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.makati-card-soldout {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.makati-tag-stock {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #f59e0b;
  color: #d97706;
  background: #fff;
}

.makati-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.makati-page-btn,
.makati-page-num {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #4a5565;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.makati-page-btn:hover,
.makati-page-num:hover {
  border-color: #d1d5dc;
  color: #101828;
}
.makati-page-num.is-active {
  background: #101828;
  border-color: #101828;
  color: #fff;
}
.makati-page-ellipsis {
  min-width: 24px;
  text-align: center;
  color: #99a1af;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .makati-cat-tabs a {
    padding: 8px 14px;
    font-size: 13px;
  }

  .makati-cat-chip,
  .makati-cat-filter-btn,
  .makati-cat-sort {
    font-size: 12px;
    padding: 7px 12px;
  }

  .makati-cat-section-title {
    font-size: 18px;
  }
}
