/* ==========================================================================
   HWANG GEUM (황금모피) - Official Luxury Design System
   Visual Direction: Warm Luxury & Minimalism (since 1990)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Pretendard:wght@200;300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-main: #FAF8F5;
  --bg-card: #FFFFFF;
  --bg-warm: #F4EFE6;
  --bg-dark: #121212;
  --bg-charcoal: #1A1A1A;
  --bg-overlay: rgba(18, 18, 18, 0.75);

  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #8E8E8E;
  --text-light: #FAF8F5;
  --text-gold: #C5A880;

  --accent-gold: #C5A880;
  --accent-gold-hover: #B3956B;
  --accent-gold-soft: rgba(197, 168, 128, 0.15);
  --accent-border: #E8E2D8;
  --border-dark: #2C2C2C;

  /* Typography */
  --font-serif: 'Cinzel', 'Cormorant Garamond', serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;

  /* Spacing & Layout */
  --max-width: 1400px;
  --section-padding: 100px 24px;
  --header-height: 80px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background-color: var(--bg-dark);
  color: var(--accent-gold);
  font-size: 12px;
  padding: 8px 16px;
  letter-spacing: 0.06em;
  text-align: center;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.top-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-divider {
  opacity: 0.3;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--accent-border);
  z-index: 1000;
  transition: var(--transition);
}

.main-header.scrolled {
  height: 70px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

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

.brand-logo-en {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  line-height: 1;
}

.brand-logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  margin-top: 3px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.btn-header-store {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  border-radius: 2px;
}

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

.btn-header-reserve {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: var(--bg-dark);
  color: #fff;
  border-radius: 2px;
}

.btn-header-reserve:hover {
  background-color: var(--accent-gold-hover);
}

.btn-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.btn-mobile-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section (Cinematic Magazine Slide)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 36px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #181818 0%, #0c0c0c 100%);
  color: #fff;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease, transform 10s ease;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 15, 15, 0.88) 0%,
    rgba(15, 15, 15, 0.60) 45%,
    rgba(15, 15, 15, 0.25) 100%
  );
  z-index: 2;
}

.hero-slide-dots {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 40px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.hero-dot.active {
  background-color: var(--accent-gold);
  width: 60px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 80px 0;
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-label-thumb {
  height: 46px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(197, 168, 128, 0.5);
}

.hero-sub-text {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title span.italic {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-weight: 400;
  color: #EFE8DD;
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  word-break: keep-all;
}

.hero-desc strong {
  color: #FFF;
  font-weight: 600;
}

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

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--accent-gold);
  color: #121212;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 10px 25px rgba(197, 168, 128, 0.35);
}

.btn-primary-gold:hover {
  background-color: #E2C7A0;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(197, 168, 128, 0.45);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.btn-outline-light:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-footer-stats {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 600px;
}

.stat-item h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--accent-gold);
  font-weight: 600;
}

.stat-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ==========================================================================
   Section Common Headers
   ========================================================================== */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.section-sub {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  word-break: keep-all;
  line-height: 1.75;
}

/* ==========================================================================
   Brand Essence & Dual Perspective
   ========================================================================== */
.essence-section {
  background-color: #FFFFFF;
}

.essence-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.essence-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.essence-image-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.essence-image-box:hover img {
  transform: scale(1.03);
}

.essence-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 2px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  display: flex;
  align-items: center;
  gap: 14px;
}

.essence-badge-overlay img {
  height: 32px;
  width: auto;
}

.essence-badge-overlay p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.essence-text-box h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.essence-text-box p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
  word-break: keep-all;
}

.quote-highlight {
  padding-left: 20px;
  border-left: 3px solid var(--accent-gold);
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 20px;
  color: #2D2D2D;
  margin: 28px 0;
  line-height: 1.6;
}

/* Dual Perspective Grid */
.dual-perspective-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.perspective-card {
  background-color: var(--bg-main);
  border: 1px solid var(--accent-border);
  padding: 40px 36px;
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}

.perspective-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.perspective-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.perspective-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-dark);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.perspective-header h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-primary);
}

.perspective-header span {
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.perspective-list {
  list-style: none;
}

.perspective-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.perspective-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
  font-size: 12px;
}

