/* Crystal Brook Trail - Women's Robes Online Store | スタイルシート */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  --red: #E8192C;
  --red-dark: #C0001A;
  --red-hover: #FF2D42;
  --red-light: #FFF0F1;
  --tiffany: #0ABAB5;
  --tiffany-dark: #009490;
  --tiffany-hover: #12CECA;
  --tiffany-light: #E0F7F6;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray: #6B6B6B;
  --gray-light: #9E9E9E;
  --light-bg: #F8F8F8;
  --border: #E0E0E0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }
input, textarea, select { outline: none; font-family: inherit; }

/* ===== LAYOUT ===== */
.site-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.top-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.top-bar a { color: var(--tiffany); }

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--tiffany-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-sub {
  font-size: 10px;
  color: var(--tiffany);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

.header-search {
  flex: 1;
  max-width: 400px;
  display: flex;
  align-items: center;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 16px;
  gap: 8px;
}

.header-search input {
  flex: 1;
  background: none;
  border: none;
  font-size: 14px;
  color: var(--black);
}

.header-search input::placeholder { color: var(--gray-light); }

.header-search button {
  background: none;
  color: var(--gray);
  font-size: 16px;
}

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

.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  color: var(--black);
  font-size: 11px;
  transition: color 0.3s;
  position: relative;
}

.header-action-btn:hover { color: var(--red); }

.header-action-btn svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* MAIN LAYOUT with Sidebar */
.main-layout {
  display: flex;
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  gap: 30px;
}

/* LEFT SIDEBAR NAVIGATION */
.sidebar-nav {
  width: 240px;
  flex-shrink: 0;
  padding: 30px 0;
}

.sidebar-sticky {
  position: sticky;
  top: 90px;
}

.sidebar-section {
  margin-bottom: 28px;
}

.sidebar-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 0 10px 0;
  border-bottom: 2px solid var(--tiffany);
  margin-bottom: 12px;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--gray);
  transition: all 0.25s;
  border-left: 3px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: var(--tiffany-light);
  color: var(--tiffany-dark);
  border-left-color: var(--tiffany);
}

.sidebar-menu a.active { font-weight: 600; }

.sidebar-menu a svg { width: 16px; height: 16px; flex-shrink: 0; }

.sidebar-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: white;
  text-align: center;
}

.sidebar-banner p { font-size: 13px; opacity: 0.9; margin-bottom: 10px; }
.sidebar-banner strong { font-size: 20px; font-family: 'Playfair Display', serif; display: block; margin-bottom: 8px; }

.sidebar-banner .btn-sm {
  background: white;
  color: var(--red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  min-width: 0;
  padding: 30px 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232,25,44,0.35);
}

.btn-tiffany {
  background: var(--tiffany);
  color: white;
  border-color: var(--tiffany);
}

.btn-tiffany:hover {
  background: var(--tiffany-dark);
  border-color: var(--tiffany-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(10,186,181,0.35);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: white;
}

.btn-outline-tiffany {
  background: transparent;
  color: var(--tiffany);
  border-color: var(--tiffany);
}

.btn-outline-tiffany:hover {
  background: var(--tiffany);
  color: white;
}

.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-block { width: 100%; }

/* SECTION HEADINGS */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--tiffany);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-title span { color: var(--red); }

.section-desc {
  font-size: 15px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

/* PRODUCT CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 1;
}

.badge-new { background: var(--tiffany); color: white; }
.badge-sale { background: var(--red); color: white; }
.badge-popular { background: var(--black); color: white; }

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1;
}

.product-wishlist:hover { background: var(--red-light); color: var(--red); }

.product-card-body {
  padding: 16px;
}

.product-category-tag {
  font-size: 11px;
  color: var(--tiffany);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-name a:hover { color: var(--red); }

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

.stars { color: #FFB800; font-size: 13px; }
.rating-count { font-size: 12px; color: var(--gray-light); }

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
}

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

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

.btn-add-cart {
  flex: 1;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.btn-add-cart:hover { background: var(--red-dark); }

.btn-quick-view {
  background: var(--tiffany-light);
  color: var(--tiffany-dark);
  border: none;
  border-radius: 20px;
  padding: 9px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  white-space: nowrap;
}

.btn-quick-view:hover { background: var(--tiffany); color: white; }

/* BREADCRUMBS */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--tiffany); }
.breadcrumbs a:hover { color: var(--tiffany-dark); }
.breadcrumbs span { color: var(--gray); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--tiffany-light) 0%, var(--red-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(10,186,181,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.form-label span { color: var(--red); }

.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--tiffany);
  box-shadow: 0 0 0 3px rgba(10,186,181,0.12);
}

.form-control::placeholder { color: var(--gray-light); }

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

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

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

/* CART */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--border);
}

.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-item-img { width: 70px; height: 90px; object-fit: cover; border-radius: var(--radius); }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-flex;
}

.cart-qty button {
  background: none;
  font-size: 18px;
  color: var(--gray);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty button:hover { color: var(--red); }
.cart-qty span { font-weight: 600; min-width: 24px; text-align: center; }

/* CART SUMMARY */
.cart-summary {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.cart-summary-row:last-of-type { border-bottom: none; }

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  border-top: 2px solid var(--border);
  margin-top: 8px;
}

/* NOTIFICATION */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--tiffany);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(10,186,181,0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification.show { transform: translateY(0); opacity: 1; }

/* FOOTER */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  margin-top: auto;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-main { color: white; margin-bottom: 4px; }
.footer-brand .logo-sub { color: var(--tiffany); }
.footer-brand p { font-size: 14px; margin-top: 14px; line-height: 1.8; opacity: 0.75; }

.footer-hours {
  background: rgba(10,186,181,0.1);
  border: 1px solid rgba(10,186,181,0.25);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
}

.footer-hours-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--tiffany);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-hours-time {
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.footer-hours-note { font-size: 12px; opacity: 0.7; margin-top: 2px; }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  opacity: 0.75;
  transition: all 0.3s;
}

