  :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: 20px;
    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;
  }

  /* Currency Selector Styles - Updated Position */
  .currency-selector-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    z-index: 1100;
  }

  .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;
  }

  /* Container and Price Boxes */
  .container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .price-box, .table-box, .silver-box {
    background: rgba(21, 21, 21, 0.7);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    width: 100%;
    max-width: 380px;
    flex: 1;
    min-width: 280px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
  }

  .price-box:hover, .table-box:hover, .silver-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }

  .price-box {
    border-color: rgba(212, 175, 55, 0.25);
  }

  .table-box {
    border-color: rgba(212, 175, 55, 0.15);
  }

  .silver-box {
    border-color: rgba(192, 192, 192, 0.35);
  }

  /* Section Headings */
  .price-box h2, .table-box h2, .silver-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
  }

  .price-box h2 {
    color: var(--gold-primary);
  }

  .table-box h2 {
    color: var(--gold-primary);
  }

  .silver-box h2 {
    color: var(--silver-primary);
  }

  .price-box h2::after, .table-box h2::after, .silver-box h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 4px;
  }

  .price-box h2::after {
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
  }

  .table-box h2::after {
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
  }

  .silver-box h2::after {
    background: linear-gradient(90deg, var(--silver-primary), var(--silver-secondary));
  }

  /* Price Items */
  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .price-item:last-child {
    border-bottom: none;
  }

  .price-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
  }

  .price-label i {
    font-size: 1.3rem;
  }

  .gold-label i {
    color: var(--gold-primary);
  }

  .silver-label i {
    color: var(--silver-primary);
  }

  .price-value {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .gold-value {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .silver-value {
    background: linear-gradient(135deg, var(--silver-primary), var(--silver-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Time Container */
  .time-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding: 12px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .time {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }

  .time i {
    color: var(--gold-primary);
    font-size: 1rem;
  }

  .time span {
    display: inline-block;
  }

  /* Tables */
  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
  }

  th, td {
    padding: 15px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  th {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
  }

  .gold-table th {
    color: var(--gold-primary);
  }

  .silver-table th {
    color: var(--silver-primary);
  }

  tr:last-child td {
    border-bottom: none;
  }

  tr:hover td {
    background: rgba(255, 255, 255, 0.05);
  }

  /* Price Badges */
  .price-badge {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    max-width: 250px;
    text-align: center;
    transition: var(--transition);
    position: relative;
  }

  .price-badge::after {
    content: '';
    font-size: 0.9rem;
    opacity: 0.7;
    margin-left: 5px;
    position: static;
    transform: none;
  }

  .gold-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.2);
  }

  .silver-badge {
    background: rgba(192, 192, 192, 0.2);
    color: var(--silver-primary);
    box-shadow: 0 6px 18px rgba(192, 192, 192, 0.2);
  }

  .price-badge:hover {
    transform: scale(1.03);
  }

  /* 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: 60px; /* below fullscreen button */
  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;
  }

  /* Fullscreen Button */
 #fullscreenBtn {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1101;
  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;
}



  #fullscreenBtn:hover {
    background: rgba(192, 192, 192, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
  }

  /* 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);
  }

  /* 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;
  }

  body[dir="rtl"] .price-item,
  body[dir="rtl"] .time-container {
    flex-direction: row-reverse;
  }

  body[dir="rtl"] table {
    direction: rtl;
  }

  body[dir="rtl"] th, 
  body[dir="rtl"] td {
    text-align: right;
  }

  body[dir="rtl"] .time {
    flex-direction: row-reverse;
  }

  

  .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;
  }

  /* Enhanced Light Mode with Better Contrast */
  .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 .price-box,
  .light-mode .table-box,
  .light-mode .silver-box {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
  }

  .light-mode .time-container {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.08);
  }

  .light-mode .price-item,
  .light-mode tr {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }

  .light-mode tr:hover td {
    background: rgba(0, 0, 0, 0.04);
  }

  .light-mode .particle {
    background: rgba(0, 0, 0, 0.12);
  }

  .light-mode #fullscreenBtn,
  .light-mode .lang-switcher,
  .light-mode #themeToggle,
  .light-mode .currency-dropdown {
    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 #fullscreenBtn:hover,
  .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);
  }

  /* 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;
    }
    
    .container {
      gap: 15px;
    }
    
    .price-label {
      font-size: 1rem;
    }
    
    .price-value {
      font-size: 1.8rem;
    }
    
    .price-box, .table-box, .silver-box {
      padding: 20px;
      min-width: 260px;
    }
    
    .price-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }
    
    .price-value {
      width: 100%;
      text-align: right;
    }
    
    .time-container {
      flex-direction: column;
      gap: 10px;
      align-items: flex-start;
    }
    
    .price-badge {
      font-size: 1.3rem;
      padding: 8px 16px;
    }

    #fullscreenBtn {
      display: none !important;
    }

    .currency-selector-container {
      margin: 10px auto;
    }

    .lang-switcher {
      top: auto;
      bottom: 80px;
      right: 15px;
      flex-direction: column;
    }

    #themeToggle {
      position: fixed;
      top: 15px;
      right: 15px;
      z-index: 1100;
    }

    /* Mobile action buttons */
    .action-buttons {
      bottom: 15px;
      flex-direction: column;
      gap: 10px;
      width: calc(100% - 30px);
      max-width: 400px;
    }

    .action-buttons a {
      width: 100%;
      padding: 12px;
      font-size: 0.9rem;
      min-width: auto;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
    }
    
    .subheading {
      font-size: 1rem;
    }
    
    .price-box, .table-box, .silver-box {
      padding: 15px;
      min-width: 240px;
    }
    
    .price-value {
      font-size: 1.6rem;
    }

    .action-buttons {
      bottom: 10px;
    }
  }

  /* TV Screens (large displays) */
  @media (min-width: 1600px) {
    .action-buttons {
      bottom: 40px;
      gap: 25px;
    }
    
    .action-buttons a {
      padding: 18px 32px;
      font-size: 1.2rem;
      border-radius: 60px;
      min-width: 250px;
    }

    #fullscreenBtn, #themeToggle {
      padding: 15px 25px;
      font-size: 1.1rem;
    }

    #fullscreenBtn {
      top: 80px;
    }

    #themeToggle {
      top: 140px;
    }
  }

  @media (min-width: 1200px) {
    .table-box {
      max-width: 28%;
    }

    .table-box table {
      font-size: 0.9rem;
    }

    .table-box td,
    .table-box th {
      padding: 10px 12px;
    }

    .price-badge {
      font-size: 1.2rem;
      padding: 8px 14px;
    }
  }

  /* 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;
  }

  .currency-dropdown {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Montserrat", sans-serif;
  }
  
  /* Social Buttons - Consistent with your existing design */
