:root {
  --color-bg: #0d1117;
  --color-bg-light: #161b22;
  --color-text: #c9d1d9;
  --color-accent: #d4af37;
  --color-accent-soft: rgba(212, 175, 55, 0.15);
  --font-title: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}
}

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

body {
  font-family: var(--font-body);
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(45, 45, 68, 0.8) 100%),
    url('../img/laramblafondo.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--color-text);
  min-height: 100vh;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Glass Morphism - Subtle Professional Effect */
.glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px) saturate(130%);
  -webkit-backdrop-filter: blur(15px) saturate(130%);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent);
  transition: left 0.8s;
  pointer-events: none;
  z-index: 0;
}

.glass:hover::before {
  left: 100%;
}

/* Header - Subtle Liquid Glass */
header {
  background: rgba(160, 160, 180, 0.1);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow:
    0 2px 15px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

header .logo-container img {
  height: 65px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: var(--transition);
}

header .logo-container:hover img {
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.4));
  transform: scale(1.05);
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: var(--transition);
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
}

header nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

header nav a:hover::before {
  opacity: 1;
}

header nav a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-accent);
  box-shadow:
    0 2px 8px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* Main Content */
main {
  min-height: calc(100vh - 80px);
  padding: 2rem 0;
}

/* Footer */
footer {
  background: rgba(13, 17, 23, 0.9);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

footer .social-icons a {
  color: var(--color-accent);
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
}

footer .social-icons a:hover {
  transform: scale(1.2);
  color: white;
}

/* Product Box - Premium Glass Design */
.product-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1rem 1.25rem 1.25rem; /* Reduced top padding */
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible; /* Allowing image to pop out if needed */
  height: 100%;
}

.product-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
  z-index: 0;
}

.product-box:hover::after {
  opacity: 1;
}

.product-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--color-accent);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--color-accent-soft);
  background: rgba(255, 255, 255, 0.06);
}

.product-img-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  margin-top: -0.5rem;
  aspect-ratio: 1 / 1; /* Cuadrado — máximo aprovechamiento con 3 columnas */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
  background: rgba(255,255,255,0.02);
  width: 100%;
}

/* aspect-ratio: 9/10 controla la proporci\u00f3n en todos los breakpoints.
   No se usa max-height para no romper el ratio. */

.product-box:hover .product-img-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  filter: brightness(1);
}

.product-box:hover .product-img-wrapper img {
  transform: scale(1.03);
}

/* Placeholder for missing product images */
.img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
  border-radius: 14px;
}

/* Unavailable Product Styles */
.product-unavailable {
  opacity: 0.7;
  filter: grayscale(0.4);
  pointer-events: none;
  /* Disable interactions for forced state */
  cursor: not-allowed;
}

.product-unavailable .product-img-wrapper {
  position: relative;
}

.unavailable-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-accent);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  border-left: 4px solid var(--color-accent);
}

.product-unavailable .btn-primary {
  background: #444 !important;
  border: none !important;
  color: #888 !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.product-box h3 {
  color: white;
  font-family: var(--font-title);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.product-box h5 {
  color: rgba(201, 209, 217, 0.6);
  font-size: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.3;
}

/* Las imágenes de producto se controlan exclusivamente
   via .product-img-wrapper (aspect-ratio + position:relative)
   y el img hijo es position:absolute fill — no se deben
   poner height fijas aquí. */

.product-box h4 {
  position: relative;
  z-index: 1;
}

.product-box .btn,
.product-box button,
.product-box span {
  position: relative;
  z-index: 2;
}

.text-accent {
  color: var(--color-accent) !important;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #c5a028 100%);
  border: none;
  color: white;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #c5a028 0%, var(--color-accent) 100%);
}

/* Cart Overlay */
#cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* Cart Panel - Subtle Glass */
#cart-panel {
  position: fixed;
  right: -450px;
  top: 0;
  height: 100vh;
  width: 400px;
  max-width: 90vw;
  z-index: 1001;
  transition: right 0.4s ease;
  overflow-y: auto;
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow:
    -4px 0 20px rgba(0, 0, 0, 0.3),
    inset 1px 0 0 rgba(255, 255, 255, 0.06);
}

#cart-panel.active {
  right: 0;
  box-shadow:
    -4px 0 25px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    inset 1px 0 0 rgba(255, 255, 255, 0.08);
}

.cart-item {
  transition: background 0.2s;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Intro Section */
.intro h1 {
  font-family: var(--font-title);
  color: var(--color-accent);
  font-size: 3rem;
  font-weight: 600;
}

.intro h4 {
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
  margin: 0 auto;
}

/* Badge */
.badge.bg-secondary {
  background: rgba(212, 175, 55, 0.2) !important;
  color: var(--color-accent);
  font-weight: 500;
}

/* Product description clipping */
.product-box h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

/* Form Controls */
.form-control.bg-dark {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: white;
  transition: var(--transition);
}

.form-control.bg-dark:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  color: white;
}

