
:root {
  --mp-black: #0b0b0c;
  --mp-brown: #1a0f0a;
  --mp-gold: #d4af37;
  --mp-gold-soft: #e6c76a;
  --mp-surface: rgba(255, 255, 255, .06);
  --mp-border: rgba(212, 175, 55, .25);
  --mp-text: rgba(255, 255, 255, .88);
  --mp-muted: rgba(255, 255, 255, .68);

  /* aliases used elsewhere */
  --accent-gold: var(--mp-gold);
  --dark-bg: var(--mp-black);
  --bs-white-rgb: 255, 255, 255;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
	radial-gradient(1200px 600px at 15% 10%, rgba(212, 175, 55, .14), transparent 55%),
	radial-gradient(900px 500px at 90% 25%, rgba(230, 199, 106, .10), transparent 55%),
	linear-gradient(140deg, var(--mp-black), var(--mp-brown));
  color: var(--mp-text);
  font-family: 'Segoe UI', 'Trebuchet MS', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 100vh;
}

.cart-icon-wrapper {
  position: relative;
}

.cart-icon-wrapper a {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid var(--mp-black);
}

/* Utilities */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.mp-muted {
  color: var(--mp-muted);
}

.mp-section-title {
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .9rem;
  color: var(--mp-gold-soft);
}

.mp-surface {
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px);
}

/* Navigation Bar */
.navbar-custom {
  background: linear-gradient(90deg, var(--mp-black) 0%, rgba(26, 15, 10, 0.9) 50%, var(--mp-black) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mp-border);
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.08);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  filter: brightness(1.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: var(--mp-text);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mp-gold), var(--mp-gold-soft));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu li a:hover::after {
  width: calc(100% - 2.5rem);
}

.nav-menu li a:hover {
  color: var(--mp-gold-soft);
}

.nav-icons {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-icons a {
  color: var(--mp-gold);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mp-surface);
  text-decoration: none;
}

.nav-icons a:hover {
  color: var(--mp-gold-soft);
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.1);
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Toggle Button */
.toggle-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 7px;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: -5px;
}

.toggle-menu span {
  width: 35px;
  height: 4px;
  background: var(--mp-gold);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
  display: block;
}

.toggle-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

.toggle-menu.active span:nth-child(2) {
  opacity: 0;
}

.toggle-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--mp-black) 0%, var(--mp-brown) 100%);
  border-right: 1px solid var(--mp-border);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1040;
  padding-top: 80px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.side-menu.active {
  left: 0;
}

.side-menu ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
}

.side-menu ul li {
  border-bottom: 1px solid var(--mp-border);
}

.side-menu ul li a {
  color: var(--mp-text);
  text-decoration: none;
  display: block;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 12px;
}

.side-menu ul li a:hover {
  color: var(--mp-gold-soft);
  background: var(--mp-surface);
  padding-left: 2rem;
}

.side-menu-icons {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--mp-border);
  margin-top: 1rem;
  flex-wrap: wrap;
}

.side-menu-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mp-gold);
  background: var(--mp-surface);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.side-menu-icons a:hover {
  color: var(--mp-gold-soft);
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.1);
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1030;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(61, 40, 23, 0.2) 50%, rgba(212, 175, 55, 0.05) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--mp-border);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
	transform: translateY(0px) translateX(0px);
  }

  50% {
	transform: translateY(30px) translateX(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from {
	opacity: 0;
	transform: translateY(40px);
  }

  to {
	opacity: 1;
	transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--mp-gold-soft), var(--mp-gold), rgba(212, 175, 55, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--mp-gold-soft);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-soft));
  color: var(--mp-black) !important;
  border: none;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-gold:hover::before {
  width: 300px;
  height: 300px;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
  border: 2px solid var(--mp-gold) !important;
  color: var(--mp-gold) !important;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-gold:hover {
  background: var(--mp-gold);
  color: var(--mp-black) !important;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: var(--accent-gold);
  color: var(--dark-bg);
  text-decoration: none;
  font-weight: 700;
  border-radius: 3px;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--accent-gold);
}

/* Product Cards (unified) */
.product-card {
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--mp-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* If you still use the older "product-img" header block */
.product-img {
  height: 190px;
  background:
	radial-gradient(260px 140px at 60% 35%, rgba(212, 175, 55, .22), transparent 60%),
	linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(212, 175, 55, .15);
}

/* Newer "product-image" variant */
.product-image {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(230, 199, 106, 0.1));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-image {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(230, 199, 106, 0.15));
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mp-gold-soft);
  margin-bottom: 0.75rem;
}

.product-desc {
  color: var(--mp-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mp-gold);
  margin-bottom: 1rem;
}

.price-original {
	text-decoration: line-through;
	color: var(--mp-muted);
	font-size: 1rem;
	margin-right: 0.5rem;
	font-weight: 500;
}

