/* ============================================================
   シルクローズ ランジェリー - Silk Rose Lingerie
   Main Stylesheet
   ============================================================ */

/* --- CSS Reset / Normalize --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- Root Variables --- */
:root {
  --primary: #F7B7C9;
  --primary-dark: #D4547A;
  --primary-light: #FFF0F4;
  --accent: #C71585;
  --accent-light: #E8A0BF;
  --text-dark: #4A1628;
  --text-medium: #7A3550;
  --text-light: #A06070;
  --bg-main: #FFF8FA;
  --bg-card: #FFFFFF;
  --border: #F0C0D0;
  --gold: #C9A86C;
  --white: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(212, 84, 122, 0.10);
  --shadow-md: 0 4px 20px rgba(212, 84, 122, 0.14);
  --shadow-lg: 0 8px 32px rgba(212, 84, 122, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;

  --font-base: 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'Meiryo', 'MS PGothic', sans-serif;
  --font-heading: 'Hiragino Mincho Pro', 'Yu Mincho', 'MS PMincho', Georgia, serif;
}

/* --- Base Styles --- */
body {
  font-family: var(--font-base);
  background-color: var(--bg-main);
  color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

p {
  color: var(--text-medium);
  line-height: 1.8;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(212, 84, 122, 0.12);
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.site-header .logo span {
  color: var(--primary-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-medium);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-dark);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a:hover::after {
  width: 100%;
}

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

.header-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-medium);
  font-size: 1.3rem;
  position: relative;
  transition: color var(--transition);
}

.header-icon-btn:hover {
  color: var(--accent);
}

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

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-medium);
  font-size: 1rem;
  transition: color var(--transition);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #FFE0EA 0%, #F7B7C9 40%, #D4547A 100%);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23ffffff' fill-opacity='0.15'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(74, 22, 40, 0.25);
  letter-spacing: 0.04em;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Section Headings --- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.section-heading .subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.section-heading .underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-full);
  margin: 0 auto;
}

/* --- Category Grid --- */
.category-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

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

.category-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--primary-light);
}

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

.category-card-body h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.category-card-body p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* --- Product Grid --- */
.product-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Product Card --- */
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-card-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
}

.product-price .original-price {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
}

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

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

.rating-count {
  font-size: 0.78rem;
  color: var(--text-light);
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-add-cart {
  margin-top: auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  box-shadow: 0 4px 14px rgba(199, 21, 133, 0.3);
  transform: translateY(-1px);
}

/* Sale Badge */
.badge-sale {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #E53935;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
  letter-spacing: 0;
}

/* New Badge */
.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

/* Size Selector */
.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-medium);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--primary-dark);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.size-btn.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Color Swatches */
.color-swatches {
  display: flex;
  gap: 8px;
  align-items: center;
}

.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.swatch:hover,
.swatch.active {
  border-color: var(--accent);
  transform: scale(1.15);
}

/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  box-shadow: 0 6px 20px rgba(199, 21, 133, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  border-radius: var(--radius-full);
  padding: 11px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-danger {
  background: #E53935;
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-danger:hover {
  background: #C62828;
  box-shadow: 0 4px 14px rgba(229, 57, 53, 0.35);
  transform: translateY(-2px);
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(212, 84, 122, 0.15);
}

.form-control::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}

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 d='M1 1l5 5 5-5' stroke='%23A06070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* --- Alerts --- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.alert-success {
  background: #F0FFF4;
  border: 1px solid #A8E6C0;
  color: #2D6A4F;
}

.alert-warning {
  background: #FFFEF0;
  border: 1px solid #F7DC8A;
  color: #7A5E00;
}

.alert-error {
  background: #FFF0F0;
  border: 1px solid #FFAAAA;
  color: #B00020;
}

.alert-info {
  background: var(--primary-light);
  border: 1px solid var(--border);
  color: var(--text-medium);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: var(--text-dark);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
}

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

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-light);
  padding: 14px 0;
  flex-wrap: wrap;
}

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

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

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

.breadcrumb .current {
  color: var(--text-medium);
  font-weight: 500;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-medium);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.page-btn:hover,
.page-btn.active {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(74, 22, 40, 0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(3px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.96) translateY(10px);
  transition: transform var(--transition);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--accent);
}

.modal h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

/* --- Live Chat Widget --- */
.chat-launcher {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 84, 122, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  transition: all var(--transition);
}