.perspective-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ==========================================================================
   Curated Collection & Lookbook
   ========================================================================== */
.collection-section {
  background-color: var(--bg-main);
}

.collection-nav-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.collection-tab {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background-color: #FFFFFF;
  border: 1px solid var(--accent-border);
  border-radius: 30px;
  transition: var(--transition);
}

.collection-tab:hover,
.collection-tab.active {
  background-color: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.collection-count-badge {
  display: inline-block;
  font-size: 11px;
  opacity: 0.7;
  margin-left: 4px;
}

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

.product-card {
  background-color: #FFFFFF;
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.product-thumb-box {
  position: relative;
  width: 100%;
  padding-top: 120%; /* 4:5 luxury aspect ratio */
  background-color: #F8F8F8;
  overflow: hidden;
  cursor: pointer;
}

.product-thumb-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-tag-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.tag-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  background-color: rgba(18, 18, 18, 0.82);
  color: #fff;
  backdrop-filter: blur(4px);
  border-radius: 2px;
}

.tag-badge.gold {
  background-color: var(--accent-gold);
  color: #121212;
}

.product-quickview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  z-index: 3;
}

.product-card:hover .product-quickview-overlay {
  opacity: 1;
}

.btn-quickview {
  padding: 8px 18px;
  background-color: #fff;
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.product-btn-store {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-btn-store:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.collection-bottom-cta {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background-color: #FFFFFF;
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.collection-bottom-cta h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-primary);
}

.collection-bottom-cta p {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 600px;
}

/* ==========================================================================
   Atelier (Brand Story)
   ========================================================================== */
.atelier-section {
  background-color: var(--bg-dark);
  color: #FFFFFF;
}

.atelier-section .section-title {
  color: #FFFFFF;
}

.atelier-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

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

.atelier-story h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.atelier-story h3 span {
  color: var(--accent-gold);
}

.atelier-story p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 20px;
  word-break: keep-all;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.feature-pill {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.3);
  padding: 16px 20px;
  border-radius: 2px;
}

.feature-pill h5 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.feature-pill p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  line-height: 1.5;
}

.atelier-visual-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.collage-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.collage-item.full-span {
  grid-column: span 2;
}

.collage-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collage-item.full-span img {
  height: 320px;
}

.collage-item:hover img {
  transform: scale(1.04);
}

.collage-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Craft (7-Step Fur Master Process)
   ========================================================================== */
.craft-section {
  background-color: #FFFFFF;
}

.craft-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--accent-border);
  padding-bottom: 24px;
}

.craft-step-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background-color: var(--bg-main);
  border: 1px solid var(--accent-border);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.craft-step-num {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
}

.craft-step-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.craft-step-btn.active,
.craft-step-btn:hover {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
}

.craft-step-btn.active .craft-step-name,
.craft-step-btn:hover .craft-step-name {
  color: #FFFFFF;
}

.craft-step-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background-color: var(--bg-main);
  border: 1px solid var(--accent-border);
  padding: 48px;
  border-radius: 4px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.craft-detail-visual {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}

.craft-detail-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.craft-step-indicator {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.craft-detail-info h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.craft-detail-info p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  word-break: keep-all;
}

.craft-point-box {
  background-color: #FFFFFF;
  border-left: 3px solid var(--accent-gold);
  padding: 20px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 24px;
}

.craft-point-box h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.craft-point-box p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.craft-3-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pillar-card {
  text-align: center;
  padding: 32px 24px;
  background-color: var(--bg-main);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
}

.pillar-card .pillar-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  background-color: var(--bg-dark);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.pillar-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  word-break: keep-all;
}

/* ==========================================================================
   Showroom & Reservation
   ========================================================================== */
.showroom-section {
  background-color: var(--bg-warm);
}

.showroom-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  background-color: #FFFFFF;
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.showroom-info-side {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FAFAFA;
  border-right: 1px solid var(--accent-border);
}

.showroom-info-side h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.showroom-info-side p.intro {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  word-break: keep-all;
}

.showroom-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.detail-row {
  display: flex;
  gap: 16px;
}

