/* ==========================================================================
   LETHOCCELLPHONE'S - CHUẨN NGUYÊN BẢN BENCHMARK V39.0.0 (STABLE 100%)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap&subset=vietnamese');

:root {
  --bg-dark: #07090e;
  --bg-card: #0e131f;
  --bg-card-hover: #141c2e;
  --bg-modal: #0d121d;
  
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-pink: #ec4899;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-cyan: rgba(6, 182, 212, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-glow: 0 0 25px rgba(6, 182, 212, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==================== SITE HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.85rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
}

.logo-brand span {
  color: var(--accent-cyan);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-status-badge {
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 700;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #0284c7);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-emerald:hover {
  background: rgba(16, 185, 129, 0.25);
}

.cart-badge {
  background: var(--accent-pink);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  padding: 2rem 0;
}

.hero-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.hero-tab-btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hero-tab-btn.active, .hero-tab-btn:hover {
  color: #ffffff;
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

.hero-slide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-full);
  color: var(--accent-cyan);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.hero-title span {
  color: var(--accent-cyan);
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.hero-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-glass);
  min-height: 250px;
}

.hero-img {
  max-width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ==================== CREDIBILITY SECTION ==================== */
.cred-section {
  padding: 1rem 0 2.5rem;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cred-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: var(--transition);
}

.cred-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-cyan);
}

.cred-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cred-title {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.cred-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==================== CATALOG SECTION ==================== */
.catalog-section {
  padding: 2.5rem 0;
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  margin-top: 0.2rem;
}

.filter-bar {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  color: #ffffff;
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-cyan);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.prod-badge-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  background: var(--accent-pink);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.prod-img-box {
  width: 100%;
  height: 200px;
  background: rgba(14, 19, 31, 0.8);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

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

.prod-category {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.prod-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.prod-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod-price-row {
  margin-bottom: 0.85rem;
}

.prod-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent-cyan);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  padding: 2.5rem 0;
  background: rgba(14, 19, 31, 0.4);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.test-stars {
  color: var(--accent-amber);
  font-size: 0.85rem;
}

.test-text {
  font-size: 0.85rem;
  color: #e2e8f0;
  font-style: italic;
  line-height: 1.5;
  flex-grow: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.test-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 0.85rem;
}

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-glass);
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-actions {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.82rem;
  color: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.float-phone {
  background: linear-gradient(135deg, #10b981, #059669);
}

.float-zalo {
  background: linear-gradient(135deg, #0284c7, #2563eb);
}

/* ==================== MODALS & DRAWER ==================== */
.modal-overlay, .cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active, .cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-modal);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  width: 92%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.modal-header {
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 800;
}

.modal-close {
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: white;
}

.modal-body {
  padding: 1.25rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-main);
}

.form-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 0.88rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

/* Cart Drawer Right Side */
.cart-drawer-overlay {
  justify-content: flex-end;
}

.cart-drawer {
  background: var(--bg-modal);
  width: 100%;
  max-width: 420px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.8);
  transform: translateX(100%);
  transition: var(--transition);
}

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

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.15rem;
}

.cart-item-row {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-glass);
}

.cart-item-img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.2);
}

.cart-footer {
  padding: 1.15rem;
  border-top: 1px solid var(--border-glass);
  background: rgba(0,0,0,0.3);
}

/* ==================== RESPONSIVE MEDIA QUERIES ==================== */
@media (max-width: 1024px) {
  .hero-slide {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.2rem;
  }
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ==================== PRODUCT DETAIL LANDING PAGE MODAL ==================== */
.product-detail-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.3);
}

.pd-header-brand {
  font-weight: 800;
  font-size: 1.15rem;
}

.pd-header-right {
  display: flex;
  align-items: center;
}

.pd-header-hotline {
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 0.95rem;
}

.pd-body {
  padding: 1.5rem;
  max-height: 80vh;
  overflow-y: auto;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.pd-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pd-badge-container {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 5;
}

.pd-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: black;
  border: 1px solid var(--border-glass);
}

.pd-video-wrapper iframe,
.pd-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pd-image-wrapper {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-image-wrapper img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.pd-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.pd-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.25;
}

.pd-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
}

.pd-price-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pd-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.pd-gifts-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.pd-gifts-box h4 {
  color: #ef4444;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pd-gifts-box p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.45;
}

.pd-cta-block {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pd-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.pd-btn-zalo {
  background: #10b981; /* Emerald green for contrast */
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.pd-btn-zalo:hover {
  background: #059669;
  transform: translateY(-2px);
}

.pd-btn-phone {
  background: #ef4444; /* Bright Red */
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.pd-btn-phone:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.pd-specs-section h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pd-specs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-specs-list li {
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pd-commitments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.01);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-glass);
}

.pd-commit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==================== STICKY BOTTOM BAR FOR MOBILE ==================== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(14, 19, 31, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-glass);
  display: none;
  grid-template-columns: 1fr 1fr;
  z-index: 9999;
  padding: 0.5rem;
  gap: 0.5rem;
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.sticky-btn-phone {
  background: #ef4444;
}

.sticky-btn-zalo {
  background: #10b981;
}

@media (max-width: 768px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .pd-body {
    max-height: 90vh;
    padding-bottom: 80px; /* Space for sticky bar */
  }

  .product-detail-modal-active .sticky-bottom-bar {
    display: grid !important;
  }
}
