.sticky-cart-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(17,17,17,0.97);
      backdrop-filter: blur(16px);
      border-top: 1px solid var(--border-gold);
      padding: 0.9rem 2rem;
      z-index: 150;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }
    .sticky-cart-bar.visible { transform: translateY(0); }
    @media (max-width: 768px) {
      .sticky-cart-bar { padding: 0.75rem 1rem; }
      .sticky-price-name { display: none; }
    }
    .review-card {
      padding: 1.5rem;
      border: 1px solid rgba(0,0,0,0.09);
      border-radius: var(--radius);
      background: #f0ece4;
      margin-bottom: 1rem;
    }
    .gallery-zoom {
      cursor: crosshair;
      overflow: hidden;
    }
    .gallery-zoom:hover .gallery-main-img {
      transform: scale(1.08);
    }