.chat-launcher:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(212, 84, 122, 0.55);
}

.chat-launcher .online-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  background: #22C55E;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.chat-window {
  position: fixed;
  bottom: 102px;
  right: 28px;
  width: 350px;
  height: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1499;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  transform-origin: bottom right;
}

.chat-window.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  color: var(--white);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-agent-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-agent-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1px;
}

.chat-agent-status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

.chat-close-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
}

.chat-close-btn:hover {
  color: var(--white);
}

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

.chat-messages::-webkit-scrollbar {
  width: 4px;
}

.chat-msg {
  max-width: 82%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

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

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

.chat-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.6;
}

.chat-msg.agent .chat-bubble {
  background: var(--white);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-time {
  font-size: 0.7rem;
  color: var(--text-light);
  padding: 0 4px;
}

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

.chat-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 9px 14px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}

.chat-input:focus {
  border-color: var(--primary-dark);
}

.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 10px rgba(212, 84, 122, 0.4);
}

/* --- Footer --- */
.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(247, 183, 201, 0.2);
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

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

.footer-hours {
  background: rgba(247, 183, 201, 0.1);
  border: 1px solid rgba(247, 183, 201, 0.2);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 8px;
}

.footer-hours h5 {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.footer-hours p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* --- Lifestyle Section --- */
.lifestyle-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lifestyle-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lifestyle-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.lifestyle-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.lifestyle-content p {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 24px;
}

/* --- Blog Grid --- */
.blog-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.blog-card-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* --- FAQ Accordion --- */
.faq-section {
  padding: 60px 24px;
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary-dark);
  transition: transform var(--transition);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
  background: var(--primary-light);
}

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

.faq-answer-inner {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* --- Size Chart Table --- */
.size-chart-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.size-chart {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 0.9rem;
}

.size-chart th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}

.size-chart td {
  padding: 12px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-medium);
}

.size-chart tr:last-child td {
  border-bottom: none;
}

.size-chart tr:nth-child(even) td {
  background: var(--primary-light);
}

/* --- Cart Table --- */
.cart-table {
  width: 100%;
  font-size: 0.9rem;
}

.cart-table th {
  background: var(--primary-light);
  color: var(--text-medium);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

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

.cart-table tr:last-child td {
  border-bottom: none;
}

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

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

.cart-qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cart-qty-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary-dark);
}

/* --- Order Confirmation --- */
.order-confirmation {
  max-width: 600px;
  margin: 60px auto;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.order-check-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 24px;
}

.order-number {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  margin: 16px 0;
}

/* --- Star Rating --- */
.star-rating {
  display: inline-flex;
  gap: 2px;
}

.star-rating .star {
  font-size: 1rem;
  color: #DDD;
  cursor: pointer;
  transition: color var(--transition);
}

.star-rating .star.filled,
.star-rating .star:hover ~ .star,
.star-rating:hover .star {
  color: var(--gold);
}

/* Static display stars */
.rating-stars .star-filled { color: var(--gold); }
.rating-stars .star-half { color: var(--gold); opacity: 0.6; }
.rating-stars .star-empty { color: #DDD; }

/* --- Loading Spinner --- */
.spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 240, 244, 0.85);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--primary-light);
  border-top-color: var(--primary-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Back to Top Button --- */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 1400;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* --- Size Guide Tabs --- */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  gap: 0;
}

.tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

.tab-btn:hover {
  color: var(--primary-dark);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease both;
}

