/* ============================================
   Timber Harbor Gate - Shared Stylesheet
   ストッキング・タイツ専門店
   ============================================ */

:root {
  --bg-primary: #fdf8f3;
  --bg-pearl: #f5efe7;
  --pearl-white: #faf6f1;
  --pearl-shimmer: #ede4d8;
  --beige-light: #e8d5b8;
  --beige-mid: #d4b896;
  --beige-dark: #b89b7a;
  --beige-deep: #8a6b4e;
  --nav-bg: #2c1f16;
  --nav-text: #f0e4d0;
  --nav-hover: #d4b896;
  --nav-active: #c9a97a;
  --text-dark: #3a2e26;
  --text-mid: #6b5740;
  --text-light: #9a8470;
  --accent-gold: #c9a97a;
  --accent-pearl: #e8ddd0;
  --border-light: #e0d0bc;
  --border-mid: #c8b49a;
  --shadow: rgba(139, 107, 78, 0.15);
  --card-bg: #ffffff;
  --success: #6a9e7a;
  --error: #c97a7a;
  --sidebar-width: 240px;
  --header-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'MS Mincho', Georgia, serif;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ============================================
   LAYOUT
   ============================================ */

.site-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ============================================
   LEFT SIDEBAR NAVIGATION
   ============================================ */

.sidebar {
  width: var(--sidebar-width);
  background: var(--nav-bg);
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(212, 184, 150, 0.2);
  text-align: center;
}

.sidebar-logo a {
  display: block;
}

.sidebar-logo .logo-jp {
  font-size: 11px;
  color: var(--nav-hover);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 6px;
}

.sidebar-logo .logo-main {
  font-size: 15px;
  color: var(--nav-text);
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 1.3;
}

.sidebar-logo .logo-sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-top: 4px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.sidebar-nav {
  padding: 16px 0;
  flex: 1;
}

.sidebar-nav .nav-section-title {
  font-size: 9px;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 20px 6px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.sidebar-nav ul li a {
  display: block;
  padding: 10px 20px;
  color: var(--nav-text);
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.sidebar-nav ul li a:hover {
  background: rgba(212, 184, 150, 0.1);
  color: var(--nav-hover);
  border-left-color: var(--nav-hover);
}

.sidebar-nav ul li a.active {
  background: rgba(201, 169, 122, 0.15);
  color: var(--nav-active);
  border-left-color: var(--nav-active);
}

.sidebar-nav ul li a .nav-icon {
  display: inline-block;
  width: 18px;
  margin-right: 8px;
  text-align: center;
}

.sidebar-divider {
  height: 1px;
  background: rgba(212, 184, 150, 0.15);
  margin: 8px 20px;
}

.sidebar-cart-info {
  padding: 16px 20px;
  border-top: 1px solid rgba(212, 184, 150, 0.2);
}

.sidebar-cart-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nav-text);
  font-size: 13px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  padding: 10px 0;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.sidebar-cart-info a:hover {
  color: var(--nav-hover);
}

.cart-count-badge {
  background: var(--accent-gold);
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================================
   SITE HEADER (top bar in main content)
   ============================================ */

.site-header {
  background: var(--pearl-white);
  border-bottom: 1px solid var(--border-light);
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}

.header-breadcrumb {
  font-size: 12px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  letter-spacing: 0.5px;
}

.header-breadcrumb span {
  color: var(--border-mid);
  margin: 0 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--bg-pearl);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 6px 14px;
  gap: 8px;
}

.header-search input {
  border: none;
  background: none;
  font-size: 13px;
  color: var(--text-dark);
  width: 160px;
  outline: none;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.header-search button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 14px;
}

.header-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--beige-mid);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.header-cart-btn:hover {
  background: var(--beige-dark);
  color: #fff;
}

/* ============================================
   PAGE CONTENT WRAPPER
   ============================================ */

.page-content {
  padding: 40px;
  flex: 1;
}

/* ============================================
   PAGE HERO / BANNER
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--bg-pearl), var(--pearl-shimmer));
  border-radius: 12px;
  padding: 60px 50px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 184, 150, 0.3), transparent);
  border-radius: 50%;
}

.page-hero-title {
  font-size: 32px;
  color: var(--text-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}

.page-hero-title .en {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.page-hero-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================
   HOME HERO SLIDER / BANNER
   ============================================ */

.home-hero {
  position: relative;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.home-hero-slide.active {
  opacity: 1;
}

.home-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44, 31, 22, 0.65), transparent);
}

