  :root {
    --gold-primary: #D4AF37;
    --gold-secondary: #B8860B;
    --silver-primary: #C0C0C0;
    --silver-secondary: #A8A8A8;
    --bg-dark: #0a0a0a;
    --panel-dark: #151515;
    --panel-light: #1e1e1e;
    --text-light: #f8f8f8;
    --text-muted: #b0b0b0;
    --border-radius: 16px;
    --box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    padding: 20px;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 25%),
      radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.1) 0%, transparent 25%);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
  }

  /* Header Styles */
  header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  header::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--silver-primary));
    margin: 20px auto;
    border-radius: 4px;
    opacity: 0.8;
  }

  h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  }

  .subheading {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
  }

  /* Products Container */
  .products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .product-card {
    background: rgba(21, 21, 21, 0.7);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(8px);
    position: relative;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }

  .product-image {
    height: 200px;
    background: var(--panel-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .product-card:hover .product-image img {
    transform: scale(1.05);
  }

  .product-details {
    padding: 20px;
  }

  .product-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 15px 0;
    text-align: right;
  }

  .product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .product-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
    margin-top: 15px;
  }

  .silver-card {
    border-color: rgba(192, 192, 192, 0.35);
  }

  .silver-card .product-title,
  .silver-card .product-price {
    color: var(--silver-primary);
  }

  .silver-card .product-image {
    color: var(--silver-primary);
  }

  /* Menu Wrapper */
  .menu-wrapper {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1100;
    background: rgba(21, 21, 21, 0.85);
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .hamburger {
    font-size: 22px;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    list-style: none;
    margin-top: 8px;
    padding: 0;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    animation: fadeIn 0.3s ease;
    min-width: 140px;
  }

  .dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Language Switcher */
  .lang-switcher {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1100;
    display: flex;
    background: rgba(21, 21, 21, 0.85);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
  }

  .lang-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .lang-btn span {
    position: relative;
    z-index: 2;
  }

  .lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
  }

  .lang-btn:hover {
    color: var(--text-light);
  }

  .lang-btn:hover::before {
    opacity: 0.3;
  }

  .lang-btn.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
  }

  .lang-btn.active::before {
    opacity: 0.4;
  }

  /* Theme Toggle Button */
  #themeToggle {
    position: fixed;
    top: 110px;
    right: 15px;
    z-index: 1100;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    background: rgba(21, 21, 21, 0.8);
    color: var(--silver-primary);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(192, 192, 192, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #themeToggle:hover {
    background: rgba(192, 192, 192, 0.15);
    transform: translateY(-3px);
  }

  /* Currency Selector */
  .currency-selector-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    z-index: 100;
  }

  .currency-selector {
    position: relative;
    min-width: 120px;
  }

  .currency-dropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 8px 35px 8px 15px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    background: rgba(21, 21, 21, 0.85);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    backdrop-filter: blur(8px);
  }

  .currency-dropdown:hover {
    border-color: var(--gold-primary);
  }

  .currency-dropdown:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
  }

  .currency-selector::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--gold-primary);
    pointer-events: none;
    font-size: 0.7rem;
  }

  /* Floating particles effect */
  .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
  }

  .particle {
    position: absolute;
    background: rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    animation: float 15s infinite linear;
  }

  @keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
  }

  /* RTL styles */
  body[dir="rtl"] {
    font-family: 'Segoe UI', Tahoma, sans-serif;
  }


  .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(18, 140, 126, 0.4);
  }

  .btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(188, 24, 136, 0.4);
  }

  .action-buttons i {
    font-size: 1.2rem;
  }

  /* Light Mode */
  .light-mode {
    --bg-dark: #f8f5ed;
    --panel-dark: #f0ede5;
    --panel-light: #ffffff;
    --text-light: #222;
    --text-muted: #555;
    --box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 25%),
      radial-gradient(circle at 80% 70%, rgba(192, 192, 192, 0.08) 0%, transparent 25%);
  }

  .light-mode .product-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .light-mode .product-image {
    background: #f5f5f5;
  }

  .light-mode .product-meta {
    border-top-color: rgba(0, 0, 0, 0.1);
  }

  .light-mode .currency-dropdown {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-light);
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  .light-mode #themeToggle,
  .light-mode .lang-switcher {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-light);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .light-mode #themeToggle:hover {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }

  .light-mode .lang-btn {
    color: var(--text-muted);
  }

  .light-mode .lang-btn:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .light-mode .lang-btn.active {
    background: rgba(212, 175, 55, 0.18);
    color: var(--gold-primary);
  }

  .light-mode .menu-wrapper {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .light-mode .hamburger {
    color: var(--text-light);
  }

  .light-mode .hamburger:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .light-mode .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  .light-mode .dropdown-menu li a {
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .light-mode .dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .light-mode .particle {
    background: rgba(0, 0, 0, 0.12);
  }

  /* Footer */
  .footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.9;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-bottom: 80px; /* Space for action buttons */
  }

  .privacy-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
  }

  .privacy-link:hover {
    color: var(--gold-primary);
    text-decoration: underline;
  }

  .light-mode .privacy-link {
    color: #555;
  }

  .light-mode .privacy-link:hover {
    color: var(--gold-primary);
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    h1 {
      font-size: 2.2rem;
    }
    
    .products-container {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .product-image {
      height: 180px;
    }
    
    .action-buttons {
      flex-direction: column;
      width: calc(100% - 30px);
      max-width: 400px;
    }
    
    .action-buttons a {
      width: 100%;
      padding: 12px;
      font-size: 0.9rem;
      min-width: auto;
    }

    #themeToggle {
      position: fixed;
      top: 15px;
      right: 15px;
      z-index: 1100;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
    }
    
    .products-container {
      grid-template-columns: 1fr;
      padding: 10px;
    }
    
    .product-image {
      height: 160px;
    }
    
    .action-buttons {
      bottom: 10px;
    }
  }

  /* Hide scrollbar */
  html, body {
    overflow: auto;
    scrollbar-width: none;
  }

  body::-webkit-scrollbar {
    width: 0px;
    display: none;
  }

  .hide-buttons {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  
  .order-btn {
    display: block;
    background: #25D366;
    color: white !important;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
  }

  .order-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
  }

  .silver-card .order-btn {
    background: #25D366; /* Keep green for consistency */
  }
  
  .notice-message {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-primary);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 12px 20px;
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
}
#themeToggle {
  display: none !important;
}