.detail-row-icon {
  width: 24px;
  color: var(--accent-gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-row-content h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.detail-row-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.showroom-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn-map-app {
  padding: 8px 14px;
  background-color: #FFFFFF;
  border: 1px solid #D5D5D5;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-map-app:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.showroom-form-side {
  padding: 48px;
}

.showroom-form-side h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.showroom-form-side p.sub {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 28px;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--accent-border);
  background-color: #FAFAFA;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px var(--accent-gold-soft);
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.form-checkbox-wrap input {
  margin-top: 4px;
}

.form-checkbox-wrap label {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.btn-submit-booking {
  width: 100%;
  padding: 16px;
  background-color: var(--bg-dark);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 10px;
}

.btn-submit-booking:hover {
  background-color: var(--accent-gold);
  color: #121212;
}

/* ==========================================================================
   SmartStore Bridge Section
   ========================================================================== */
.bridge-section {
  background-color: #FFFFFF;
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
  padding: 60px 0;
}

.bridge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bridge-box {
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--accent-border);
  background-color: var(--bg-main);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bridge-box.highlight {
  background-color: #121212;
  color: #FFFFFF;
  border-color: #121212;
}

.bridge-box h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 10px;
}

.bridge-box.highlight h4 {
  color: var(--accent-gold);
}

.bridge-box p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.bridge-box.highlight p {
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  background-color: #0E0E0E;
  color: #9E9E9E;
  padding: 80px 0 40px;
  font-size: 13.5px;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.footer-brand p.sub {
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-brand p.desc {
  color: #888888;
  line-height: 1.7;
  max-width: 360px;
}

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-contact-info p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact-info strong {
  color: #FFF;
}

.footer-label-img {
  margin-top: 20px;
  height: 48px;
  width: auto;
  border: 1px solid rgba(197, 168, 128, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #666666;
}

/* ==========================================================================
   Modals (Quick View & Reservation)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-box {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-content-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F0EDE8;
  color: #121212;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: #121212;
  color: #FFFFFF;
}

/* Quick View Modal Specifics */
.quickview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 36px;
}

.quickview-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quickview-main-image {
  width: 100%;
  height: 440px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #F8F8F8;
}

.quickview-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.quickview-thumb {
  width: 70px;
  height: 70px;
  border-radius: 2px;
  border: 1px solid var(--accent-border);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.6;
  transition: var(--transition);
}

.quickview-thumb.active,
.quickview-thumb:hover {
  opacity: 1;
  border-color: var(--accent-gold);
}

.quickview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-details {
  display: flex;
  flex-direction: column;
}

.quickview-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quickview-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 12px;
}

.quickview-price {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--accent-border);
}

.quickview-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  word-break: keep-all;
}

.quickview-specs {
  background-color: var(--bg-main);
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 28px;
  font-size: 13px;
}

.spec-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.spec-line:last-child {
  border-bottom: none;
}

.spec-line span.label {
  color: var(--text-muted);
}

.spec-line span.val {
  font-weight: 500;
  color: var(--text-primary);
}

.quickview-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-modal-store {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background-color: #03C75A;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.btn-modal-store:hover {
  background-color: #02b350;
}

.btn-modal-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background-color: var(--bg-dark);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
}

.btn-modal-reserve:hover {
  background-color: var(--accent-gold);
  color: #121212;
}

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #121212;
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 4px;
  border-left: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 70px 20px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .essence-banner,
  .atelier-grid,
  .craft-step-detail-card,
  .showroom-wrap,
  .quickview-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .header-nav {
    display: none;
  }
  .btn-mobile-toggle {
    display: flex;
  }
  .header-actions .btn-header-reserve {
    display: none;
  }
  .dual-perspective-grid,
  .craft-3-pillars,
  .bridge-grid {
    grid-template-columns: 1fr;
  }
  .hero-footer-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .quickview-main-image {
    height: 350px;
  }
}

/* Load More Button Styling */
.collection-load-more-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background-color: #FFFFFF;
  border: 1px solid var(--accent-gold);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-load-more:hover {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  border-color: var(--bg-dark);
}