.home-hero-content {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.home-hero-content .hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--beige-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 12px;
}

.home-hero-content h1 {
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 400;
}

.home-hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 400px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
}

.hero-dot.active {
  background: #fff;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--beige-deep);
  color: #fff;
}

.btn-primary:hover {
  background: var(--nav-bg);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--beige-deep);
  border: 1.5px solid var(--beige-mid);
}

.btn-secondary:hover {
  background: var(--bg-pearl);
  border-color: var(--beige-dark);
}

.btn-accent {
  background: var(--accent-gold);
  color: #fff;
}

.btn-accent:hover {
  background: var(--beige-dark);
  color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-cart {
  background: var(--text-dark);
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 12px;
}

.btn-cart:hover {
  background: var(--beige-deep);
  color: #fff;
}

.btn-wishlist {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-mid);
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
}

.btn-wishlist:hover {
  background: var(--bg-pearl);
  border-color: var(--beige-dark);
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-header {
  margin-bottom: 30px;
}

.section-title {
  font-size: 24px;
  color: var(--text-dark);
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 14px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.section-title .en-title {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 10px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 107, 78, 0.2);
  border-color: var(--beige-mid);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-pearl);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--nav-bg);
  color: var(--nav-text);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.product-badge.sale {
  background: #c97a7a;
}

.product-badge.new {
  background: var(--accent-gold);
}

.product-img-actions {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(44, 31, 22, 0.85);
  transition: bottom 0.3s ease;
  display: flex;
  gap: 8px;
}

.product-card:hover .product-img-actions {
  bottom: 0;
}

.product-info {
  padding: 16px;
}

