/* ==========================================================================
   广州亿柚服饰有限公司 - 核心样式表
   Design Style: Deep Navy (#070e20) & Champagne Gold (#d4af37)
   ========================================================================== */

/* --- ROOT VARIABLES --- */
:root {
  --color-bg-deep: #FAF8F5; /* 极简高智感奶白 */
  --color-bg-dark: #F4F1EB; /* 优雅暖沙色 */
  --color-bg-card: #FFFFFF; /* 纯白卡片底 */
  --color-bg-card-hover: #FAF8F5;
  --color-gold: #B0926A; /* 奢华哑光香槟金 */
  --color-gold-dark: #9A7E56;
  --color-gold-glow: rgba(176, 146, 106, 0.06);
  --color-gold-glow-strong: rgba(176, 146, 106, 0.12);
  --color-white: #FFFFFF;
  --color-text-main: #2A2A2A; /* 质感炭黑 */
  --color-text-muted: #7A7A7A; /* 优雅暖灰 */
  --color-text-dark: #2A2A2A;
  --color-white-fixed: #FFFFFF;
  --color-border-fine: rgba(0, 0, 0, 0.08); /* 固定白色，不受主题切换影响 */
  
  --font-display: 'Playfair Display', 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(176, 146, 106, 0.08);
  --shadow-lg: 0 8px 32px rgba(176, 146, 106, 0.12);
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.gold-text {
  color: var(--color-gold) !important;
}

.alt-bg {
  background-color: var(--color-bg-dark);
}

/* --- SECTIONS COMMON --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(232, 184, 75, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid var(--color-gold-glow-strong);
}

.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--color-text-main);
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
}

.btn-gold:hover {
  background-color: var(--color-gold-dark);
  box-shadow: 0 0 20px rgba(232, 184, 75, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white-fixed);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background-color: var(--color-white-fixed);
  color: var(--color-text-dark);
  border-color: var(--color-white-fixed);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 90px;
  display: flex;
  align-items: center;
  transition: all var(--transition-medium);
  background-color: transparent;
  border-bottom: 1px solid var(--color-border-fine);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(7, 13, 30, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 184, 75, 0.15);
  box-shadow: var(--shadow-md);
}

.header.scrolled .logo-main {
  color: var(--color-white-fixed);
}
.header.scrolled .logo-sub {
  color: rgba(255, 255, 255, 0.6);
}
.header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.75);
}
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active {
  color: var(--color-gold);
}
.header.scrolled .nav-link::after {
  background-color: var(--color-gold);
}
.header.scrolled .lang-selector {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.header.scrolled .lang-selector .divider {
  color: rgba(255, 255, 255, 0.2);
}
.header.scrolled .mobile-nav-toggle .bar {
  background-color: var(--color-white-fixed);
}


.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.logo-main {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-white-fixed);
  line-height: 1.1;
}

.logo-sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  margin-top: 2px;
  font-weight: 400;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 6px 0;
}

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

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

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

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

.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid var(--color-border-fine);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 2px 4px;
}

.lang-btn:hover, .lang-btn.active {
  color: var(--color-gold);
}

.lang-selector .divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 10px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  transition: all var(--transition-fast);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-deep);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--transition-medium);
}

.mobile-nav-overlay.open {
  transform: translateX(0);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.mobile-link:hover, .mobile-link.active {
  color: var(--color-gold);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.video-slide.active {
  opacity: 1;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 18, 15, 0.8) 0%, rgba(20, 18, 15, 0.4) 60%, rgba(20, 18, 15, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 24px;
  margin-top: 60px;
}

.hero-badge {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 184, 75, 0.15);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid var(--color-gold-glow-strong);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-white-fixed);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  animation: fadeInUp 1s ease-out 0.8s both;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-white-fixed);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dots .dot.active {
  background-color: var(--color-gold);
  transform: scale(1.3);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: stretch;
}

.about-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand-concept-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 280px;
  border: 1px solid var(--color-gold-glow-strong);
  box-shadow: var(--shadow-md);
}

.concept-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.concept-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  background: linear-gradient(to top, rgba(7, 13, 30, 0.95) 0%, rgba(7, 13, 30, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.concept-overlay h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.concept-overlay p {
  font-size: 13px;
  color: var(--color-text-main);
  opacity: 0.85;
}

.about-text-content {
  font-size: 15px;
  color: var(--color-text-muted);
}

.lead-text {
  font-size: 17px;
  color: var(--color-text-main);
  line-height: 1.7;
  margin-bottom: 20px;
  border-left: 3px solid var(--color-gold);
  padding-left: 16px;
}

.about-text-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text-content p:last-child {
  margin-bottom: 0;
}

.about-visual-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visual-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-fine);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 50%;
}

.visual-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-glow-strong);
  box-shadow: var(--shadow-md);
}

.visual-img-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.visual-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.visual-content {
  padding: 20px 24px;
}

.visual-content h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.visual-content p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Timeline */
.timeline-container {
  margin-top: 100px;
  border-top: 1px solid var(--color-border-fine);
  padding-top: 60px;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text-main);
  margin-bottom: 48px;
}

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