.form-control.bg-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-label.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
}

/* Mobile Menu Sticky */
#mobileMenu {
  position: sticky;
  top: 70px;
  z-index: 90;
  transition: var(--transition);
}

#mobileMenu .hover-bg {
  transition: var(--transition);
}

#mobileMenu .hover-bg:hover {
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.navbar-toggler {
  transition: var(--transition);
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: scale(1.05);
}

/* Mobile Adjustments - More Compact */
@media (max-width: 576px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .category-section {
    padding: 0.5rem 0;
    margin-bottom: 3rem;
  }

  .category-section h2 {
    font-size: 1.5rem;
  }

  .product-box {
    padding: 0.75rem;
    border-radius: 14px;
  }

  .product-img-wrapper {
    margin-bottom: 0.75rem;
  }

  .product-box h3 {
    font-size: 0.95rem;
    height: 2.3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-box h4 {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .qty-btn {
    padding: 2px 6px;
  }

  .qty-display {
    padding: 2px 6px;
    font-size: 0.8rem;
  }

  .add-to-cart-btn {
    padding: 6px 10px !important;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  /* height fija eliminada — aspect-ratio del wrapper controla la proporción */

  .product-box {
    padding: 1rem;
  }

  .product-box h3 {
    font-size: 1rem;
  }

  .product-box h5 {
    font-size: 0.8rem;
  }

  .intro h1 {
    font-size: 2rem;
  }

  .intro h4 {
    font-size: 1rem;
  }

  #cart-panel {
    width: 100%;
    right: -100%;
    top: 0;
    max-width: 100%;
    height: 100vh;
  }

  #cart-panel.active {
    right: 0;
  }

  header nav a {
    font-size: 0.75rem;
    padding: 8px 16px;
    margin: 0 3px;
  }
}

/* Hero Section with Background Image */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-image: url('../img/fotopotrero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.4) 0%, rgba(26, 26, 46, 0.3) 50%, rgba(45, 45, 68, 0.4) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin: 0 auto;
}

/* Home Cards - Subtle Glass */
.home-card {
  height: 100%;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px) saturate(120%);
  -webkit-backdrop-filter: blur(15px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 30px rgba(212, 175, 55, 0.18),
    0 0 0 1px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.card-image-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-card:hover .card-image {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-family: var(--font-title);
  color: var(--color-accent);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 1rem;
}

/* Category Navigation (Floating Pills) */
.category-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 10px;
  position: sticky;
  top: 90px;
  z-index: 80;
  backdrop-filter: blur(10px);
}

.cat-pill {
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.cat-pill:hover, .cat-pill.active {
  background: var(--color-accent);
  color: black;
  border-color: var(--color-accent);
  box-shadow: 0 0 15px var(--color-accent-soft);
}

/* Category Sections - Unified & Clean */
.category-section {
  padding: 1rem 0;
  margin-bottom: 5rem;
}

.category-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.category-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
}

.category-section h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 0;
  white-space: nowrap;
}

/* Cart Notification Banner */
#cart-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

#cart-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

#cart-notification svg {
  color: var(--color-accent);
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
    min-height: 400px;
    background-attachment: scroll;
  }

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

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

  .card-image-wrapper {
    height: 200px;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-content h3 {
    font-size: 1.5rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .what sapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Inventory & Stock Badges */
.stock-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.low-stock {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.4);
}

.unavailable-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(220, 53, 69, 0.25);
  color: #ff4d5e;
  border: 1px solid rgba(220, 53, 69, 0.5);
  backdrop-filter: blur(10px);
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-unavailable {
  opacity: 0.75;
  filter: grayscale(0.4);
}

.product-unavailable:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.1);
}
/* Payment Tiles - Unified List Design */
.payment-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.payment-tile {
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.payment-tile:last-child {
  border-bottom: none;
}

.payment-tile input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.payment-content {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
}

.payment-tile input:checked + .payment-content {
  background: rgba(212, 175, 55, 0.1);
}

.payment-tile:hover .payment-content {
  background: rgba(255, 255, 255, 0.05);
}

.payment-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.payment-tile input:checked + .payment-content .payment-icon {
  background: var(--color-accent);
  color: black;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.payment-info {
  flex-grow: 1;
}

.payment-info h6 {
  margin: 0 0 4px 0;
  color: white;
  font-weight: 600;
  font-size: 1.05rem;
}

.payment-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* Checkmark indicator */
.payment-content::after {
  content: '✓';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.3rem;
}

.payment-tile input:checked + .payment-content::after {
  opacity: 1;
}

/* Hero Logo Styling */
.hero-logo {
  height: auto;
  margin-bottom: 20px;
  image-rendering: -webkit-optimize-contrast;
}
