/* ==========================================================================
   Shane Computers - Core & Firebase Integration Stylesheet
   Design System: Apple / Corsair / ASUS ROG Dark Aesthetic & Glassmorphism
   ========================================================================== */

:root {
  --sc-bg-main: #0a0a0f;
  --sc-bg-card: rgba(18, 18, 26, 0.7);
  --sc-bg-glass: rgba(22, 22, 34, 0.65);
  --sc-border-glass: rgba(255, 255, 255, 0.12);
  --sc-border-glow: rgba(29, 134, 196, 0.4);

  --sc-accent-blue: #1d86c4;
  --sc-accent-glow: #00d2ff;
  --sc-accent-purple: #7b2fff;
  --sc-text-main: #f3f4f6;
  --sc-text-muted: #9ca3af;
  --sc-text-dim: #6b7280;

  --sc-success: #10b981;
  --sc-danger: #ef4444;
  --sc-warning: #f59e0b;

  --sc-radius-lg: 16px;
  --sc-radius-md: 12px;
  --sc-radius-sm: 8px;

  --sc-shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --sc-shadow-glow: 0 0 20px rgba(29, 134, 196, 0.25);
  --sc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & helper classes */
.sc-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-section {
  padding: 60px 0;
  margin-top: 90px;
}

.section-header-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header-sub {
  color: var(--sc-text-muted);
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Product Cards & Grid
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--sc-bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--sc-border-glass);
  border-radius: var(--sc-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--sc-transition);
  opacity: 0;
  transform: translateY(20px);
}

.product-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

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

.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  /* 4:3 Aspect Ratio */
  background: #050508;
  overflow: hidden;
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.4s ease;
}

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

.product-img-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: #0d0e15;
}

.product-img-wrapper.img-fallback img {
  display: none;
}

.product-img-wrapper.img-fallback .product-img-fallback {
  display: flex;
}

.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

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

.product-cat-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: inline-block;
  width: fit-content;
}

.product-name {
  color: var(--sc-text-main);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
}

.product-brand {
  font-size: 0.85rem;
  color: var(--sc-text-muted);
  margin-bottom: 12px;
}

.product-sku {
  font-size: 0.75rem;
  color: var(--sc-text-dim);
  margin-bottom: 8px;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.old-price {
  font-size: 0.85rem;
  color: var(--sc-text-dim);
  text-decoration: line-through;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.stock-badge.in-stock {
  color: var(--sc-success);
}

.stock-badge.in-stock .stock-dot {
  background: var(--sc-success);
  box-shadow: 0 0 8px var(--sc-success);
}

.stock-badge.out-stock {
  color: var(--sc-danger);
}

.stock-badge.out-stock .stock-dot {
  background: var(--sc-danger);
}

.product-actions {
  display: flex;
  gap: 10px;
}

.btn-view-details {
  flex: 1;
  background: rgba(29, 134, 196, 0.15);
  color: var(--sc-accent-blue);
  border: 1px solid rgba(29, 134, 196, 0.4);
  padding: 8px 12px;
  border-radius: var(--sc-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: var(--sc-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-view-details:hover {
  background: var(--sc-accent-blue);
  color: #ffffff;
  border-color: var(--sc-accent-blue);
}

.btn-whatsapp {
  background: rgba(16, 185, 129, 0.15);
  color: var(--sc-success);
  border: 1px solid rgba(16, 185, 129, 0.4);
  width: 36px;
  height: 36px;
  border-radius: var(--sc-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--sc-transition);
}

.btn-whatsapp:hover {
  background: var(--sc-success);
  color: #ffffff;
}

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #ffffff;
  border: 1px solid var(--sc-border-glass);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--sc-transition);
}

.view-all-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Skeleton Loading Animation */
.skeleton .skel-img {
  background: linear-gradient(90deg, #12131c 25%, #1c1e2d 50%, #12131c 75%);
  background-size: 200% 100%;
  animation: skelLoading 1.5s infinite;
}

.skel-line {
  height: 12px;
  border-radius: 4px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #12131c 25%, #1c1e2d 50%, #12131c 75%);
  background-size: 200% 100%;
  animation: skelLoading 1.5s infinite;
}

.skel-short {
  width: 40%;
}

.skel-long {
  width: 90%;
}

.skel-med {
  width: 65%;
}

.skel-price {
  width: 50%;
  height: 20px;
}

.skel-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.skel-btn {
  flex: 1;
  height: 34px;
  border-radius: 6px;
  background: #181a26;
}

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

  100% {
    background-position: -200% 0;
  }
}

/* Dynamic Navbar Enhancements */
#nav-dropdown-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.dropdown-item-img {
  width: 130px;
  height: 110px;
  border-radius: 10px;
  background: #08080c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--sc-border-glass);
  margin-bottom: 8px;
}

.dropdown-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.dropdown-item-icon {
  font-size: 2.5rem;
}

.dropdown-item-name {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-item-count {
  font-size: 0.75rem;
  color: var(--sc-text-dim);
}

.sidebar-cat-icon {
  margin-right: 12px;
  font-size: 1.2rem;
}

.sidebar-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ==========================================================================
   Realtime Search Overlay
   ========================================================================== */
#sc-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#sc-search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sc-search-inner {
  width: 90%;
  max-width: 750px;
  position: relative;
}

.sc-search-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}

.sc-search-bar-wrap {
  position: relative;
  margin-bottom: 20px;
}

.sc-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sc-accent-blue);
  font-size: 1.3rem;
}

