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

:root {
  --primary-emerald: #0f3e36;
  --primary-emerald-dark: #082823;
  --primary-emerald-light: #16564b;
  --accent-gold: #c69f52;
  --accent-gold-light: #dfba71;
  --accent-gold-glow: rgba(198, 159, 82, 0.25);
  
  --bg-dark: #0a1110;
  --bg-dark-card: #111d1a;
  --bg-dark-subtle: #172421;
  --bg-light: #faf9f5;
  --bg-card: #ffffff;
  
  --text-dark: #111827;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  --text-light-muted: #9ca3af;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(198, 159, 82, 0.35);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 10px 30px -5px rgba(198, 159, 82, 0.25);
  --shadow-emerald: 0 15px 35px -5px rgba(15, 62, 54, 0.35);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* --- TOPBAR & NAVBAR --- */
.topbar {
  background-color: var(--bg-dark);
  color: var(--text-light-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.topbar-tag {
  color: var(--accent-gold-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact {
  display: flex;
  gap: 18px;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 100;
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-emerald);
}

.brand-title span {
  color: var(--accent-gold);
}

.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #374151;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-emerald);
}

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

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

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

.cart-trigger-btn {
  background: transparent;
  position: relative;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  color: var(--primary-emerald);
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-trigger-btn:hover {
  background-color: #f3f4f6;
  border-color: var(--accent-gold);
}

.cart-badge {
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.wa-header-btn {
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.wa-header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(198, 159, 82, 0.12), transparent 50%),
              linear-gradient(135deg, #091a16 0%, #0d2c25 100%);
  color: #ffffff;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 159, 82, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #d1d5db;
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.7;
}

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

.btn-gold {
  background: linear-gradient(135deg, #d8b26e, #b88d3e);
  color: #0b1c18;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e4c282, #c69f52);
  box-shadow: 0 12px 28px rgba(198, 159, 82, 0.4);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-img {
  width: 100%;
  max-width: 440px;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(198, 159, 82, 0.3);
}

.hero-floating-box {
  position: absolute;
  bottom: -20px;
  left: 0;
  background: rgba(17, 29, 26, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-floating-box i {
  font-size: 2rem;
  color: var(--accent-gold);
}

.hero-floating-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.hero-floating-box p {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

/* --- TRUST BAR / FEATURES --- */
.trust-bar {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: #fdfdfd;
  border: 1px solid #f3f4f6;
  transition: var(--transition);
}

.feature-box:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold-glow);
  box-shadow: var(--shadow-sm);
}

.feature-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(15, 62, 54, 0.08);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --- CATALOG SECTION --- */
.catalog-section {
  padding: 90px 0;
  background: #fbfbfa;
}

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

.section-tag {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.82rem;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--primary-emerald);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

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

.filter-btn {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b5563;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-emerald);
  color: #ffffff;
  border-color: var(--primary-emerald);
  box-shadow: 0 4px 12px rgba(15, 62, 54, 0.2);
}

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

.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #eef0f2;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(198, 159, 82, 0.4);
}

.card-thumb-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f3f4f6;
}

.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-emerald);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 62, 54, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.btn-quick-view {
  background: #ffffff;
  color: var(--primary-emerald);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.4;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.current-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-emerald);
}

.original-price {
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.card-footer-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.btn-add-cart {
  background: var(--primary-emerald);
  color: #ffffff;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-cart:hover {
  background: var(--primary-emerald-light);
}

.btn-detail-icon {
  background: #f3f4f6;
  color: #4b5563;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-detail-icon:hover {
  background: var(--accent-gold);
  color: #ffffff;
}

/* --- ABOUT CV. SAUDAGAR --- */
.about-section {
  padding: 90px 0;
  background: #ffffff;
}

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

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 88%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-stat-card {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--primary-emerald);
  color: #ffffff;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(15, 62, 54, 0.4);
  border: 1px solid var(--border-gold);
}

.about-stat-card .number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.about-stat-card .label {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary-emerald);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  color: #4b5563;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.about-highlights {
  list-style: none;
  margin: 24px 0 32px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #1f2937;
}

.about-highlights li i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  padding: 90px 0;
  background: #fbfbfa;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid #eef0f2;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testi-stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 1rem;
}

.testi-quote {
  color: #4b5563;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

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

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-emerald);
}

.testi-author h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
}

.testi-author p {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-dark);
  color: #e5e7eb;
  padding: 80px 0 30px;
  border-top: 2px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-brand h3 span {
  color: var(--accent-gold);
}

.footer-brand p {
  color: var(--text-light-muted);
  font-size: 0.9rem;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.9rem;
}

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

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}

.footer-contact-info li i {
  color: var(--accent-gold);
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* --- CART DRAWER --- */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-header {
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-close-drawer {
  background: none;
  font-size: 1.4rem;
  color: #6b7280;
}

.btn-close-drawer:hover {
  color: #111827;
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
}

.cart-item-img {
  width: 70px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: #f3f4f6;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.cart-item-variant {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 6px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary-emerald);
  font-size: 0.95rem;
}

.cart-qty-ctrls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.btn-qty {
  width: 24px;
  height: 24px;
  background: #f3f4f6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}

.btn-qty:hover {
  background: #e5e7eb;
}

.cart-remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #9ca3af;
  background: none;
  font-size: 1rem;
}

.cart-remove-btn:hover {
  color: #ef4444;
}

.empty-cart-view {
  text-align: center;
  padding: 40px 10px;
  color: #9ca3af;
}

.empty-cart-view i {
  font-size: 3rem;
  color: #d1d5db;
  margin-bottom: 12px;
}

.cart-footer {
  padding: 20px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.cart-subtotal-row span:last-child {
  color: var(--primary-emerald);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.checkout-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.btn-wa-checkout {
  width: 100%;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #ffffff;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-wa-checkout:hover {
  background: linear-gradient(135deg, #0f7a6e, #20ba5a);
}

/* --- PRODUCT MODAL --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.product-modal {
  background: #ffffff;
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.btn-close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f3f4f6;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  color: #4b5563;
}

.btn-close-modal:hover {
  background: #e5e7eb;
  color: #111827;
}

.modal-img-wrap {
  background: #f3f4f6;
  height: 100%;
  min-height: 380px;
}

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

.modal-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.modal-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-emerald);
  margin-bottom: 12px;
}

.modal-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-emerald);
}

.modal-desc {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-options-group {
  margin-bottom: 16px;
}

.modal-options-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.option-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-btn {
  padding: 6px 14px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  background: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5563;
}

.chip-btn.active {
  background: var(--primary-emerald);
  color: #ffffff;
  border-color: var(--primary-emerald);
}

.modal-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  padding-top: 16px;
}

.btn-modal-add {
  flex-grow: 1;
  background: var(--primary-emerald);
  color: #ffffff;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-modal-add:hover {
  background: var(--primary-emerald-light);
}