.product-name {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.product-name-en {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.stars {
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price-current {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.price-original {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-tax {
  font-size: 10px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.product-sizes {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.size-chip {
  font-size: 10px;
  padding: 3px 7px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  color: var(--text-mid);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.size-chip:hover, .size-chip.selected {
  border-color: var(--beige-dark);
  background: var(--bg-pearl);
  color: var(--text-dark);
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.category-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.3s;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 107, 78, 0.25);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 31, 22, 0.75), transparent 60%);
}

.category-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.category-info .cat-jp {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}

.category-info .cat-en {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--beige-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.category-info .cat-count {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-top: 4px;
}

/* ============================================
   FILTER / SORT BAR
   ============================================ */

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--pearl-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 24px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  color: var(--text-light);
  font-size: 12px;
}

.filter-btn {
  padding: 6px 14px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background: #fff;
  color: var(--text-mid);
  cursor: pointer;
  font-size: 12px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--beige-mid);
  border-color: var(--beige-mid);
  color: #fff;
}

.sort-select {
  padding: 6px 12px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: #fff;
  color: var(--text-mid);
  font-size: 12px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  cursor: pointer;
  outline: none;
}

/* ============================================
   FEATURES / BENEFITS BAR
   ============================================ */

.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 2px 8px var(--shadow);
}

.feature-item {
  background: var(--pearl-white);
  padding: 22px 20px;
  text-align: center;
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.feature-title {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.feature-desc {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  line-height: 1.5;
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 6px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  letter-spacing: 0.3px;
}

.form-label .required {
  color: var(--error);
  margin-left: 4px;
  font-size: 11px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--beige-dark);
  box-shadow: 0 0 0 3px rgba(184, 155, 122, 0.1);
}

.form-control::placeholder {
  color: var(--text-light);
  font-size: 13px;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b5740' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

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

.form-hint {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

/* ============================================
   CART
   ============================================ */

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
}

.cart-table th {
  background: var(--bg-pearl);
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 1px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  border-bottom: 1px solid var(--border-light);
}

.cart-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
  font-size: 14px;
}

.cart-product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.cart-product-name {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cart-product-meta {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-light);
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--text-mid);
}

.qty-btn:hover {
  background: var(--bg-pearl);
  border-color: var(--beige-mid);
}

.qty-display {
  font-size: 16px;
  color: var(--text-dark);
  min-width: 24px;
  text-align: center;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s;
}

.remove-btn:hover {
  color: var(--error);
}

.cart-summary {
  background: var(--pearl-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
  max-width: 380px;
  margin-left: auto;
}

.cart-summary-title {
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: 1px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 12px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.summary-row.total {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 600;
  padding-top: 14px;
  border-top: 1px solid var(--border-mid);
  margin-top: 14px;
  margin-bottom: 20px;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
}

.empty-cart-icon {
  font-size: 60px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.empty-cart h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-mid);
}

.empty-cart p {
  font-size: 14px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 24px;
}

/* ============================================
   CHECKOUT
   ============================================ */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
}

.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 4px;
}

.checkout-step {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 12px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  background: var(--bg-pearl);
  color: var(--text-light);
  position: relative;
  letter-spacing: 0.5px;
}

.checkout-step.active {
  background: var(--beige-deep);
  color: #fff;
}

.checkout-step.done {
  background: var(--beige-mid);
  color: #fff;
}

.checkout-section {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 20px;
}

.checkout-section-title {
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: 1px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.order-summary-sidebar {
  background: var(--pearl-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 80px;
}

.order-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.order-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.order-item-meta {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.order-item-price {
  font-size: 14px;
  color: var(--text-dark);
  flex-shrink: 0;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.payment-method {
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--text-mid);
}

.payment-method:hover {
  border-color: var(--beige-mid);
  background: var(--bg-pearl);
}

.payment-method.selected {
  border-color: var(--beige-dark);
  background: rgba(184, 155, 122, 0.1);
  color: var(--text-dark);
}

/* ============================================
   ORDER CONFIRMATION
   ============================================ */

.confirmation-box {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 60px 40px;
  max-width: 640px;
  margin: 0 auto;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-pearl), var(--pearl-shimmer));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  border: 2px solid var(--beige-mid);
}

.confirmation-title {
  font-size: 26px;
  color: var(--text-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.confirmation-number {
  font-size: 14px;
  color: var(--accent-gold);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.confirmation-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  max-width: 480px;
  margin: 0 auto 30px;
}

.confirmation-details {
  background: var(--bg-pearl);
  border-radius: 6px;
  padding: 20px;
  text-align: left;
  margin-bottom: 28px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 10px;
  color: var(--text-mid);
}

.detail-row .detail-val {
  color: var(--text-dark);
  font-weight: 500;
}

/* ============================================
   INFO PAGES (Policy, About, FAQ, etc.)
   ============================================ */

.content-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px var(--shadow);
}

.content-card h2 {
  font-size: 20px;
  color: var(--text-dark);
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--beige-light);
}

.content-card h3 {
  font-size: 16px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin: 24px 0 10px;
}

.content-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 14px;
}

.content-card ul, .content-card ol {
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  padding-left: 20px;
  margin-bottom: 14px;
}

.content-card ul {
  list-style: disc;
}

.content-card ol {
  list-style: decimal;
}

.content-card table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 13px;
  margin-bottom: 20px;
}

.content-card table th {
  background: var(--bg-pearl);
  padding: 10px 16px;
  text-align: left;
  color: var(--text-mid);
  border: 1px solid var(--border-light);
  font-weight: 500;
}

.content-card table td {
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  color: var(--text-mid);
}

.info-box {
  background: var(--bg-pearl);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-mid);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  background: var(--pearl-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-pearl);
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--accent-gold);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  border-top: 1px solid var(--border-light);
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px var(--shadow);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige-mid), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.review-date {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.review-product {
  font-size: 11px;
  color: var(--accent-gold);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.review-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--success);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-top: 10px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
}

.contact-info-card {
  background: var(--nav-bg);
  border-radius: 8px;
  padding: 36px;
  color: var(--nav-text);
}

.contact-info-card h3 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 184, 150, 0.2);
  color: var(--beige-light);
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.contact-item-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 184, 150, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.contact-item-value {
  color: var(--nav-text);
}

.business-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-top: 8px;
}

.business-hours-table td {
  padding: 6px 0;
  color: rgba(240, 228, 208, 0.8);
  border-bottom: 1px solid rgba(212, 184, 150, 0.1);
}

.business-hours-table td:last-child {
  text-align: right;
  color: var(--beige-light);
}

/* ============================================
   LIVE CHAT WIDGET
   ============================================ */