.slide-up {
  animation: slideUp 0.6s ease both;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* --- Utility Classes --- */
.text-pink { color: var(--primary-dark); }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-light); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }
.pt-5 { padding-top: 48px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 16px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* --- Responsive Breakpoints --- */

/* Large screens */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Medium screens */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lifestyle-img img {
    height: 320px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    padding: 70px 20px 60px;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .section-heading h2 {
    font-size: 1.6rem;
  }
  .chat-window {
    width: calc(100vw - 40px);
    right: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  .order-confirmation {
    padding: 28px 20px;
    margin: 32px 16px;
  }
  .modal {
    padding: 28px 20px;
  }
  .back-to-top {
    bottom: 110px;
    right: 16px;
  }
  .chat-launcher {
    bottom: 16px;
    right: 16px;
  }
  .chat-window {
    bottom: 90px;
    right: 16px;
    width: calc(100vw - 32px);
  }
}

/* ============================================================
   SUPPLEMENTARY STYLES FOR PAGES 1-10
   ============================================================ */

/* --- Body & Font --- */
body {
  font-family: 'Noto Serif JP', 'Hiragino Kaku Gothic Pro', 'Yu Gothic', 'Meiryo', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
}

/* --- Section Backgrounds --- */
.section {
  padding: 72px 0;
}
.section-pink {
  background: var(--primary-light);
  padding: 72px 0;
}

/* --- Section Headings --- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.section-heading p {
  color: var(--text-light);
  font-size: 1rem;
}
.section-heading .view-all-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, #FFE4EE 0%, var(--primary) 100%);
  padding: 64px 0 48px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 16px 0 12px;
}
.page-hero p {
  color: var(--text-medium);
  font-size: 1rem;
}

/* --- Hero Section --- */
.hero {
  display: flex;
  align-items: center;
  min-height: 75vh;
  background: linear-gradient(135deg, #FFE4EE 0%, var(--primary) 100%);
  padding: 60px 48px 60px max(24px, calc((100vw - 1200px) / 2 + 24px));
  gap: 48px;
  overflow: hidden;
}
.hero-text {
  flex: 1;
  max-width: 560px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-img-wrap {
  flex: 1;
  max-width: 540px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* --- Eyebrow Label --- */
.eyebrow-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

/* --- Lifestyle Grid adjustments --- */
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.lifestyle-grid.reverse {
  direction: rtl;
}
.lifestyle-grid.reverse > * {
  direction: ltr;
}
.lifestyle-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 18px;
}
.lifestyle-text p {
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 14px;
}
.lifestyle-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lifestyle-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* --- Category Grid --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
  display: block;
  color: var(--text-dark);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-light);
  border-color: var(--primary);
}
.category-icon { font-size: 2.2rem; margin-bottom: 10px; }
.category-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.category-desc { font-size: 0.78rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.5; }
.category-cta { font-size: 0.82rem; color: var(--primary-dark); font-weight: 600; }

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
}
.feature-icon-wrap { font-size: 2rem; margin-bottom: 12px; }
.feature-item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.feature-item p { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }

/* --- Reviews Grid --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: 0.88rem; color: var(--text-medium); line-height: 1.9; margin-bottom: 18px; font-style: italic; }
.review-author strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.review-author span { font-size: 0.78rem; color: var(--text-light); }

/* --- Sale Banner --- */
.sale-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--text-dark));
  padding: 64px 0;
  text-align: center;
}
.sale-banner-content {
  color: var(--white);
}
.sale-banner-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-bottom: 8px;
}
.sale-banner-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 10px;
}
.sale-banner-content p {
  opacity: 0.88;
  margin-bottom: 28px;
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--white);
  border-radius: var(--radius-full);
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* --- btn-outline standalone --- */
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  font-family: inherit;
}
.btn-outline:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* --- Product card img-wrap alias --- */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--primary-light);
  aspect-ratio: 3/4;
}
.product-img-wrap img, .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.badge-new { background: var(--primary-dark); color: var(--white); }
.badge-popular { background: var(--text-dark); color: var(--white); }
.badge-sale-tag { background: #E53935; color: var(--white); }
.product-category-label { font-size: 0.75rem; color: var(--primary-dark); margin-bottom: 2px; }
.product-sizes-info { font-size: 0.75rem; color: var(--text-light); }

/* --- Footer brand col --- */
.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-logo {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo:hover { color: var(--primary); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.social-icon {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.social-icon:hover { color: var(--primary); }
.footer-col address p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 5px;
  font-style: normal;
}
.footer-col address a { color: var(--primary); }
.footer-col address a:hover { color: var(--white); }
.footer-hours-box {
  background: rgba(247,183,201,0.12);
  border: 1px solid rgba(247,183,201,0.25);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 16px;
}
.footer-hours-title {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-hours-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white) !important;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* --- Contact page --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
}
.contact-card-icon { font-size: 2.5rem; margin-bottom: 14px; }
.contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.contact-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; line-height: 1.7; }
.contact-card a { color: var(--primary-dark); font-weight: 600; font-size: 0.95rem; display: block; }
.form-required { color: var(--primary-dark); }
.hours-banner-block {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, var(--primary-dark), var(--text-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.hours-banner-block .hours-icon { font-size: 3rem; flex-shrink: 0; }
.hours-banner-block h2 { font-size: 1.3rem; margin-bottom: 6px; }
.hours-banner-block .hours-big { font-size: 2.2rem; font-weight: 600; }
.hours-banner-block p { opacity: 0.85; font-size: 0.9rem; margin-top: 8px; }

/* --- Order page --- */
.order-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--primary-light);
  padding: 24px;
}
.o-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}
.o-step-num {
  width: 30px; height: 30px;
  background: var(--border);
  color: var(--text-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem;
}
.o-step.active .o-step-num { background: var(--primary-dark); color: var(--white); }
.o-step.done .o-step-num { background: var(--text-dark); color: var(--white); }
.o-step-label { font-size: 0.82rem; font-weight: 600; color: var(--text-light); }
.o-step.active .o-step-label { color: var(--primary-dark); }
.o-step.done .o-step-label { color: var(--text-dark); }
.o-step-line { width: 40px; height: 2px; background: var(--border); }
.order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
  padding: 48px 0;
}
.form-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.form-block-title {
  font-size: 1.05rem;
  font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  color: var(--text-dark);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(212,84,122,0.12);
}
.form-group textarea { resize: vertical; }
.input-row { display: flex; gap: 10px; }
.input-row input { flex: 1; }
.payment-radio-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.payment-radio-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.92rem; font-weight: 600;
  transition: all var(--transition);
}
.payment-radio-item:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
}
.payment-radio-item input { accent-color: var(--primary-dark); }
.cc-fields {
  background: var(--primary-light);
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-top: -6px;
}
.security-note { font-size: 0.78rem; color: var(--text-light); margin-top: 10px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; margin-top: 4px; }
.checkbox-row input { accent-color: var(--primary-dark); margin-top: 3px; flex-shrink: 0; }
.checkbox-row a { color: var(--primary-dark); text-decoration: underline; }
.order-summary-sticky {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}
.summary-title { font-size: 1.05rem; font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.summary-item-row { display: flex; gap: 12px; margin-bottom: 14px; }
.summary-item-img { width: 58px; height: 58px; object-fit: cover; border-radius: var(--radius-sm); background: var(--primary-light); flex-shrink: 0; }
.summary-item-name { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.summary-item-meta { font-size: 0.78rem; color: var(--text-light); }
.summary-item-price { font-size: 0.9rem; font-weight: 600; color: var(--primary-dark); margin-top: 2px; }
.summary-totals { border-top: 1px solid var(--border); padding-top: 16px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.summary-total-row { font-weight: 700; font-size: 1.05rem; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 6px; }
.free-ship-note { font-size: 0.8rem; color: #2E7D32; background: #E8F5E9; padding: 8px 12px; border-radius: var(--radius-sm); margin-bottom: 16px; }
.sec-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.sec-badge { font-size: 0.74rem; background: var(--primary-light); padding: 5px 10px; border-radius: var(--radius-sm); color: var(--text-dark); }
.btn-full { width: 100%; display: block; text-align: center; padding: 14px; font-size: 1rem; }
.order-note-text { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 10px; }
.free-text-green { color: #2E7D32; font-weight: 600; }

/* --- Cart page --- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
}
.cart-table-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cart-row-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.cart-summary-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}
.cart-summary-box h2 { font-size: 1.05rem; font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.coupon-row { display: flex; gap: 8px; margin-bottom: 20px; }
.coupon-row input { flex: 1; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-family: inherit; font-size: 0.88rem; outline: none; }
.coupon-row input:focus { border-color: var(--primary-dark); }
.pay-icons { display: flex; gap: 10px; justify-content: center; font-size: 1.4rem; margin: 14px 0 6px; }
.secure-text { font-size: 0.78rem; color: var(--text-light); text-align: center; }

/* --- FAQ page --- */
.faq-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.faq-nav-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--primary-light);
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
  text-decoration: none;
}
.faq-nav-btn:hover, .faq-nav-btn.active {
  background: var(--primary-dark);
  color: var(--white);
  border-color: var(--primary-dark);
}
.faq-group { max-width: 860px; margin: 0 auto 56px; }
.faq-group-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 16px;
}
.faq-help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.faq-help-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
}
.faq-help-icon { font-size: 2rem; margin-bottom: 10px; }
.faq-help-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.faq-help-card p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 18px; }
.faq-quick-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; max-width: 700px; margin-left: auto; margin-right: auto; }
.faq-quick-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.faq-quick-link:hover { border-color: var(--primary); background: var(--primary-light); }
.faq-quick-icon { font-size: 1rem; flex-shrink: 0; }
.faq-quick-arrow { margin-left: auto; color: var(--primary-dark); font-weight: 600; }