.timeline-grid::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(232,184,75,0.05), var(--color-gold-glow-strong), rgba(232,184,75,0.05));
  z-index: 1;
}

.timeline-node {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  padding: 24px;
  border: 1px solid var(--color-border-fine);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-node:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 8px 30px rgba(232, 184, 75, 0.15);
}

.node-year {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.timeline-node h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.timeline-node p {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-fine);
  color: var(--color-text-muted);
  padding: 10px 22px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  border-color: var(--color-gold-glow-strong);
  color: var(--color-text-main);
}

.tab-btn.active {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(232, 184, 75, 0.25);
}

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

.product-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-fine);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.prod-img-container {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.prod-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-gold-glow-strong);
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.5px;
}

.prod-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.prod-model {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.prod-sales {
  font-size: 11px;
  color: var(--color-gold);
  background: rgba(232, 184, 75, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.prod-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 12px;
}

.prod-colors {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.colors-label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.colors-list {
  font-size: 12px;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prod-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border-fine);
  padding-top: 16px;
  margin-top: auto;
}

.prod-spec {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 11px;
  color: var(--color-text-muted);
}

.spec-val {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
}

.prod-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gold);
}

/* Showroom Aesthetics Window */
.showroom-exhibition {
  border-top: 1px solid var(--color-border-fine);
  padding-top: 80px;
  margin-top: 40px;
}

.showroom-header {
  text-align: center;
  margin-bottom: 48px;
}

.showroom-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.showroom-header p {
  font-size: 14px;
  color: var(--color-text-muted);
}

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

.showroom-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  border: 1px solid var(--color-border-fine);
  box-shadow: var(--shadow-sm);
}

.showroom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.showroom-item:hover .showroom-img {
  transform: scale(1.06);
}

.item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 248, 245, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.showroom-item:hover .item-overlay {
  opacity: 1;
}

.item-overlay i {
  font-size: 24px;
  color: var(--color-gold);
  text-shadow: 0 0 10px rgba(232, 184, 75, 0.4);
}

/* ==========================================================================
   FACTORY SECTION
   ========================================================================== */
.factory-info-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  margin-bottom: 80px;
  align-items: center;
}

.factory-text h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.factory-text p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.factory-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.factory-highlights li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.factory-highlights li i {
  font-size: 18px;
  margin-top: 4px;
}

.factory-highlights strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  display: block;
  margin-bottom: 4px;
}

.factory-highlights p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.factory-visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.factory-main-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--color-border-fine);
  box-shadow: var(--shadow-md);
}

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

.caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(7, 13, 30, 0.9) 0%, rgba(7, 13, 30, 0.3) 70%, transparent 100%);
}

.caption-overlay .badge {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.caption-overlay h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
}

