/* ============================================================
   PATEL DENTAL DEPOT — Ultra Premium UI Styles
   ultra.css | Loaded AFTER all other CSS files for premium overrides
   ============================================================ */

/* ---------- Scroll Progress Bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light, #5eead4) 0%, var(--primary, #0f766e) 50%, var(--accent, #14b8a6) 100%);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* ---------- WhatsApp Float Pulse ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp, #25d366);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp, #25d366);
  opacity: 0;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ---------- Scroll-to-Top Button ---------- */
#scroll-top-btn {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

#scroll-top-btn:hover {
  background: var(--primary, #0f766e);
  border-color: var(--primary-light, #5eead4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.3);
}

/* ---------- Skeleton Loaders ---------- */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
  width: 100%;
}

.skeleton-text.title {
  height: 24px;
  width: 70%;
  margin-bottom: 16px;
}

.skeleton-image {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* ---------- Login Split-Screen Redesign ---------- */
.login-split-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
  width: 100%;
  background: #0b0f19;
  overflow: hidden;
}

@media (max-width: 991px) {
  .login-split-container {
    grid-template-columns: 1fr;
  }
  .login-left-decor {
    display: none;
  }
}

.login-left-decor {
  position: relative;
  background: linear-gradient(135deg, #090c15 0%, #0F172A 50%, #0c3631 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
  color: #fff;
  overflow: hidden;
}

.login-decor-blobs .decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.login-decor-blobs .blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary, #0f766e), transparent 70%);
  top: -100px;
  left: -100px;
}

.login-decor-blobs .blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent, #14b8a6), transparent 70%);
  bottom: -50px;
  right: -50px;
}

.login-decor-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.login-decor-center {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: auto 0;
}

.login-decor-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.prem-gradient-text {
  background: linear-gradient(135deg, var(--primary-light, #93c5fd) 0%, var(--primary, #2563eb) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-light, #93c5fd);
  display: inline-block;
}

.login-decor-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.login-decor-features {
  display: grid;
  gap: 20px;
}

.login-decor-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.login-decor-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(94, 234, 212, 0.1);
  border: 1px solid rgba(94, 234, 212, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light, #5eead4);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.login-decor-feat h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #fff;
}

.login-decor-feat p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.login-decor-footer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  position: relative;
  z-index: 2;
}

.login-right-form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
}

/* Glassmorphism style inside form side */
.login-right-form .auth-card {
  max-width: 440px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  width: 100%;
}

.login-right-form .auth-tab {
  color: rgba(255, 255, 255, 0.5);
  border-bottom-width: 3px;
}

.login-right-form .auth-tab.active {
  color: var(--primary-light, #5eead4);
  border-bottom-color: var(--primary-light, #5eead4);
}

.login-right-form .form-group label {
  color: rgba(255, 255, 255, 0.75);
}

.login-right-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
}

.login-right-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light, #5eead4);
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.15);
}

.login-right-form .input-wrapper i {
  color: rgba(255, 255, 255, 0.4);
}