#sc-search-input {
  width: 100%;
  padding: 18px 20px 18px 55px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--sc-border-glass);
  border-radius: var(--sc-radius-md);
  color: #ffffff;
  font-size: 1.2rem;
  outline: none;
}

#sc-search-input:focus {
  border-color: var(--sc-accent-blue);
  box-shadow: 0 0 20px rgba(29, 134, 196, 0.3);
}

.sc-live-results {
  max-height: 50vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-live-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--sc-radius-sm);
  text-decoration: none;
  gap: 15px;
  transition: var(--sc-transition);
}

.sc-live-item:hover {
  background: rgba(29, 134, 196, 0.15);
  border-color: var(--sc-accent-blue);
}

.sc-live-img {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sc-live-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sc-live-info {
  flex: 1;
}

.sc-live-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.sc-live-meta {
  color: var(--sc-text-dim);
  font-size: 0.8rem;
}

.sc-live-price {
  color: var(--sc-accent-blue);
  font-weight: 700;
}

.sc-see-all {
  text-align: center;
  padding: 12px;
  color: var(--sc-accent-blue);
  text-decoration: none;
  font-weight: 600;
}

.sc-search-hint {
  text-align: center;
  color: var(--sc-text-dim);
  font-size: 0.85rem;
  margin-top: 15px;
}

mark {
  background: rgba(29, 134, 196, 0.4);
  color: #fff;
  padding: 0 2px;
  border-radius: 2px;
}

/* Category Header Component */
.category-header-banner {
  background: linear-gradient(180deg, rgba(29, 134, 196, 0.1) 0%, rgba(10, 10, 15, 0) 100%);
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--sc-border-glass);
  margin-bottom: 40px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--sc-text-dim);
  margin-bottom: 15px;
}

.breadcrumbs a {
  color: var(--sc-text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--sc-accent-blue);
}

/* Filter Layout */
.category-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .category-layout {
    grid-template-columns: 1fr;
  }
}

/* Pagination Button Styling */
.page-btn {
  background: rgba(22, 22, 34, 0.8);
  border: 1px solid var(--sc-border-glass);
  color: var(--sc-text-main);
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--sc-radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--sc-transition);
}