/* Mobile Bottom Floating Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(197, 168, 128, 0.3);
  z-index: 1500;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: stretch;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #FFFFFF;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-bar-btn:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-bar-btn.reserve {
  background-color: var(--accent-gold);
  color: #121212;
  font-weight: 700;
}

.mobile-bar-btn.reserve .btn-text {
  color: #121212;
}

.mobile-bar-btn .btn-icon {
  font-size: 16px;
  line-height: 1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 70px 20px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .essence-banner,
  .atelier-grid,
  .craft-step-detail-card,
  .showroom-wrap,
  .quickview-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .header-nav {
    display: none;
  }
  .btn-mobile-toggle {
    display: flex;
  }
  .desktop-only {
    display: none !important;
  }
  .dual-perspective-grid,
  .craft-3-pillars,
  .bridge-grid {
    grid-template-columns: 1fr;
  }
  .hero-footer-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .quickview-main-image {
    height: 350px;
  }
}

/* Mobile & Tablet Portrait (< 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --section-padding: 44px 16px;
  }

  /* Body Padding for bottom floating bar */
  body {
    padding-bottom: 60px;
  }

  .mobile-bottom-bar {
    display: grid;
  }

  /* Top Bar */
  .top-bar {
    font-size: 11px;
    padding: 6px 12px;
    line-height: 1.3;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .top-bar::-webkit-scrollbar {
    display: none;
  }
  .top-bar-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }
  .top-bar-divider {
    opacity: 0.3;
  }

  /* Main Header */
  .main-header {
    height: 60px;
  }
  .main-header.scrolled {
    height: 56px;
  }
  .header-brand {
    gap: 8px;
  }
  .brand-logo-img {
    height: 26px;
  }
  .brand-logo-en {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .brand-logo-sub {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  /* Hero Section */
  .hero-section {
    min-height: calc(100vh - 88px);
    padding: 24px 0 36px;
  }
  .hero-content {
    padding: 30px 0 20px;
    max-width: 100%;
  }
  .hero-badge-wrap {
    gap: 8px;
    margin-bottom: 14px;
  }
  .hero-label-thumb {
    height: 32px;
  }
  .hero-sub-text {
    font-size: 10.5px;
    letter-spacing: 0.12em;
  }
  .hero-title {
    font-size: clamp(26px, 7.5vw, 34px);
    line-height: 1.22;
    margin-bottom: 14px;
    word-break: keep-all;
  }
  .hero-desc {
    font-size: 14px;
    line-height: 1.68;
    margin-bottom: 24px;
    word-break: keep-all;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .btn-primary-gold,
  .btn-outline-light {
    width: 100%;
    padding: 13px 18px;
    font-size: 13px;
    justify-content: center;
    text-align: center;
  }
  .hero-footer-stats {
    margin-top: 30px;
    padding-top: 18px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .stat-item h4 {
    font-size: 18px;
  }
  .stat-item p {
    font-size: 10.5px;
    line-height: 1.3;
  }
  .hero-slide-dots {
    bottom: 14px;
    right: 16px;
    gap: 6px;
  }
  .hero-dot {
    width: 20px;
    height: 3px;
  }
  .hero-dot.active {
    width: 32px;
  }

  /* Section Titles */
  .section-header {
    margin-bottom: 28px;
    text-align: center;
  }
  .section-sub {
    font-size: 10.5px;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
  }
  .section-title {
    font-size: 22px !important;
    line-height: 1.35 !important;
    word-break: keep-all;
  }
  .section-desc {
    font-size: 13.5px;
    line-height: 1.65;
    word-break: keep-all;
  }

  /* Essence Section & Sewing Machine Image Fix */
  .essence-banner {
    margin-bottom: 36px;
    gap: 24px;
  }
  .essence-image-box {
    border-radius: 4px;
    background-color: #0d0d0d;
  }
  .essence-image-box img {
    height: auto;
    max-height: 320px;
    object-fit: contain;
    background-color: #141414;
    padding: 12px 0;
  }
  .essence-badge-overlay {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 12px;
    gap: 10px;
  }
  .essence-badge-overlay img {
    height: 24px;
  }
  .essence-badge-overlay p {
    font-size: 10.5px;
    line-height: 1.3;
  }
  .essence-text-box h3 {
    font-size: 20px;
    margin-bottom: 14px;
    word-break: keep-all;
  }
  .essence-text-box p {
    font-size: 13.5px;
    line-height: 1.68;
    word-break: keep-all;
  }
  .quote-highlight {
    font-size: 15px;
    margin: 16px 0;
    padding-left: 12px;
    line-height: 1.6;
    word-break: keep-all;
  }
  .perspective-card {
    padding: 20px 16px;
  }
  .perspective-header {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  .perspective-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .perspective-header h4 {
    font-size: 16px;
  }
  .perspective-list li {
    font-size: 13px;
    padding-left: 18px;
    margin-bottom: 10px;
    line-height: 1.55;
    word-break: keep-all;
  }

  /* Collection Lookbook (Mobile Luxury 2-Column Grid) */
  .collection-nav-wrap {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 4px 12px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .collection-nav-wrap::-webkit-scrollbar {
    display: none;
  }
  .collection-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-thumb-box {
    padding-top: 115%;
  }
  .product-thumb-box img {
    height: 100%;
  }
  .product-tag-badges {
    top: 6px;
    left: 6px;
    gap: 4px;
  }
  .tag-badge {
    font-size: 8.5px;
    padding: 2px 6px;
  }
  .product-quickview-overlay {
    display: none; /* Tap to open modal directly on mobile */
  }
  .product-info {
    padding: 10px;
  }
  .product-cat {
    font-size: 9.5px;
    margin-bottom: 3px;
  }
  .product-title {
    font-size: 12.5px;
    line-height: 1.35;
    height: 34px;
    margin-bottom: 8px;
  }
  .product-price-row {
    padding-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .product-price {
    font-size: 14px;
  }
  .product-btn-store {
    font-size: 11px;
    color: #03C75A;
    font-weight: 600;
  }
  .btn-load-more {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 13px;
  }

  /* Atelier Story */
  .atelier-grid {
    gap: 28px;
  }
  .atelier-story h3 {
    font-size: 20px;
    word-break: keep-all;
  }
  .atelier-story p {
    font-size: 13.5px;
    line-height: 1.68;
    word-break: keep-all;
  }
  .story-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature-pill {
    padding: 14px;
  }
  .feature-pill h5 {
    font-size: 13px;
  }
  .feature-pill p {
    font-size: 12px;
  }
  .atelier-visual-collage {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .collage-item.full-span {
    grid-column: span 1;
  }
  .collage-item img,
  .collage-item.full-span img {
    height: 200px;
  }

  /* Craft 7-Step Tabs */
  .craft-tabs-nav {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 6px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .craft-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .craft-step-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    gap: 6px;
  }
  .craft-step-num {
    font-size: 11px;
  }
  .craft-step-name {
    font-size: 12px;
  }
  .craft-step-detail-card {
    padding: 18px;
    gap: 18px;
  }
  .craft-detail-visual img {
    height: 220px;
  }
  .craft-detail-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    word-break: keep-all;
  }
  .craft-detail-info p {
    font-size: 13px;
    line-height: 1.65;
    word-break: keep-all;
  }

  /* Factory Section & Reservation Form */
  .showroom-wrap {
    gap: 20px;
  }
  .showroom-info-side,
  .showroom-form-side {
    padding: 22px 16px;
  }
  .showroom-info-side h3,
  .showroom-form-side h4 {
    font-size: 19px;
    word-break: keep-all;
  }
  .showroom-info-side p.intro,
  .showroom-form-side p.sub {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
    word-break: keep-all;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 12px;
    font-size: 14px;
  }
  .btn-submit-booking {
    padding: 14px;
    font-size: 14px;
  }

  /* Quick View Modal */
  .modal-backdrop {
    padding: 8px;
  }
  .modal-content-box {
    max-height: 92vh;
  }
  .quickview-layout {
    padding: 18px 14px;
    gap: 16px;
  }
  .quickview-main-image {
    height: 260px;
  }
  .quickview-title {
    font-size: 17px;
    word-break: keep-all;
  }
  .quickview-price {
    font-size: 19px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  .quickview-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
    word-break: keep-all;
  }
  .quickview-specs {
    margin-bottom: 16px;
    font-size: 11.5px;
    padding: 12px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 12px;
    font-size: 12.5px;
  }

  /* Footer */
  .main-footer {
    padding: 40px 16px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand h3 {
    font-size: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
  }
}

/* Extra Small Phones (< 400px) */
@media (max-width: 400px) {
  .hero-title {
    font-size: 24px;
  }
  .hero-desc {
    font-size: 13px;
  }
  .hero-footer-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