.price-promo {
	color: #ff4444;
	font-weight: 700;
}

.btn-add-cart {
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-soft));
  color: var(--mp-black);
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(230, 199, 106, 0.1) 50%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid var(--mp-border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.promo-label {
  font-size: 0.9rem;
  color: var(--mp-gold-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mp-gold-soft);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.promo-desc {
  color: var(--mp-text);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Sections */
.featured-section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--mp-gold-soft);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.features-section {
  padding: 5rem 0;
  background: var(--mp-surface);
  border-top: 1px solid var(--mp-border);
  border-bottom: 1px solid var(--mp-border);
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--mp-gold);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--mp-gold);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--mp-gold-soft);
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--mp-muted);
  font-size: 0.95rem;
}

/* Stock */
.stock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.stock-status.in-stock {
  color: #4ade80;
}

.stock-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.stock-status.in-stock .stock-indicator {
  background: #4ade80;
}

/* MP Buttons (merged, keep strongest rules) */
.mp-btn-gold {
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-soft)) !important;
  border: none !important;
  color: var(--mp-black) !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.mp-btn-gold:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3) !important;
  color: var(--mp-black) !important;
}

.mp-btn-gold:focus {
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-soft)) !important;
  color: var(--mp-black) !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
}

.mp-btn-outline-gold {
  border: 1px solid var(--mp-border) !important;
  color: var(--mp-gold-soft) !important;
  background: var(--mp-surface) !important;
  transition: all 0.3s ease !important;
}

.mp-btn-outline-gold:hover {
  background: rgba(212, 175, 55, .12) !important;
  color: var(--mp-gold-soft) !important;
  border-color: rgba(212, 175, 55, .45) !important;
}

.mp-btn-outline-gold:focus {
  color: var(--mp-gold-soft) !important;
  background: rgba(212, 175, 55, .12) !important;
  border-color: rgba(212, 175, 55, .45) !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
}

/* Option Buttons */
.btn.btn-sm.mp-btn-gold,
.btn.btn-sm.mp-btn-outline-gold {
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}

.btn.btn-sm.mp-btn-outline-gold {
  border: 1.5px solid var(--mp-border) !important;
  color: var(--mp-gold-soft) !important;
  background: transparent !important;
}

.btn.btn-sm.mp-btn-outline-gold:hover {
  background: rgba(212, 175, 55, .1) !important;
  border-color: var(--mp-gold-soft) !important;
}

/* Inputs */
.mp-input {
  background: var(--mp-surface);
  border: 1px solid rgba(212, 175, 55, .22);
  color: var(--mp-text);
}

.mp-input:focus {
  border-color: rgba(212, 175, 55, .45);
  box-shadow: 0 0 0 .25rem rgba(212, 175, 55, .12);
  background: rgba(255, 255, 255, .05);
  color: var(--mp-text);
}

/* Large Action Buttons */
.btn.py-3.mp-btn-gold {
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0.75rem 1.5rem !important;
  min-height: 50px;
}

.btn.py-3.mp-btn-outline-gold {
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  min-height: 50px;
}

.badge-bestseller {
  background: rgba(212, 175, 55, .14);
  border: 1px solid var(--mp-border);
  color: var(--mp-gold-soft);
}

/* Product Detail Gallery */
.img-main {
  height: 360px;
  width: 100%;
  border-radius: 1.25rem;
  border: 1px solid rgba(212, 175, 55, .22);
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;
}

.img-main:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, .15);
  transform: scale(1.02);
}

.thumb {
  height: 84px;
  width: 100%;
  border-radius: 1rem;
  border: 2px solid rgba(212, 175, 55, .18);
  background: var(--mp-surface);
  cursor: pointer;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
  user-select: none;
}

.thumb:hover {
  border-color: rgba(212, 175, 55, .35);
  transform: scale(1.02);
}

.thumb.active {
  border-color: rgba(212, 175, 55, .45);
  box-shadow: 0 0 10px rgba(212, 175, 55, .25);
}

/* Footer */
footer {
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.9) 0%, var(--mp-brown) 100%);
  border-top: 1px solid var(--mp-border);
  padding: 3rem 0 1.5rem;
  margin-top: 5rem;
}

.footer-section h5,
.footer-connect h5 {
  color: var(--mp-gold-soft);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--mp-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--mp-gold-soft);
  padding-left: 0.5rem;
}

.footer-connect {
  text-align: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mp-surface);
  border-radius: 50%;
  border: 1px solid var(--mp-border);
  transition: all 0.3s ease;
  color: var(--mp-gold);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--mp-gold);
  color: var(--mp-black);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--mp-border);
  padding-top: 2rem;
  text-align: center;
  color: var(--mp-muted);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 1rem;
}

.credits {
  font-size: 0.9rem;
  color: var(--mp-muted);
}