.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.chat-toggle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--beige-deep);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(138, 107, 78, 0.4);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle-btn:hover {
  background: var(--nav-bg);
  transform: scale(1.05);
}

.chat-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #c97a7a;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.chat-window {
  display: none;
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(44, 31, 22, 0.2);
  border: 1px solid var(--border-light);
}

.chat-widget.open .chat-window {
  display: block;
}

.chat-header {
  background: var(--nav-bg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-header-info {
  flex: 1;
}

.chat-header-name {
  font-size: 13px;
  color: var(--nav-text);
  margin-bottom: 2px;
}

.chat-header-status {
  font-size: 11px;
  color: var(--success);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-header-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
}

.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
}

.chat-messages {
  padding: 16px;
  height: 260px;
  overflow-y: auto;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 80%;
}

.chat-msg.agent {
  align-self: flex-start;
}

.chat-msg.user {
  align-self: flex-end;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  line-height: 1.6;
}

.chat-msg.agent .chat-bubble {
  background: #fff;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  border-radius: 4px 12px 12px 12px;
}

.chat-msg.user .chat-bubble {
  background: var(--beige-deep);
  color: #fff;
  border-radius: 12px 4px 12px 12px;
}

.chat-time {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 4px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

.chat-msg.user .chat-time {
  text-align: right;
}

.chat-input-area {
  padding: 12px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
  background: #fff;
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 13px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  outline: none;
  background: var(--bg-primary);
  color: var(--text-dark);
}

.chat-input:focus {
  border-color: var(--beige-mid);
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  background: var(--beige-deep);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.chat-send-btn:hover {
  background: var(--nav-bg);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--nav-bg);
  color: var(--nav-text);
  margin-left: var(--sidebar-width);
}

.footer-main {
  padding: 50px 40px 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .brand-name {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--beige-light);
}

.footer-brand .brand-name-jp {
  font-size: 13px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 16px;
}

.footer-brand .brand-desc {
  font-size: 13px;
  color: rgba(240, 228, 208, 0.7);
  line-height: 1.8;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 12px;
  color: rgba(240, 228, 208, 0.6);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-contact-link {
  font-size: 13px;
  color: var(--beige-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.footer-contact-link:hover {
  color: var(--nav-hover);
}

.footer-col h4 {
  font-size: 12px;
  color: var(--beige-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 184, 150, 0.2);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(240, 228, 208, 0.7);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--accent-gold);
}

.footer-col ul li a:hover {
  color: var(--nav-hover);
}

.footer-hours {
  font-size: 12px;
  color: rgba(240, 228, 208, 0.7);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  line-height: 1.8;
  background: rgba(212, 184, 150, 0.08);
  padding: 14px;
  border-radius: 6px;
  border: 1px solid rgba(212, 184, 150, 0.15);
}

.footer-hours .hours-title {
  color: var(--beige-light);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 184, 150, 0.15);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(240, 228, 208, 0.4);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  color: rgba(240, 228, 208, 0.4);
  font-size: 11px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--beige-light);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  box-shadow: 0 4px 16px rgba(44, 31, 22, 0.25);
  border-left: 3px solid var(--accent-gold);
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 280px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  border-left-color: var(--success);
}

.toast.error {
  border-left-color: var(--error);
}

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 12px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb-sep {
  color: var(--border-mid);
}

.breadcrumb .current {
  color: var(--text-mid);
}

/* ============================================
   TAGS
   ============================================ */

.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-pearl);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 11px;
  color: var(--text-mid);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin: 3px;
}

/* ============================================
   STATS / NUMBERS
   ============================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px 16px;
}

.stat-number {
  font-size: 32px;
  color: var(--beige-deep);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  letter-spacing: 1px;
}

/* ============================================
   PROMO BANNER
   ============================================ */

.promo-banner {
  background: linear-gradient(135deg, var(--nav-bg), #4a3528);
  color: #fff;
  border-radius: 8px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.promo-content .promo-label {
  font-size: 11px;
  color: var(--beige-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  margin-bottom: 6px;
}

.promo-content h3 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.promo-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-family: 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --sidebar-width: 200px;
  }
  .page-content {
    padding: 24px;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .features-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .sidebar.mobile-open {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
  }
  .site-footer {
    margin-left: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================
   UTILS
   ============================================ */

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.hidden { display: none; }