.factory-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.factory-sub-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 180px;
  border: 1px solid var(--color-border-fine);
}

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

.caption-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(20, 18, 15, 0.85);
  font-size: 11px;
  color: var(--color-text-main);
}

/* Process steps */
.process-container {
  margin-top: 80px;
  border-top: 1px solid var(--color-border-fine);
  padding-top: 60px;
}

.process-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text-main);
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.step-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-md);
  padding: 24px;
  border: 1px solid var(--color-border-fine);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  border-color: var(--color-gold-glow-strong);
}

.step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: rgba(232, 184, 75, 0.07);
  line-height: 1;
  margin-bottom: 12px;
  position: absolute;
  top: 16px;
  right: 16px;
}

.step-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
  z-index: 2;
  position: relative;
}

.step-card p {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
  z-index: 2;
  position: relative;
}

/* ==========================================================================
   VIP PORTAL & CAROUSEL
   ========================================================================== */
.vip-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.vip-text-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vip-text-panel h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.vip-text-panel p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.vip-privileges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.vip-privileges li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--color-text-main);
}

.vip-privileges li i {
  font-size: 14px;
  margin-top: 4px;
}

.vip-login-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-fine);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lock-icon-container {
  width: 48px;
  height: 48px;
  background: var(--color-gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold-glow-strong);
  flex-shrink: 0;
}

.lock-icon-container i {
  font-size: 18px;
  color: var(--color-gold);
}

.login-action-info {
  flex-grow: 1;
}

.login-hint {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px !important;
}

.vip-schedule-panel {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border-fine);
  box-shadow: var(--shadow-lg);
}

.schedule-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.schedule-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* Season Carousel */
.season-carousel {
  position: relative;
  overflow: hidden;
}

.season-card {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.season-card.active {
  display: block;
}

.season-img-container {
  position: relative;
  height: 240px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-fine);
}

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

.season-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.season-info {
  margin-top: 20px;
}

.season-info h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.season-info p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.season-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  border-top: 1px solid var(--color-border-fine);
  padding-top: 20px;
}

.season-arrow {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border-fine);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.season-arrow:hover {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  border-color: var(--color-gold);
}

.season-indicator {
  display: flex;
  gap: 8px;
}

.ind-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.ind-dot.active {
  background-color: var(--color-gold);
  transform: scale(1.3);
}

/* ==========================================================================
   DIGITAL & AI SECTION
   ========================================================================== */
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ai-card {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border-fine);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  position: relative;
  display: flex;
  flex-direction: column;
}

.ai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color var(--transition-fast);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.ai-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-glow-strong);
  box-shadow: var(--shadow-lg);
}

.ai-card:nth-child(1):hover::before { background-color: #0969da; }
.ai-card:nth-child(2):hover::before { background-color: var(--color-gold); }
.ai-card:nth-child(3):hover::before { background-color: #1a7f37; }

.ai-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-fine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all var(--transition-fast);
}

.ai-card:hover .ai-icon {
  background: var(--color-gold-glow);
  border-color: var(--color-gold-glow-strong);
}

.ai-icon i {
  font-size: 22px;
  color: var(--color-gold);
}

.ai-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.ai-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT US SECTION
   ========================================================================== */
.contact-grid-main {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-fine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 16px;
}

.info-text h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.info-text p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* QRs */
.qr-container {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  border-top: 1px solid var(--color-border-fine);
  padding-top: 32px;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.qr-box {
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-fine);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qr-box i {
  font-size: 28px;
  color: var(--color-gold);
}

.qr-placeholder {
  font-size: 10px;
  color: var(--color-text-muted);
}

.contact-form-panel {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid var(--color-border-fine);
  box-shadow: var(--shadow-lg);
}

.contact-form-panel h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.contact-form-panel p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

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

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

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

.input-group label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
  background-color: var(--color-bg-deep);
  border: 1px solid var(--color-border-fine);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-main);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: all var(--transition-fast);
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(232, 184, 75, 0.15);
  background-color: rgba(250, 248, 245, 0.85);
}