.page-btn:hover {
  background: rgba(29, 134, 196, 0.2);
  border-color: var(--sc-accent-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-btn.active {
  background: linear-gradient(135deg, var(--sc-accent-blue), #0284c7);
  border-color: var(--sc-accent-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(29, 134, 196, 0.4);
}

.page-ellipsis {
  color: var(--sc-text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 1rem;
}

.filter-sidebar {
  background: var(--sc-bg-glass);
  border: 1px solid var(--sc-border-glass);
  border-radius: var(--sc-radius-md);
  padding: 20px;
  height: fit-content;
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.filter-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sc-text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
  cursor: pointer;
}

.filter-check input {
  accent-color: var(--sc-accent-blue);
}

.range-slider {
  width: 100%;
  accent-color: var(--sc-accent-blue);
}

/* ==========================================================================
   Shopping Cart & Drawer Styling
   ========================================================================== */
.btn-add-cart {
  background: rgba(123, 47, 255, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(123, 47, 255, 0.4);
  padding: 8px 12px;
  border-radius: var(--sc-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--sc-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-cart:hover {
  background: var(--sc-accent-purple);
  color: #ffffff;
  border-color: var(--sc-accent-purple);
  box-shadow: 0 0 12px rgba(123, 47, 255, 0.4);
}

.pd-btn-cart {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--sc-radius-sm);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #7b2fff, #6366f1);
  color: #ffffff;
  border: none;
  font-size: 1.05rem;
  transition: var(--sc-transition);
  box-shadow: 0 4px 15px rgba(123, 47, 255, 0.3);
}

.pd-btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 47, 255, 0.5);
}

.sc-cart-count-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #0c0c0c;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.5);
}

/* Cart Toast Notification */
.sc-cart-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(18, 18, 26, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sc-success);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--sc-radius-md);
  font-size: 0.95rem;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sc-cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.sc-cart-toast i {
  color: var(--sc-success);
  font-size: 1.3rem;
}

/* Cart Drawer Modal */
.sc-cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2500;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sc-cart-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.sc-cart-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.sc-cart-drawer {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: rgba(14, 14, 20, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--sc-border-glass);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

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

.sc-cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--sc-border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-cart-header h3 {
  color: #ffffff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-cart-close {
  background: none;
  border: none;
  color: var(--sc-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
}

.sc-cart-close:hover {
  color: #ffffff;
}

.sc-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-cart-empty {
  text-align: center;
  margin: auto;
  color: var(--sc-text-dim);
}

.sc-cart-empty i {
  font-size: 3.5rem;
  margin-bottom: 15px;
  opacity: 0.4;
}

.sc-cart-empty p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.sc-cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--sc-border-glass);
  padding: 12px;
  border-radius: var(--sc-radius-sm);
}

.sc-cart-item-img {
  width: 55px;
  height: 55px;
  background: #000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.sc-cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sc-cart-item-info {
  flex: 1;
  min-width: 0;
}

.sc-cart-item-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.sc-cart-item-price {
  color: var(--sc-accent-blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.sc-cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-cart-item-controls button {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--sc-border-glass);
  color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.sc-cart-item-controls span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.sc-cart-item-remove {
  background: none;
  border: none;
  color: var(--sc-danger);
  cursor: pointer;
  padding: 6px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.sc-cart-item-remove:hover {
  opacity: 1;
}

.sc-cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--sc-border-glass);
  background: rgba(10, 10, 15, 0.9);
}

.sc-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 1.1rem;
}

.sc-cart-total-row strong {
  color: var(--sc-accent-glow);
  font-size: 1.3rem;
}

.sc-cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-btn-checkout-wa {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: #ffffff;
  border: none;
  border-radius: var(--sc-radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--sc-transition);
}

.sc-btn-checkout-wa:hover {
  background: #20ba5a;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.sc-btn-clear-cart {
  background: none;
  border: none;
  color: var(--sc-text-dim);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 4px;
}

.sc-btn-clear-cart:hover {
  color: var(--sc-danger);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 850px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

.pd-main-img {
  background: #050508;
  border: 1px solid var(--sc-border-glass);
  border-radius: var(--sc-radius-lg);
  padding: 30px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pd-main-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pd-pricing {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.pd-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.pd-old-price {
  font-size: 1.2rem;
  color: var(--sc-text-dim);
  text-decoration: line-through;
}

.pd-you-save {
  color: var(--sc-success);
  font-size: 0.9rem;
  font-weight: 600;
}

.pd-actions {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.pd-btn-whatsapp,
.pd-btn-order {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--sc-radius-sm);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pd-btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.pd-btn-order {
  background: var(--sc-accent-blue);
  color: #fff;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.specs-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.specs-table tr td:first-child {
  color: var(--sc-text-dim);
  width: 35%;
}

.specs-table tr td:last-child {
  color: #fff;
}