/* Al Mahar Jeweller - Responsive Styles */

/* Hide mobile elements on desktop by default */
.nav-mobile { display: none; }
.mobile-overlay { display: none; }

/* Tablet */
@media (max-width: 992px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .nav-mobile { display: block; position: fixed; top: 0; left: -100%; width: 300px; height: 100vh; background: var(--white); z-index: 2000; padding: 80px 24px 24px; transition: left .3s ease; overflow-y: auto; box-shadow: var(--shadow-xl); }
  .nav-mobile.open { left: 0; }
  .nav-mobile ul { list-style: none; }
  .nav-mobile ul li { border-bottom: 1px solid var(--gray-100); }
  .nav-mobile ul a { display: block; padding: 14px 0; font-size: 15px; color: var(--black); font-weight: 500; }
  .nav-mobile ul a:hover { color: var(--gold); }
  .nav-mobile .close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 28px; cursor: pointer; }
  .mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1999; display: none; }
  .mobile-overlay.active { display: block; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 2rem; }
  .section { padding: 60px 0; }
}

/* Mobile */
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-section { min-height: 70vh; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input { border-right: 2px solid rgba(212,175,55,.3); border-radius: var(--radius-sm); }
  .newsletter-form button { border-radius: var(--radius-sm); }
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }
  .header-actions { gap: 10px; }
  .modal-content { width: 95%; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .btn-lg { padding: 12px 24px; font-size: 14px; }
  .product-card .product-info { padding: 12px; }
  .product-card .product-name { font-size: .9rem; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .container { padding: 0 14px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .product-card .product-actions { opacity: 1; transform: none; }
  .product-card .add-to-cart-btn { font-size: 11px; padding: 8px; }
  .announcement-bar { font-size: 11px; padding: 6px 10px; }
}