.footer .social-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
  width: 100%;
  max-width: 800px;
}

.footer .social-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  min-width: 200px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.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.15), 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.2rem;
  transition: transform 0.3s ease;
}

/* WhatsApp Button */
.footer .btn-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.9), rgba(18, 140, 126, 0.9));
}

/* Instagram Button */
.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 */
.footer .social-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer .social-buttons a:hover i {
  transform: scale(1.1);
}

/* Light Mode Adjustments */
.light-mode .footer .social-buttons a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode .footer .btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.light-mode .footer .btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer .social-buttons {
    gap: 12px;
  }
  
  .footer .social-buttons a {
    min-width: 160px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .footer .social-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer .social-buttons a {
    width: 100%;
    max-width: 280px;
  }
}

.dropdown-menu li a i {
  margin-right: 8px;
  width: 20px;
  text-align: center;
}

/* For RTL */
body[dir="rtl"] .dropdown-menu li a i {
  margin-right: 0;
  margin-left: 8px;
}

.lang-switcher {
  display: none !important;
}

  /* 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;
}

/* Our Products Button */
.btn-products {
  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: 16px 32px;
  font-size: 1.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;
  margin: 20px 0;
  position: relative;
  overflow: hidden;
}

.btn-products::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-products:hover::before {
  left: 100%;
}

.btn-products:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.btn-products i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-products:hover i {
  transform: scale(1.1);
}

/* Light mode adjustments */
.light-mode .btn-products {
  color: var(--bg-dark);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.light-mode .btn-products:hover {
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.6);
}