/* --- Shipping page --- */
.free-ship-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--text-dark));
  padding: 36px 0;
}
.free-ship-banner .container {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
}
.free-ship-banner .banner-icon { font-size: 2.5rem; flex-shrink: 0; }
.free-ship-banner h2 { font-size: 1.4rem; margin-bottom: 4px; }
.free-ship-banner p { opacity: 0.88; }
.free-ship-banner .btn-white { margin-left: auto; white-space: nowrap; }
.ship-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.ship-table th { background: var(--primary-light); padding: 14px 16px; text-align: left; font-weight: 600; color: var(--text-dark); border: 1px solid var(--border); }
.ship-table td { padding: 12px 16px; border: 1px solid var(--border); color: var(--text-dark); }
.ship-table tr:hover td { background: var(--bg-main); }
.free-tag { background: #E8F5E9; color: #2E7D32; padding: 2px 8px; border-radius: 10px; font-size: 0.75rem; font-weight: 600; }
.table-note { font-size: 0.8rem; color: var(--text-light); margin-top: 10px; }
.ship-timeline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ship-step { flex: 1; min-width: 110px; text-align: center; }
.ship-step-icon { font-size: 1.8rem; margin-bottom: 8px; }
.ship-step h3 { font-size: 0.82rem; font-weight: 600; margin-bottom: 5px; }
.ship-step p { font-size: 0.76rem; color: var(--text-light); }
.ship-arrow { font-size: 1.2rem; color: var(--primary); align-self: center; padding: 0 4px; flex-shrink: 0; }
.region-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.region-card { background: var(--white); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.region-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; }
.region-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }
.region-price { color: var(--primary-dark); font-weight: 600; font-size: 0.85rem !important; margin-top: 8px !important; }
.ship-notes { background: var(--white); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); }
.ship-notes h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }
.ship-notes ul { list-style: disc; padding-left: 20px; }
.ship-notes li { font-size: 0.86rem; color: var(--text-light); margin-bottom: 7px; line-height: 1.7; }
.pack-features { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.pack-feature { font-size: 0.88rem; background: var(--primary-light); padding: 9px 14px; border-radius: var(--radius-sm); font-weight: 600; }

/* --- Size guide --- */
.measure-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.measure-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); text-align: center; }
.measure-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.measure-card h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }
.measure-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.7; }
.tab-wrapper { padding: 32px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.size-tip { background: var(--primary-light); padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--text-dark); margin-top: 16px; font-weight: 600; }
.size-cta { text-align: center; padding: 48px; background: var(--primary-light); border-radius: var(--radius-lg); }
.size-cta h2 { font-size: 1.5rem; margin-bottom: 12px; }
.size-cta p { color: var(--text-light); margin-bottom: 24px; }
.size-cta-btns { display: flex; gap: 16px; justify-content: center; }

