@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════════════
   QAMAR DENTAL SUPPLY — DESIGN SYSTEM
   ═══════════════════════════════════════════════════════════════ */
:root {
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --slate-50: #f1f5f9;
  --slate-100: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --navy: #0B2545;
  --navy-light: #1a3a6e;
  --teal: #0f71e6;
  --teal-dark: #0050c0;
  --teal-light: #e6f0fa;
  --amber: #F59E0B;
  --red: #ef4444;
  --green: #22c55e;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(11, 37, 69, 0.1);
  --shadow-lg: 0 12px 40px rgba(11, 37, 69, 0.14);
  --shadow-xl: 0 24px 60px rgba(11, 37, 69, 0.18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 72px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
}

input,
select,
textarea {
  font-family: var(--font);
}

ul {
  list-style: none;
}

/* ── Layout Utilities ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.text-center {
  text-align: center;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  max-width: 1200px;
  height: 62px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 36px rgba(11, 37, 69, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  top: 6px;
  height: 56px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(11, 37, 69, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(15, 113, 230, 0.25);
  transition: var(--transition);
}

.nav-logo .logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  transition: var(--transition);
}

.nav-logo:hover .logo-icon,
.nav-logo:hover .logo-img {
  transform: rotate(5deg) scale(1.05);
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo .logo-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.5px;
}

.nav-logo .logo-sub {
  font-size: 9px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  position: relative;
  padding: 8px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--teal);
  background: transparent;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 37, 69, 0.03);
  border: 1.5px solid rgba(11, 37, 69, 0.05);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  transition: var(--transition);
}

.nav-search:focus-within {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(15, 113, 230, 0.08);
}

.nav-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  width: 160px;
  color: var(--navy);
  font-weight: 500;
}

.nav-search svg {
  color: var(--slate-400);
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-search:focus-within svg {
  color: var(--teal);
}

.cart-btn {
  position: relative;
  padding: 8px 22px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.18);
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.28);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--teal);
  color: white;
  font-size: 10px;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(15, 113, 230, 0.3);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.nav-user-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  transition: var(--transition);
}

.nav-user-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
  transform: translateY(-1.5px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--slate-200);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}

.btn-ghost {
  background: transparent;
  color: var(--slate-600);
  padding: 8px 16px;
}

.btn-ghost:hover {
  background: var(--slate-50);
  color: var(--navy);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 17px;
  border-radius: 14px;
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ══════════════════════════════
   FORMS
══════════════════════════════ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 113, 230, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate-400);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  font-size: 12px;
  color: var(--slate-400);
}

.form-error {
  font-size: 12px;
  color: var(--red);
}

/* ══════════════════════════════
   PRODUCT CARDS
══════════════════════════════ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--slate-100) 100%);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--slate-400);
}

.product-card-img .img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.product-card-img .img-placeholder span {
  font-size: 12px;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-sale {
  background: var(--teal);
  color: var(--white);
}

.badge-expiry {
  background: var(--amber);
  color: var(--white);
}

.badge-low {
  background: var(--red);
  color: var(--white);
}

.badge-new {
  background: var(--navy);
  color: var(--white);
}

.product-card-body {
  padding: 16px;
}

.product-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0 6px;
  line-height: 1.35;
}

.product-brand {
  font-size: 12px;
  color: var(--slate-400);
  font-weight: 500;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.product-original-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-400);
  text-decoration: line-through;
  margin-left: 6px;
}

.product-add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.product-add-btn:hover {
  background: var(--teal-dark);
  transform: scale(1.1);
}

.product-card-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-stock {
  font-size: 12px;
  color: var(--slate-500);
}

.product-stock.low {
  color: var(--red);
  font-weight: 600;
}

/* ══════════════════════════════
   SECTION STYLES
══════════════════════════════ */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 96px 0 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--teal-light);
  border-radius: var(--radius-full);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.section-sub {
  font-size: 16px;
  color: var(--slate-500);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════
   BADGES & TAGS
══════════════════════════════ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.status-pending {
  background: #FFF8E1;
  color: #F59E0B;
}

.status-verified {
  background: #E8F5E9;
  color: #22c55e;
}

.status-packaging {
  background: #E3F2FD;
  color: #3b82f6;
}

.status-dispatched {
  background: #F3E5F5;
  color: #a855f7;
}

.status-delivered {
  background: #E8F5E9;
  color: #16a34a;
}

/* ══════════════════════════════
   TOAST NOTIFICATIONS
══════════════════════════════ */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--teal);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  animation: slideInToast 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 280px;
  max-width: 380px;
}

.toast.error {
  border-color: var(--red);
}

.toast.warning {
  border-color: var(--amber);
}

@keyframes slideInToast {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOutToast {
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ══════════════════════════════
   MODAL
══════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 37, 69, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--slate-200);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 20px;
}

.footer-brand .logo-sub {
  color: var(--teal);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

/* ══════════════════════════════
   WHATSAPP WIDGET
══════════════════════════════ */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: waPulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8);
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-widget:hover .whatsapp-tooltip {
  opacity: 1;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

/* ══════════════════════════════
   LOADING STATES
══════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, var(--slate-100) 25%, var(--slate-50) 50%, var(--slate-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--slate-200);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════
   PAGINATION
══════════════════════════════ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-600);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.page-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.page-btn.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: none;
  box-shadow: none;
  cursor: default;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.page-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-400);
  user-select: none;
}

/* ══════════════════════════════
   BREADCRUMB
══════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-400);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--slate-400);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb-sep {
  color: var(--slate-300);
}

.breadcrumb-current {
  color: var(--navy);
  font-weight: 600;
}

/* ══════════════════════════════
   RESPONSIVE & MOBILE DRAWERS
   ══════════════════════════════ */
/* Hamburger Button Default Style */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-dark-override .hamburger span {
  background-color: var(--white);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Drawer Style */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -10px 0 30px rgba(11, 37, 69, 0.08);
  z-index: 1050;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nav-drawer.active {
  right: 0;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-drawer-links a {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-100);
  transition: var(--transition);
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active {
  color: var(--teal);
  padding-left: 4px;
}

.nav-drawer-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 37, 69, 0.04);
  border: 1px solid rgba(11, 37, 69, 0.06);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.nav-drawer-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: var(--navy);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .nav-links {
    display: none !important;
  }

  .nav-search {
    display: none !important;
  }

  #nav-auth-btn-container {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .section {
    padding: 48px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .modal {
    padding: 24px;
  }

  /* Awards mobile adjustments */
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .whatsapp-widget {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .btn-lg {
    padding: 12px 20px;
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }
}