.login-right-form .btn-submit {
  background: linear-gradient(135deg, var(--primary, #0f766e) 0%, var(--accent, #14b8a6) 100%);
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

.login-right-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.55);
}

.login-right-form .divider {
  color: rgba(255, 255, 255, 0.4);
}

.login-right-form .divider::before,
.login-right-form .divider::after {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.login-right-form .btn-google {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
}

.login-right-form .btn-google:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* ---------- Checkout Redesign ---------- */
.checkout-step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 24px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light, #94a3b8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout-step.active {
  color: var(--primary, #0f766e);
}

.checkout-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
}

.checkout-step-sep {
  flex: 0 0 40px;
  height: 2px;
  background: var(--border, #e2e8f0);
}

/* Payment selection radio cards */
.payment-card-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  padding: 20px;
  border: 2px solid var(--border, #e2e8f0);
  border-radius: 16px;
  background: #fff;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.payment-card-label:hover {
  border-color: var(--primary-light, #5eead4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.06);
}

.payment-card-label:has(input[type="radio"]:checked) {
  border-color: var(--primary, #0f766e);
  background: var(--primary-bg, #f0fdfa);
}

.payment-card-label input[type="radio"]:checked ~ .payment-check {
  background: var(--primary, #0f766e);
  border-color: var(--primary, #0f766e);
  color: #fff;
}

.payment-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin-top: 3px;
}

.payment-details {
  flex: 1;
}

.payment-details strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text, #0f172a);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.payment-details small {
  color: var(--text-secondary, #475569);
  font-size: 0.8rem;
  line-height: 1.4;
  display: block;
}

/* Apply active state classes through container check */
.payment-card-label.checked {
  border-color: var(--primary, #0f766e);
  background: var(--primary-bg, #f0fdfa);
}

/* Coupon premium layout */
.coupon-input-wrap {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.coupon-input-wrap input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.coupon-input-wrap input:focus {
  border-color: var(--primary, #0f766e);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.coupon-input-wrap button {
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Account Dashboard ---------- */
.dashboard-banner {
  background: linear-gradient(135deg, var(--primary-dark, #115e59) 0%, var(--primary, #0f766e) 50%, var(--accent, #14b8a6) 100%);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}

.dashboard-banner-blobs .decor-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.dashboard-banner-blobs .blob-1 {
  width: 300px;
  height: 300px;
  background: #5eead4;
  top: -100px;
  right: -50px;
}

.dashboard-banner-content {
  position: relative;
  z-index: 2;
}

.dashboard-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #fff;
}

.dashboard-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Custom premium card stats in dashboard */
.dashboard-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.dashboard-stat-card {
  background: #fff;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.dashboard-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.dashboard-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-bg, #f0fdfa);
  color: var(--primary, #0f766e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dashboard-stat-info .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text, #0f172a);
  line-height: 1.2;
}

.dashboard-stat-info .lbl {
  font-size: 0.78rem;
  color: var(--text-secondary, #475569);
  font-weight: 600;
}

/* Status pills for order tables */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.status-pill-pending {
  background: #fef3c7;
  color: #d97706;
}

.status-pill-shipped {
  background: #e0f2fe;
  color: #0284c7;
}

.status-pill-delivered {
  background: #dcfce7;
  color: #16a34a;
}

.status-pill-cancelled {
  background: #fee2e2;
  color: #dc2626;
}

/* Dashboard Navigation Premium Styling */
.dashboard-nav-item {
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.dashboard-nav-item:hover {
  background: var(--primary-bg, #f0fdfa);
  color: var(--primary, #0f766e) !important;
  padding-left: 20px;
}

.dashboard-nav-item.active {
  background: var(--primary, #0f766e);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
}

/* ---------- Product Page Styling ---------- */
.premium-product-hero {
  position: relative;
  background: linear-gradient(135deg, #090c15 0%, #0F172A 55%, #082d29 100%);
  padding-top: 130px;
  padding-bottom: 80px;
  color: #fff;
  overflow: hidden;
}

.premium-product-hero .hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 12px 0 16px 0;
  letter-spacing: -0.5px;
}

.premium-product-hero .hero-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--primary-light, #5eead4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.premium-product-hero .hero-tagline {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 30px;
}

/* Option select buttons */
.option-select-btn {
  border: 1.5px solid var(--border, #e2e8f0);
  background: transparent;
  color: var(--text, #0f172a);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.option-select-btn:hover {
  border-color: var(--primary, #0f766e);
  color: var(--primary, #0f766e);
}

.option-select-btn input[type="radio"]:checked + span {
  color: var(--primary, #0f766e);
}

/* Quantity Stepper styling */
.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
  height: 48px;
}

.qty-btn {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-secondary, #475569);
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--surface-2, #f1f5f9);
  color: var(--text, #0f172a);
}

.qty-value {
  width: 50px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text, #0f172a);
  border: none;
  background: transparent;
  outline: none;
}

/* Fallback icons category styling */
.category-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg, #f0fdfa);
  color: var(--primary, #0f766e);
  font-size: 4rem;
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

/* Premium Product Hero Grid */
.page-header-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .page-header-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 991px) {
  .hero-content-col {
    align-items: center;
    text-align: center;
  }
}

/* Breadcrumbs styling */
.hero-breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  text-decoration: none;
}

.hero-breadcrumb a:hover {
  color: var(--primary-light, #5eead4);
}

.hero-breadcrumb i {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* Trust badges list in hero */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .hero-trust-badges {
    justify-content: center;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.trust-badge i {
  color: var(--primary-light, #5eead4);
}

/* CTA buttons inside hero */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-ctas {
    justify-content: center;
  }
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary, #0f766e) 0%, var(--accent, #14b8a6) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 118, 110, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Corner badges section - Positioned horizontally below right hero image */
.hero-corner-badges {
  position: absolute;
  bottom: 25px;
  right: 24px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 15;
}

@media (max-width: 991px) {
  .hero-corner-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}

.hero-corner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(15, 118, 110, 0.15);
  border: 1.5px solid rgba(94, 234, 212, 0.3);
  color: var(--primary-light, #5eead4);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.hero-corner-badge.bestseller {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}

.hero-corner-badge.new {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.2), rgba(20, 184, 166, 0.2));
  border-color: rgba(20, 184, 166, 0.5);
  color: #2dd4bf;
}

/* Graphic layout on right side of hero */
.hero-graphic-col {
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
}

@media (max-width: 991px) {
  .hero-graphic-col {
    max-width: 480px;
    margin: 0 auto;
    height: 280px;
  }
}

.hero-graphic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 100%);
  backdrop-filter: blur(1px);
}

/* ---------- Product Detail Layout Redesign (Desktop & Mobile) ---------- */
@media (min-width: 992px) {
  .product-detail {
    display: grid !important;
    grid-template-columns: 1fr 1.1fr !important;
    grid-template-rows: auto auto !important;
    gap: 48px !important;
    align-items: start !important;
  }
  
  .product-image-container {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }
  
  .product-trust-badges {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin-top: 24px !important;
    border-top: 1.5px solid var(--border, #e2e8f0) !important;
    border-bottom: 1.5px solid var(--border, #e2e8f0) !important;
    padding: 20px 8px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.02) !important;
    border: 1.5px solid var(--border, #e2e8f0) !important;
  }
  
  .product-info {
    grid-column: 2 !important;
    grid-row: 1 / span 2 !important;
    padding: 0 !important;
  }
}

@media (max-width: 991px) {
  .product-detail {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  
  .product-image-container {
    display: none !important;
  }
  
  .product-trust-badges {
    margin: 16px 0 !important;
  }
  
  .hero-graphic-col {
    display: none !important;
  }
}

/* ---------- Custom Page Header Background (About & Contact Pages) ---------- */
body[data-page="about"] .page-header,
body[data-page="contact"] .page-header {
  background: linear-gradient(135deg, #072f2d 0%, #0d1b2a 50%, #0c3631 100%) !important;
  border-bottom: 1px solid rgba(20, 184, 166, 0.15) !important;
  position: relative !important;
  padding: 120px 0 60px !important;
}

body[data-page="about"] .page-header::before,
body[data-page="contact"] .page-header::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.1), transparent 50%) !important;
  pointer-events: none !important;
}