/* --- Returns page --- */
.policy-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.policy-card { background: var(--white); border-radius: var(--radius-md); padding: 26px 18px; text-align: center; box-shadow: var(--shadow-sm); border-top: 3px solid var(--primary); }
.policy-icon { font-size: 2rem; margin-bottom: 10px; }
.policy-card h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.policy-card p { font-size: 0.82rem; color: var(--text-light); }
.return-steps { display: flex; flex-direction: column; gap: 20px; }
.return-step { display: flex; gap: 20px; background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.step-num-circle {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; font-weight: 600;
  flex-shrink: 0;
}
.return-step h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.return-step p { font-size: 0.84rem; color: var(--text-light); line-height: 1.8; }
.exchange-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.exchange-col { background: var(--white); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.exchange-col h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 10px; }
.exchange-col p { font-size: 0.84rem; color: var(--text-light); line-height: 1.8; margin-bottom: 10px; }
.non-return-list { display: flex; flex-direction: column; gap: 14px; }
.non-return-item { display: flex; gap: 16px; background: var(--white); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); }
.non-return-x { font-size: 1.3rem; color: #E53935; font-weight: 700; flex-shrink: 0; }
.non-return-item h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.non-return-item p { font-size: 0.83rem; color: var(--text-light); }

/* --- About timeline --- */
.about-timeline { position: relative; padding-left: 40px; max-width: 760px; margin: 0 auto; }
.about-timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: var(--primary); }
.timeline-entry { position: relative; margin-bottom: 36px; }
.timeline-year-badge {
  position: absolute;
  left: -52px;
  top: 6px;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.76rem; font-weight: 600;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
}
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -27px; top: 10px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-entry-body { background: var(--white); border-radius: var(--radius-md); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.timeline-entry-body h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.timeline-entry-body p { font-size: 0.84rem; color: var(--text-light); line-height: 1.8; }

/* --- Store info layout --- */
.store-info-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 32px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.88rem; vertical-align: top; }
.info-table th { font-weight: 600; color: var(--text-dark); width: 140px; white-space: nowrap; }
.info-table td { color: var(--text-light); }
.info-table a { color: var(--primary-dark); }
.hours-highlight { color: var(--primary-dark); font-size: 1rem; }