@media (max-width: 768px) {
  .lang-switcher {
    display: none !important;
  }
}
  .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--gold-primary);
      color: white;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 12px;
      font-weight: bold;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      z-index: 10;
    }
	
  
  /* Add this to your existing CSS */
  .gold-card .product-image {
    position: relative;
    overflow: visible;
  }
  
  .gold-card .product-image::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle at center, 
      rgba(212, 175, 55, 0.6) 0%, 
      rgba(212, 175, 55, 0.3) 50%, 
      transparent 70%);
    border-radius: var(--border-radius);
    z-index: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .gold-card:hover .product-image::after {
    opacity: 1;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    animation: pulse-gold 2s infinite alternate;
  }
  
  /* Silver glow effect - only for the last product (silver bar) */
  .silver-card .product-image {
  position: relative;
  overflow: visible;
}

.silver-card .product-image::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle at center, 
    rgba(192, 192, 192, 0.6) 0%, 
    rgba(192, 192, 192, 0.3) 50%, 
    transparent 70%);
  border-radius: var(--border-radius);
  z-index: 1;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.silver-card:hover .product-image::after {
  opacity: 1;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  animation: pulse-silver 2s infinite alternate;
}

  
  .products-container .product-card:last-child .product-image::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle at center, 
      rgba(192, 192, 192, 0.6) 0%, 
      rgba(192, 192, 192, 0.3) 50%, 
      transparent 70%);
    border-radius: var(--border-radius);
    z-index: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  
  .products-container .product-card:last-child:hover .product-image::after {
    opacity: 1;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    animation: pulse-silver 2s infinite alternate;
  }
  
  @keyframes pulse-gold {
    0% { box-shadow: 0 0 15px 5px rgba(212, 175, 55, 0.5); }
    100% { box-shadow: 0 0 25px 10px rgba(212, 175, 55, 0.7); }
  }
  
  @keyframes pulse-silver {
    0% { box-shadow: 0 0 15px 5px rgba(192, 192, 192, 0.5); }
    100% { box-shadow: 0 0 25px 10px rgba(192, 192, 192, 0.7); }
  }
  
  .product-image img {
    position: relative;
    z-index: 2;
  }
  
 .footer .social-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 15px;
}

/* Base button styles (common for both modes) */
.footer .social-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 60px;
  text-decoration: none;
  min-width: 220px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

/* Light mode specific styles */
:root:not([data-theme="dark"]) .footer .social-buttons a {
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Dark mode specific styles */
:root[data-theme="dark"] .footer .social-buttons a {
  color: white;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

/* Shine effect (works in both modes) */
.footer .social-buttons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.footer .social-buttons a:hover::before {
  transform: translateX(100%);
}

.footer .social-buttons a i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

/* WhatsApp button - light mode */
:root:not([data-theme="dark"]) .footer .btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* WhatsApp button - dark mode */
:root[data-theme="dark"] .footer .btn-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(18, 140, 126, 0.95));
}

/* Instagram button - light mode */
:root:not([data-theme="dark"]) .footer .btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Instagram button - dark mode */
:root[data-theme="dark"] .footer .btn-instagram {
  background: linear-gradient(45deg, 
    rgba(240, 148, 51, 0.9), 
    rgba(230, 104, 60, 0.9), 
    rgba(220, 39, 67, 0.9), 
    rgba(204, 35, 102, 0.9), 
    rgba(188, 24, 136, 0.9));
}

/* Hover effects (both modes) */
.footer .social-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 7px 14px rgba(0, 0, 0, 0.15),
    0 5px 5px rgba(0, 0, 0, 0.12);
}

.footer .social-buttons a:hover i {
  transform: scale(1.1);
}

/* Light mode hover adjustments */
:root:not([data-theme="dark"]) .footer .social-buttons a:hover {
  box-shadow: 
    0 7px 14px rgba(0, 0, 0, 0.2),
    0 5px 5px rgba(0, 0, 0, 0.15);
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: translateY(-3px) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
  100% { transform: translateY(-3px) scale(1); }
}

.footer .social-buttons a:active {
  animation: pulse 0.3s ease;
}

/* Social Icons */
.footer .social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
}

.footer .social-icons a {
  font-size: 2rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.footer .social-icons a:hover {
  transform: scale(1.1);
}

/* Light mode adjustments */
.light-mode .footer .social-icons a {
  opacity: 0.9;
}

.light-mode .footer .social-icons a:hover {
  opacity: 1;
}
/* Price Per Gram Button */
.btn-price-per-gram {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  text-decoration: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-price-per-gram::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.btn-price-per-gram:hover::before {
  left: 100%;
}

.btn-price-per-gram:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.btn-price-per-gram i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn-price-per-gram:hover i {
  transform: scale(1.1);
}

/* Light mode adjustments */
.light-mode .btn-price-per-gram {
  color: var(--bg-dark);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.light-mode .btn-price-per-gram:hover {
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-price-per-gram {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .price-per-gram-container {
    margin: 15px 0;
  }
}

.lang-switcher {
  display: none !important;
}

