@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700&display=swap');

/* ==========================================================================
   SAENGI NATURAL - BRIGHT, CLEAN & ELEGANT LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Color Palette - Bright, Luminous White & Gold Aesthetics */
  --bg-body: #ffffff;
  --bg-surface: #faf9f6;
  --bg-card: #ffffff;
  --bg-soft-cream: #f4f1ea;
  --bg-soft-mint: #f2f6f3;
  --bg-soft-rose: #fbf5f3;
  
  --primary-gold: #b89346;
  --primary-gold-bright: #d4af37;
  --primary-gold-dark: #8c6c28;
  --gold-glow: rgba(184, 147, 70, 0.15);
  
  --text-primary: #1c1e1a;
  --text-secondary: #4a4e46;
  --text-muted: #7a7f75;
  --text-light: #9e9e9e;
  
  --border-color: rgba(184, 147, 70, 0.25);
  --border-subtle: #e8e5dc;
  --border-focus: rgba(184, 147, 70, 0.6);
  
  /* Typography - Pretendard & Outfit */
  --font-en: 'Outfit', 'Montserrat', sans-serif;
  --font-kr: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  
  /* Layout & Shadows */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 16px 36px rgba(184, 147, 70, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(184, 147, 70, 0.2);
}

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

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

body {
  font-family: var(--font-kr);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  letter-spacing: -0.025em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

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

/* ==========================================================================
   TOP ANNOUNCEMENT & UTILITY BAR
   ========================================================================== */
.topbar {
  background: #181c17;
  color: #d8d5cb;
  font-size: 12px;
  letter-spacing: -0.01em;
  padding: 8px 0;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.topbar-msg .dot {
  width: 6px;
  height: 6px;
  background: var(--primary-gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-gold-bright);
}

.topbar-links {
  display: flex;
  gap: 20px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.topbar-links a {
  color: #cfcac0;
}

.topbar-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

header.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.logo span {
  color: var(--primary-gold);
}

.logo-tag {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary-gold);
  text-transform: uppercase;
  border: 1px solid var(--border-color);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
  background: var(--bg-soft-cream);
}

nav.main-nav ul {
  display: flex;
  gap: 40px;
}

nav.main-nav a {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--primary-gold-dark);
}

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

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

.btn-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-gold);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(184, 147, 70, 0.3);
  transition: all 0.3s ease;
}

.btn-shop-link:hover {
  transform: translateY(-2px);
  background: var(--primary-gold-dark);
  box-shadow: 0 6px 20px rgba(184, 147, 70, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 999;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   HERO BANNER & SLIDER SECTION
   ========================================================================== */
.hero {
  position: relative;
  padding: 60px 0 90px;
  background: linear-gradient(180deg, #f8f6f0 0%, #ffffff 100%);
  overflow: hidden;
}

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

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-soft-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

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

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary-gold);
  color: #ffffff;
  border: 1px solid var(--primary-gold);
  box-shadow: 0 4px 18px rgba(184, 147, 70, 0.3);
}

.btn-primary:hover {
  background: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 147, 70, 0.45);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold-dark);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.hero-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.hero-card:hover img {
  transform: scale(1.03);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: #ffffff;
}

.hero-card-info h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-card-info p {
  font-size: 13px;
  color: #e0e0e0;
}

/* ==========================================================================
   PHILOSOPHY & 3 IN 1 CARE SYSTEM
   ========================================================================== */
.philosophy-section {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

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

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

.care-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}

.care-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
}

.care-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
  margin-bottom: 20px;
}

.care-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.care-card .eng-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.care-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   PRODUCT CATALOG & CARDS
   ========================================================================== */
.products-section {
  padding: 100px 0;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: var(--border-color);
  color: var(--primary-gold-dark);
}

.filter-btn.active {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(184, 147, 70, 0.3);
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.product-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: #f7f6f2;
  overflow: hidden;
}

.product-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-gold);
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.product-quick-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.product-card:hover .product-quick-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-quick-btn:hover {
  background: var(--primary-gold);
  color: #ffffff;
}

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

.product-cat {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-gold-dark);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-gold-dark);
}

.product-price span {
  font-family: var(--font-kr);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.btn-buy {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: #ffffff;
  color: var(--primary-gold-dark);
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.btn-buy:hover {
  background: var(--primary-gold);
  color: #ffffff;
  border-color: var(--primary-gold);
}

/* ==========================================================================
   FEATURED STORY SPLIT SECTION & GALLERY
   ========================================================================== */
.story-section {
  padding: 100px 0;
  background: var(--bg-soft-cream);
}

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

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.story-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  box-shadow: var(--shadow-sm);
}

.story-content h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.story-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.story-feature-item {
  padding: 16px 20px;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.story-feature-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  margin-bottom: 4px;
}

.story-feature-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   REVIEWS & EVENT SECTION
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
  background: var(--bg-body);
}

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

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--border-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--primary-gold);
  font-size: 14px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.author-info h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-section {
  padding: 80px 0 100px;
}

.cta-box {
  background: linear-gradient(135deg, var(--bg-soft-cream) 0%, #ffffff 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.cta-box h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.cta-box p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer {
  background: #181c17;
  color: #a8aca2;
  padding: 70px 0 36px;
  font-size: 13px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.8;
  color: #a8aca2;
  font-size: 13px;
}

.footer-col h4 {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

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

.footer-col a {
  color: #c4c8bd;
}

.footer-col a:hover {
  color: var(--primary-gold-bright);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #8a8e84;
}

/* ==========================================================================
   MODAL POPUP
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-md);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-backdrop.is-open .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: var(--primary-gold);
  color: #ffffff;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 36px;
}

.modal-img img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.modal-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.modal-info .cat {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.modal-info .price {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-gold-dark);
  margin-bottom: 18px;
}

.modal-info .desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
}

.modal-specs {
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  margin-bottom: 24px;
}

.modal-spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  color: var(--text-muted);
}

.modal-spec-row span:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .hero-grid, .split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .care-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  nav.main-nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .modal-body {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (max-width: 580px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