.credits a {
  color: var(--mp-gold);
  text-decoration: none;
}

.credits a:hover {
  color: var(--mp-gold-soft);
}

.copyright {
  color: var(--mp-gold-soft);
  font-weight: 600;
}

.mp-link {
  color: var(--mp-text);
  opacity: 0.9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mp-link:hover {
  color: var(--mp-gold-soft);
}

/* Tabs Styling */
.nav-tabs {
  border-bottom: 1px solid var(--mp-border);
  margin-bottom: 2rem;
}

.nav-tabs .nav-link {
  color: var(--mp-muted);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-tabs .nav-link:hover {
  color: var(--mp-gold-soft);
}

.nav-tabs .nav-link.active {
  color: var(--mp-gold-soft);
  border-bottom: 2px solid var(--mp-gold-soft);
  background-color: transparent;
}

.tab-content {
  margin-top: 1rem;
}

.tab-pane {
  line-height: 1.8;
}

.tab-pane p {
  margin-bottom: 1rem;
}

/* Sticky Left Column & Scrollable Right Column */
.gallery-sticky {
  position: static;
  height: auto;
  overflow-y: visible;
  padding-right: 0;
}

.details-scrollable {
  max-height: none;
  overflow-y: visible;
  padding-right: 0;
}

.gallery-sticky::-webkit-scrollbar,
.details-scrollable::-webkit-scrollbar {
  width: 6px;
}

.gallery-sticky::-webkit-scrollbar-track,
.details-scrollable::-webkit-scrollbar-track {
  background: var(--mp-surface);
  border-radius: 10px;
}

.gallery-sticky::-webkit-scrollbar-thumb,
.details-scrollable::-webkit-scrollbar-thumb {
  background: var(--mp-gold);
  border-radius: 10px;
}

.gallery-sticky::-webkit-scrollbar-thumb:hover,
.details-scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--mp-gold-soft);
}

@media (min-width: 992px) {
  .gallery-sticky {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(61, 40, 23, 0.1) 100%);
	border: 1px solid var(--mp-border);
	border-radius: 12px;
	padding: 1.5rem;
	height: fit-content;
	position: sticky;
	top: 100px;
	overflow-y: visible;
  }

  .details-scrollable {
	max-height: none;
	overflow-y: visible;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .gallery-sticky {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(61, 40, 23, 0.1) 100%);
	border: 1px solid var(--mp-border);
	border-radius: 12px;
	padding: 1.5rem;
	height: fit-content;
	position: sticky;
	top: 80px;
	overflow-y: visible;
  }

  .details-scrollable {
	max-height: none;
	overflow-y: visible;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .toggle-menu {
	display: flex;
  }

  .nav-desktop {
	display: none !important;
  }

  .navbar-custom {
	padding: 1rem;
  }

  .navbar-brand {
	font-size: 1.4rem;
  }

  .navbar-container {
	width: 100%;
  }

  .nav-icons {
	gap: 0.5rem;
  }

  .nav-icons a {
	width: 36px;
	height: 36px;
	font-size: 1.1rem;
  }

  .side-menu {
	max-width: 280px;
  }

  .hero-title {
	font-size: 2.5rem;
  }

  .hero-subtitle {
	font-size: 1.1rem;
  }

  .section-title {
	font-size: 2rem;
  }

  .promo-title {
	font-size: 1.8rem;
  }

  .img-main {
	height: 280px;
  }

  .thumb {
	height: 70px;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
	font-size: 1.2rem;
	letter-spacing: 1px;
  }

  .nav-icons a {
	width: 32px;
	height: 32px;
	font-size: 1rem;
  }

  .toggle-menu span {
	width: 35px;
	margin-left: 10px;
  }

  .side-menu {
	max-width: 100%;
  }

  .side-menu ul li a {
	padding: 0.9rem 1rem;
	font-size: 1.5rem;
	margin-top: 12px;
  }

  .gapicon {
	margin-left: 20px;
  }

  .hero-title {
	font-size: 1.8rem;
  }

  .hero-subtitle {
	font-size: 1rem;
  }

  .section-title {
	font-size: 1.5rem;
  }

  .promo-banner {
	padding: 1.5rem;
  }

  .promo-title {
	font-size: 1.3rem;
  }

  .btn-gold {
	padding: 0.7rem 2rem;
	font-size: 0.9rem;
  }

  .img-main {
	height: 240px;
  }

  .thumb {
	height: 60px;
	font-size: 0.75rem;
  }

  h1 {
	font-size: 1.5rem !important;
  }
}

/*image fitting in card: Shafiq*/
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-image-wrapper {
    width: 100%;
    height: 220px; /* SAME height for all images */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* IMPORTANT */
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.col-lg-3 {
    display: flex;
}

.product-card {
    width: 100%;
}