.footer-links a:hover { opacity: 1; color: var(--tiffany); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-contact-item strong { color: white; }
.footer-contact-item span { opacity: 0.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { opacity: 1; color: var(--tiffany); }

/* TAGS */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.tag-tiffany { background: var(--tiffany-light); color: var(--tiffany-dark); }
.tag-red { background: var(--red-light); color: var(--red); }

/* ACCORDION */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover { background: var(--tiffany-light); }
.accordion-header.active { background: var(--tiffany-light); color: var(--tiffany-dark); }

.accordion-body {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

.accordion-body.open { display: block; }
.accordion-arrow { transition: transform 0.3s; font-size: 18px; color: var(--tiffany); }
.accordion-header.active .accordion-arrow { transform: rotate(180deg); }

/* STARS */
.stars-input { display: flex; gap: 4px; }
.stars-input span { font-size: 24px; cursor: pointer; color: var(--border); transition: color 0.2s; }
.stars-input span.active,
.stars-input span:hover { color: #FFB800; }

/* LIVE CHAT */
.live-chat-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: var(--tiffany);
  color: white;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(10,186,181,0.45);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
}

.live-chat-btn:hover {
  background: var(--tiffany-dark);
  transform: translateY(-2px);
}

.chat-dot {
  width: 8px;
  height: 8px;
  background: #4DFF91;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* CHAT PANEL */
.chat-panel {
  position: fixed;
  bottom: 90px;
  left: 30px;
  width: 320px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-panel.open { display: flex; }

.chat-header {
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-dark) 100%);
  color: white;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.chat-info strong { display: block; font-size: 14px; }
.chat-info span { font-size: 12px; opacity: 0.85; }

.chat-messages {
  flex: 1;
  padding: 16px;
  height: 200px;
  overflow-y: auto;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.msg-bot {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 2px;
  align-self: flex-start;
}

.msg-user {
  background: var(--tiffany);
  color: white;
  border-radius: 12px 12px 2px 12px;
  align-self: flex-end;
}

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

.chat-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: inherit;
}

.chat-send {
  background: var(--tiffany);
  color: white;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.chat-send:hover { background: var(--tiffany-dark); }

/* HERO BANNER */
.hero-banner {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 60%, #2A0A0F 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  max-width: 500px;
  color: white;
}

.hero-tag {
  display: inline-block;
  background: var(--tiffany);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title span { color: var(--tiffany); }

.hero-desc { font-size: 16px; opacity: 0.85; margin-bottom: 28px; line-height: 1.7; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* CATEGORY CARDS */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 0.3s;
}

.category-card:hover { transform: translateY(-4px); }

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

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
}

.category-card-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.category-card-count { font-size: 12px; opacity: 0.8; }
.category-card-link { font-size: 12px; color: var(--tiffany); font-weight: 600; margin-top: 6px; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: var(--tiffany);
  background: var(--tiffany-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--tiffany-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
}

.feature-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--gray); }

/* REVIEW CARDS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.3s;
}

.review-card:hover { box-shadow: var(--shadow-hover); }

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

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.review-info strong { display: block; font-size: 15px; }
.review-info span { font-size: 12px; color: var(--gray-light); }
.review-text { font-size: 14px; color: var(--gray); line-height: 1.7; }
.review-product { font-size: 12px; color: var(--tiffany); margin-top: 10px; font-weight: 600; }

/* POLICY CONTENT */
.policy-content { max-width: 800px; }
.policy-content h2 { font-size: 20px; font-weight: 700; color: var(--black); margin: 28px 0 12px; }
.policy-content h3 { font-size: 16px; font-weight: 600; color: var(--tiffany-dark); margin: 20px 0 8px; }
.policy-content p { font-size: 14px; color: var(--gray); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin: 10px 0 14px 20px; list-style: disc; }
.policy-content ul li { font-size: 14px; color: var(--gray); margin-bottom: 6px; line-height: 1.7; }

/* TABLE */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: var(--tiffany-light); color: var(--tiffany-dark); padding: 12px 16px; text-align: left; font-weight: 700; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: var(--light-bg); }

/* ABOUT */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
  color: white;
  font-weight: 700;
}

.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--tiffany); }
.team-desc { font-size: 13px; color: var(--gray); margin-top: 8px; }

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  margin: 40px 0;
}

.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; margin-bottom: 6px; }
.stat-label { font-size: 13px; opacity: 0.85; }

/* MOBILE HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s;
}

/* CONFIRMATION */
.confirmation-box {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--tiffany-light) 0%, var(--red-light) 100%);
  border-radius: var(--radius-lg);
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: var(--tiffany);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: white;
}

.confirmation-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.order-number {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sidebar-nav { display: none; }
  .sidebar-nav.mobile-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: white;
    z-index: 2000;
    padding: 20px;
    width: 280px;
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0,0,0,0.2);
  }
  .hamburger { display: flex; }
  .main-layout { padding: 0 16px; }
  .hero-title { font-size: 28px; }
  .hero-content { padding: 40px 30px; }
  .section-title { font-size: 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 28px; }
  .header-search { display: none; }
}

@media (max-width: 480px) {
  .hero-bg-img { width: 100%; opacity: 0.25; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
