:root {
  --primary: #1e4d2b;
  --primary-dark: #14351d;
  --primary-light: #2e7240;
  --accent: #e67e22;
  --accent-hover: #d35400;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius: 14px;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--accent);
}

.top-bar {
  background-color: var(--primary-dark);
  color: #e2e8f0;
  font-size: 13px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a {
  color: #fed7aa;
  font-weight: 500;
}
.top-bar .distributor-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar .distributor-badge span {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

header {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.logo-title span.distributor-tag {
  font-size: 12px;
  font-weight: 600;
  background: #e8f5e9;
  color: #1e4d2b;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0;
  border: 1px solid #c8e6c9;
}
.logo-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  background: #f1f5f9;
  color: var(--text-main);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.phone-btn:hover {
  background: #e2e8f0;
  color: var(--primary);
}
.cart-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 30px;
  background: var(--accent);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
  transition: all 0.2s;
}
.cart-trigger-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.cart-badge {
  background: #ffffff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 12px;
}

.hero {
  background: linear-gradient(135deg, #1e4d2b 0%, #14351d 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(230, 126, 34, 0.15), transparent 60%);
  pointer-events: none;
}
.hero-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #fed7aa;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 18px;
  color: #e2e8f0;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-btn {
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
}
.hero-btn-primary {
  background: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}
.hero-btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}
.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 13px;
  color: var(--text-muted);
}

.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.filter-section {
  margin-bottom: 35px;
}
.search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto 25px auto;
}
.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-size: 15px;
  outline: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.2s;
}
.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(30, 77, 43, 0.1);
}
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}
.category-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.category-pill {
  padding: 8px 20px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.category-pill:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.category-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(30, 77, 43, 0.2);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
}
.section-count {
  font-size: 14px;
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-img-wrapper {
  background: #ffffff;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}
.product-img-wrapper img {
  max-height: 170px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-card:hover .product-img-wrapper img {
  transform: none;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  pointer-events: none;
}
.product-category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  z-index: 10;
  pointer-events: none;
}
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
  line-height: 1.35;
}
.product-short-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
  flex-grow: 1;
}
.product-benefits {
  list-style: none;
  margin-bottom: 18px;
  font-size: 12px;
  color: #334155;
}
.product-benefits li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}
.product-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.add-btn {
  flex-grow: 1;
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}
.add-btn:hover {
  background: var(--primary-light);
}
.nutri-btn {
  background: #f1f5f9;
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.nutri-btn:hover {
  background: #e2e8f0;
}

.about-section {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  margin-top: 60px;
  box-shadow: var(--shadow);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}
.about-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}
.about-feat-box {
  background: #f8fafc;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.about-feat-box strong {
  display: block;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 4px;
}
.about-feat-box span {
  font-size: 12px;
  color: var(--text-muted);
}

.drawer-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.active {
  display: block;
  opacity: 1;
}
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.drawer.active {
  transform: translateX(0);
}
.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}
.close-drawer {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
}
.drawer-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}
.cart-items {
  margin-bottom: 25px;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}
.cart-item-title {
  font-size: 13px;
  font-weight: 600;
  max-width: 220px;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #f8fafc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.qty-btn:hover {
  background: #e2e8f0;
}
.cart-empty-text {
  text-align: center;
  padding: 30px 10px;
  color: var(--text-muted);
  font-size: 14px;
}
.order-form {
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.order-form h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--text-main);
}
.form-group {
  margin-bottom: 12px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #334155;
}
.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
}
.submit-order-btn {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
  transition: all 0.2s;
}
.submit-order-btn:hover {
  background: var(--accent-hover);
}
.direct-contact-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.nutri-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.nutri-modal.active {
  display: flex;
}
.nutri-modal-content {
  background: #ffffff;
  border-radius: var(--radius);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 25px;
  position: relative;
}
.nutri-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.disclaimer-banner {
  background: #fef2f2;
  border-top: 1px solid #fee2e2;
  border-bottom: 1px solid #fee2e2;
  padding: 16px 20px;
  margin-top: 60px;
  font-size: 12px;
  color: #991b1b;
  text-align: center;
  line-height: 1.6;
}
.disclaimer-banner strong {
  display: block;
  margin-bottom: 2px;
}

footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 50px 20px 30px 20px;
  font-size: 13px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 15px;
  font-weight: 700;
}
.footer-col p {
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #94a3b8;
}
.footer-links a:hover {
  color: #fed7aa;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: stretch; }
  .logo-area { justify-content: center; }
  .header-actions { justify-content: center; }
}


/* PRODUCT DETAIL PAGE STYLES */
.breadcrumb {
  margin: 25px 0 20px 0;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb-separator {
  color: #cbd5e1;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.product-gallery {
  position: relative;
  text-align: center;
}
.product-gallery-img {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.product-gallery-img:hover {
  transform: scale(1.02);
}

.product-meta-header {
  margin-bottom: 20px;
}
.product-detail-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.product-detail-badge {
  background: rgba(30, 77, 43, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-detail-category {
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-detail-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.product-detail-lead {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 25px;
  font-weight: 500;
}

.detail-benefits-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}
.detail-benefits-box h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}
.detail-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-benefits-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}
.detail-benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.detail-action-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.detail-action-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.detail-action-card .status-tag {
  color: #166534;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-action-card .order-cta-btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(30, 77, 43, 0.25);
  transition: all 0.2s ease;
  text-decoration: none;
}
.detail-action-card .order-cta-btn:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  color: #ffffff;
}

.product-tabs-section {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 35px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.product-content-block {
  margin-bottom: 35px;
}
.product-content-block:last-child {
  margin-bottom: 0;
}
.product-content-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
}
.product-content-block p {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 15px;
}
.product-content-block ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.product-content-block li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

.usage-guide-card {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 20px;
  margin-top: 15px;
}
.usage-guide-card h4 {
  color: #1e40af;
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 700;
}
.usage-guide-card p {
  color: #1e3a8a;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.related-products-section {
  margin-top: 50px;
}
.related-products-section h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  .product-tabs-section {
    padding: 20px;
  }
}

/* Pricing and Variant Styles */
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.product-code-badge {
  background: #f1f5f9;
  color: #475569;
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 600;
  font-family: monospace;
}
.product-size-badge {
  color: #64748b;
  font-weight: 500;
}
.price-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 14px;
}
.price-official-old {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
}
.price-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.price-unit {
  font-size: 12px;
  color: #64748b;
}
.variant-selector-box {
  margin: 10px 0 14px;
}
.variant-selector-label {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.variant-pill {
  padding: 5px 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-weight: 500;
}
.variant-pill:hover {
  border-color: var(--primary);
}
.variant-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  font-weight: 700;
}

/* Cart Order Total */
.cart-item-info {
  flex: 1;
}
.cart-item-price-line {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 3px;
}
.cart-total-box {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}
.cart-total-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

/* Toast Notification */
.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  color: var(--text-main);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  border-left: 5px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 520px;
  min-width: 320px;
}

.cart-toast.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.cart-toast-body {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
}

.cart-toast-body strong {
  display: block;
  color: var(--primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.cart-toast-name {
  color: var(--text-main);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  white-space: normal;
}


.cart-toast-btn {
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.cart-toast-btn:hover {
  background: var(--primary-light);
}

/* Badge bounce effect */
@keyframes cartBadgeBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.45); }
  100% { transform: scale(1); }
}
.cart-badge-bounce {
  animation: cartBadgeBounce 0.35s ease;
}

@media (max-width: 600px) {
  .cart-toast {
    left: 15px;
    right: 15px;
    bottom: 15px;
    max-width: none;
  }
}