/* --- Founder quote --- */
.founder-quote {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin: 32px auto 0;
  border-left: 4px solid var(--primary);
}
.founder-quote p { font-size: 1rem; color: var(--text-medium); line-height: 2.1; font-style: italic; margin-bottom: 14px; }
.founder-quote footer { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); }
.founder-quote footer strong { display: block; font-size: 0.95rem; color: var(--text-dark); }
.founder-quote footer span { font-size: 0.82rem; color: var(--text-light); }

/* --- Privacy / Legal --- */
.legal-doc { max-width: 860px; margin: 0 auto; }
.legal-intro { background: var(--primary-light); border-radius: var(--radius-md); padding: 26px; margin-bottom: 36px; font-size: 0.9rem; line-height: 1.9; }
.legal-sec { margin-bottom: 36px; }
.legal-sec h2 { font-size: 1.1rem; font-weight: 600; padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.legal-sec p, .legal-sec li { font-size: 0.87rem; color: var(--text-medium); line-height: 1.9; margin-bottom: 10px; }
.legal-sec ol { list-style: decimal; padding-left: 22px; }
.legal-sec ul { list-style: disc; padding-left: 22px; }
.legal-sec li { margin-bottom: 6px; }
.legal-sec strong { color: var(--text-dark); }
.contact-info-box { background: var(--primary-light); border-radius: var(--radius-md); padding: 22px; margin-top: 14px; }
.contact-info-box p { font-size: 0.87rem; margin-bottom: 6px !important; }
.legal-footer-note { background: var(--primary-light); border-radius: var(--radius-md); padding: 22px; margin-top: 40px; font-size: 0.84rem; color: var(--text-light); }
.legal-footer-note p { margin-bottom: 4px; }

/* --- Dual lifestyle images --- */
.two-lifestyle-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lifestyle-img-card img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-md); }
.lifestyle-img-card p { text-align: center; font-size: 0.84rem; color: var(--text-light); margin-top: 10px; }

/* --- Breadcrumb fix --- */
.breadcrumb span { color: var(--text-light); }

/* --- Responsive additions --- */
@media (max-width: 1100px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; padding: 48px 24px; }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-img-wrap { max-width: 100%; width: 100%; }
  .lifestyle-grid { grid-template-columns: 1fr; gap: 32px; }
  .lifestyle-grid.reverse { direction: ltr; }
  .lifestyle-img img { height: 280px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .policy-cards { grid-template-columns: repeat(2, 1fr); }
  .exchange-cols { grid-template-columns: 1fr; }
  .region-cards { grid-template-columns: 1fr; }
  .measure-cards { grid-template-columns: repeat(2, 1fr); }
  .faq-help-cards { grid-template-columns: 1fr; }
  .store-info-layout { grid-template-columns: 1fr; }
  .hours-banner-block { flex-direction: column; text-align: center; }
  .two-lifestyle-imgs { grid-template-columns: 1fr; }
  .ship-timeline { flex-direction: column; align-items: flex-start; }
  .about-timeline { padding-left: 32px; }
}
@media (max-width: 640px) {
  .section, .section-pink { padding: 48px 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .o-step-line { display: none; }
  .order-steps-bar { flex-wrap: wrap; gap: 8px; }
  .policy-cards { grid-template-columns: 1fr; }
  .measure-cards { grid-template-columns: 1fr; }
  .free-ship-banner .container { flex-direction: column; text-align: center; }
  .free-ship-banner .btn-white { margin-left: 0; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