.input-group select {
  cursor: pointer;
}

.input-group select option {
  background-color: var(--color-bg-card);
  color: var(--color-text-main);
}

.input-group textarea {
  resize: vertical;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #040813;
  border-top: 1px solid var(--color-border-fine);
  padding: 60px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-border-fine);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

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

.footer-logo p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-fine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--color-gold);
  color: var(--color-text-dark);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-address {
  font-size: 11px;
}

/* ==========================================================================
   LIGHTBOX Preview System
   ========================================================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 18, 15, 0.97);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border: 2px solid var(--color-gold);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-caption {
  margin-top: 16px;
  color: var(--color-text-main);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 44px;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--color-text-main);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 20px;
}

.lightbox-arrow:hover {
  color: var(--color-gold);
}

.lightbox-arrow.prev {
  left: 40px;
}

.lightbox-arrow.next {
  right: 40px;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .about-grid, 
  .factory-info-grid, 
  .vip-panel, 
  .contact-grid-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .timeline-grid::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .header {
    height: 70px;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .hero-section {
    height: 650px;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-desc {
    font-size: 14px;
  }
  
  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .stat-num {
    font-size: 32px;
  }
  
  .timeline-grid, 
  .product-grid, 
  .showroom-grid, 
  .process-steps, 
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .showroom-item {
    height: 180px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .lightbox-arrow {
    display: none;
  }
}


/* ==========================================================================
   ABOUT US VIDEO CAROUSEL
   ========================================================================== */
.about-video-slider-container {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 380px;
  border: 1px solid var(--color-gold-glow-strong);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.about-video-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.about-video-slide.active {
  opacity: 1;
}

.about-video-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 5;
}

.about-video-btn {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white-fixed);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all var(--transition-fast);
}

.about-video-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white-fixed);
}

.about-video-dots {
  display: flex;
  gap: 8px;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.about-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(176, 146, 106, 0.8);
  border: 2px solid var(--color-white-fixed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white-fixed);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 4;
}

.about-video-slide:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-gold);
}

@media (max-width: 768px) {
  .about-video-slider-container {
    height: 260px;
  }
}

/* ==========================================================================
   PRODUCT DETAIL MODAL STYLES
   ========================================================================== */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 13, 30, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
  padding: 20px;
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.pm-content {
  background-color: var(--color-bg-card);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border-fine);
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: scale(0.9);
  transition: transform var(--transition-medium);
}

.product-modal.open .pm-content {
  transform: scale(1);
}

.pm-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-fast);
  line-height: 1;
  z-index: 10;
}

.pm-close:hover {
  color: var(--color-gold);
}

.pm-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.pm-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-main-img-container {
  width: 100%;
  height: 480px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: var(--color-bg-dark);
  border: 1px solid var(--color-border-fine);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-main-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensure full garment is visible without cropping */
}

.pm-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 images per row */
  gap: 12px;
}

.pm-thumb {
  height: 90px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  background-color: var(--color-bg-dark);
}

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

.pm-thumb:hover, .pm-thumb.active {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.pm-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pm-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(176, 146, 106, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 16px;
  letter-spacing: 1px;
  border: 1px solid var(--color-gold-glow-strong);
}

.pm-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 24px;
}

.pm-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  border-top: 1px solid var(--color-border-fine);
  padding-top: 20px;
}

.pm-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pm-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.pm-meta-item strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--color-text-main);
  font-weight: 600;
}

.pm-meta-item span {
  font-size: 14px;
  color: var(--color-text-main);
}

.pm-colors-list {
  font-size: 14px;
  color: var(--color-text-main);
  line-height: 1.6;
}

.pm-action {
  margin-top: auto;
}

/* Responsive Product Modal */
@media (max-width: 900px) {
  .pm-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pm-content {
    padding: 30px 20px;
    max-height: 95vh;
  }
  
  .pm-main-img-container {
    height: 360px;
  }
}

