/* ============================================================
   NRG.ro Custom CSS — Light Theme
   Matching https://www.nrg.ro
   ============================================================ */

/* ── Google Fonts: loaded via <link> in app.blade.php head (not @import, to avoid render-blocking chain) ── */

/* ── Design tokens are now defined in nrg.css ── */

/* ── icommon Icon Font ── */
@font-face {
  font-family: 'icomoon';
  src: url('/fonts/icomoon.eot?z55oyo');
  src: url('/fonts/icomoon.eot?z55oyo#iefix') format('embedded-opentype'),
       url('/fonts/icomoon.ttf?z55oyo')  format('truetype'),
       url('/fonts/icomoon.woff?z55oyo') format('woff'),
       url('/fonts/icomoon.svg?z55oyo#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;

  font-display: swap;
}

/* ── Base Overrides (modern layer on top of nrg.css foundation) ── */
html { font-size: 14px; scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--brand-light);
  color: #333;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.page-wrap {
  max-width: 1540px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

/* Main content + sidebar layout */
.catalog-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* ── SIDEBAR ── */
.sidebar {
  width: 230px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}
.sidebar-heading {
  background: #008ce6;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 10px 14px;
}
.sidebar-section { border-top: 1px solid #f0f0f0; padding: 12px 14px; }
.sidebar-section-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #888;
  margin-bottom: 8px;
}
.sidebar-cats { list-style: none; }
.sidebar-cats li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: .82rem;
  color: #444;
  transition: color .15s;
}
.sidebar-cats li a:hover { color: #008ce6; }
.sidebar-cats li a.active-cat { color: #008ce6; font-weight: 600; }
.sidebar-cats li a span { font-size: .72rem; color: #aaa; }

/* ── CONTENT AREA ── */
.catalog-content { flex: 1; min-width: 0; }

/* ============================================================
   PAGE HEADING / BREADCRUMB
   ============================================================ */
.page-heading {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.page-heading h1 { font-size: 1.2rem; font-weight: 700; color: #222; }
.page-heading p { font-size: .8rem; color: #888; }

.breadcrumb {
  font-size: .75rem;
  color: #888;
  margin-bottom: 16px;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: #008ce6; text-decoration: underline; }

/* === Modern 2026 Product Page Redesign === */
.modern-catalog-page {
  max-width: 1520px;
  margin: 0 auto;
  padding: 30px 20px 60px 20px;
}
.modern-product-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .modern-product-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .modern-gallery-container {
    width: 50%;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
  }
  .modern-info-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.review-stars-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--brand-text-muted);
  margin-bottom: 20px;
}
.review-stars-summary .stars {
  color: var(--brand-warning);
  font-size: 16px;
  letter-spacing: 2px;
}

.modern-product-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.3;
  margin: 0 0 10px 0;
}
@media (min-width: 992px) {
  .modern-product-title {
    font-size: 28px;
  }
}

.modern-price-block {
  background: var(--brand-light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--brand-border);
}
.modern-price-main {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-primary-hover); /* WCAG AA */
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.modern-price-old {
  font-size: 18px;
  color: #64748b; /* WCAG AA */
  text-decoration: line-through;
  font-weight: 500;
}
.modern-discount-badge {
  background: var(--brand-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  vertical-align: middle;
}

.modern-section {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 30px;
  margin-top: 20px;
}
.modern-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.modern-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.modern-specs-table tr:nth-child(even) {
  background: var(--brand-light);
}
.modern-specs-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
.modern-specs-table td:first-child {
  font-weight: 600;
  color: #475569;
  width: 40%;
}
.modern-specs-table td:last-child {
  color: var(--brand-dark);
  font-weight: 500;
}

.related-offers-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--brand-border);
}
/* Small add to cart button on cards */
.btn-add {
  margin-top: 6px;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  width: 100%;
  transition: background .15s, border-color .15s, color .15s;
  font-family: inherit;
}
.btn-add:hover {
  background: #008ce6;
  border-color: #008ce6;
  color: #fff;
}
.btn-add:disabled {
  background: #f5f5f5;
  border-color: #e8e8e8;
  color: #bbb;
  cursor: not-allowed;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}

/* ── Image Gallery ── */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Main large image viewer */
.gallery-main {
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px -5px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 12px;
}
.gallery-main img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: opacity .15s;
}
.gallery-noimg {
  color: #bbb;
  font-size: .85rem;
  text-align: center;
  padding: 2rem;
}

/* Thumbnail strip */
.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.thumb-btn {
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  padding: 4px;
  transition: all .2s;
  flex-shrink: 0;
}
.thumb-btn:hover { border-color: #aaa; }
.thumb-btn.active { border-color: var(--brand-primary); }
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-info { display: flex; flex-direction: column; gap: 12px; }
.product-sku { font-size: .75rem; color: #aaa; text-transform: uppercase; letter-spacing: .04em; }
.product-info h1 { font-size: 1.3rem; font-weight: 700; color: #222; line-height: 1.3; }

.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-price .old { font-size: 1rem; font-weight: 400; color: #aaa; text-decoration: line-through; }
.product-price .promo-val { color: var(--brand-primary); }
.product-price .promo-badge {
  background: var(--brand-primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.stock-badge { display: flex; align-items: center; gap: 6px; font-size: .82rem; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.stock-dot.green { background: #4caf50; }
.stock-dot.red { background: var(--brand-primary); }

/* Modern Add to Cart Row */
.add-to-cart-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .add-to-cart-row {
    position: fixed;
    bottom: max(15px, env(safe-area-inset-bottom));
    left: 15px;
    width: calc(100% - 30px);
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 12px 15px;
    z-index: 1030;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  /* Contrast inverters for dark glass pill context */
  .add-to-cart-row .qty-modern-wrapper {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .add-to-cart-row .qty-modern-btn {
      color: #ffffff;
  }
  .add-to-cart-row .qty-modern-btn:hover {
      background: rgba(255, 255, 255, 0.15);
  }
  .add-to-cart-row .qty-modern-input {
      color: #ffffff;
  }
  .add-to-cart-row .btn-favorit-modern {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ffffff;
      height: 54px; /* Force strict geometric height match with sibling Add to Cart buttons */
      width: 54px; /* Force a perfect unified square */
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .add-to-cart-row .btn-favorit-modern:hover {
      background: rgba(255, 255, 255, 0.2);
  }
  .add-to-cart-row .btn-favorit-modern svg {
      stroke: #ffffff;
      width: 24px;
      height: 24px;
  }
  .add-to-cart-row .btn-favorit-modern.active svg {
      fill: #ef4444; 
      stroke: #ef4444;
  }
  .modern-info-container {
    padding-bottom: 90px;
  }
}

.qty-modern-wrapper {
  display: flex;
  align-items: center;
  background: var(--brand-light);
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  height: 54px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.qty-modern-wrapper:hover {
  border-color: #94a3b8;
}

.qty-modern-btn {
  background: transparent;
  border: none;
  width: 44px;
  height: 100%;
  font-size: 1.4rem;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.qty-modern-btn:hover {
  background: #f1f5f9;
  color: var(--brand-dark);
}

.qty-modern-input {
  width: 48px;
  height: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  padding: 0;
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield; /* Standard */
}
/* Hide native spin buttons */
.qty-modern-input::-webkit-outer-spin-button,
.qty-modern-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── DESKTOP & GLOBAL: UNIFIED 54px WISHLIST GEOMETRY ── */
.btn-favorit-modern {
  height: 54px;
  width: 54px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-favorit-modern:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}
.btn-favorit-modern svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  transition: all 0.2s ease;
}
.btn-favorit-modern.active {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #ef4444;
}
.btn-favorit-modern.active svg {
  fill: #ef4444;
  stroke: #ef4444;
}

.btn-add-modern {
  flex: 1;
  background: var(--brand-primary-hover); /* WCAG AA */
  color: #ffffff;
  border: none;
  border-radius: 12px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}
.btn-add-modern:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.3);
}
.btn-add-modern .cart-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Installment Payment Banner - Premium 2026 Design */
.installment-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-light);
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 1rem;
  transition: all 0.3s ease;
}
.installment-banner:hover {
  background: #f0f9ff;
  border-color: #bae6fd;
}
.installment-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  background: #e0f2fe;
  border-radius: 8px;
}
.installment-icon svg { width: 18px; height: 18px; }
.installment-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-text);
}
.installment-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary-hover); /* WCAG AA */
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  white-space: nowrap;
}
.installment-link:hover {
  border-bottom-color: var(--brand-primary);
}

/* Delivery Estimation Card - Premium 2026 Design */
.delivery-estimation-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, var(--brand-light));
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.03), 0 8px 10px -6px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1.5rem;
  overflow: hidden;
}
.delivery-estimation-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
}
.delivery-estimation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #3b82f6, var(--brand-primary), #2dd4bf);
}
.delivery-est-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--brand-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.delivery-est-city {
  font-weight: 700;
  color: var(--brand-dark);
  border-bottom: 2px dashed #cbd5e1;
  padding-bottom: 2px;
}
.delivery-est-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.delivery-est-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  position: relative;
}
.delivery-est-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px dashed #bfdbfe;
  border-radius: 16px;
  animation: pulse-ring 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.1); opacity: 0; }
}
.delivery-est-icon svg { width: 24px; height: 24px; }
.delivery-est-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.delivery-est-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.delivery-est-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.delivery-est-method {
  font-size: 0.85rem;
  color: var(--brand-text-muted);
  font-weight: 500;
}
.delivery-est-date {
  font-size: 0.9rem;
  color: var(--brand-text);
  line-height: 1.5;
  background: #f1f5f9;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 4px;
}
.delivery-est-date strong {
  color: var(--brand-dark);
  font-weight: 800;
}
.urgency-text {
  display: inline-block;
  background: #f0f9ff;
  color: var(--brand-primary-hover); /* WCAG AA on #f0f9ff */
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Trust & Logistics Card - Premium 2026 Design */
.trust-logistics-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.02), 0 2px 4px -2px rgba(15, 23, 42, 0.02);
  margin-top: 1rem;
}
.trust-logistics-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.trust-logistics-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-border), transparent);
}
.trust-logistics-card .trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.trust-logistics-card .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-logistics-card .trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--brand-light);
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all 0.3s ease;
}
.trust-logistics-card .trust-item:hover .trust-icon {
  background: var(--brand-dark);
  color: #ffffff;
  border-color: var(--brand-dark);
  transform: rotate(-5deg) scale(1.05);
}
.trust-logistics-card .trust-icon svg { width: 24px; height: 24px; }
.trust-logistics-card .trust-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}
.trust-logistics-card .trust-text strong {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 1rem;
}
.trust-logistics-card .trust-text-sub {
  font-size: 0.85rem;
  color: #64748b; /* WCAG AA */
  font-weight: 500;
}
@media (max-width: 600px) {
  .trust-logistics-card .trust-list { grid-template-columns: 1fr; gap: 16px; }
}

.product-desc-section {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 8px;
}
.product-desc-section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-primary);
  display: inline-block;
}
.product-desc-body { font-size: .85rem; color: #555; line-height: 1.75; }
.product-desc-body p { margin-bottom: .75em; }
.product-desc-body ul { padding-left: 1.2em; }
.product-desc-body li { margin-bottom: .4em; }
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}
.empty-state p { font-size: .95rem; margin-top: .5rem; }

/* ============================================================
   BENEFITS BAR
   ============================================================ */
.benefits-bar {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 16px 0;
}
.benefits-inner {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
}
.benefit-item strong { display: block; font-size: .82rem; font-weight: 600; color: #222; }
.benefit-item span { color: #777; font-size: .74rem; }
.benefit-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a73e8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1e1e1e;
  color: #aaa;
  padding: 36px 0 0;
  font-size: .8rem;
}
.footer-inner {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-col h4 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #008ce6;
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: #334155; font-size: 13.5px; font-weight: 500; transition: color .15s; }
.footer-col ul li a:hover { color: #008ce6; }
.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: #334155;
  font-size: 13.5px;
}
.footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-line a { color: #334155; }
.footer-contact-line a:hover { color: var(--brand-primary); }

.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: background .15s, color .15s;
}
.social-btn:hover { background: var(--brand-primary); color: #fff; }
.social-btn svg { width: 15px; height: 15px; }

.footer-newsletter { margin-top: 24px; }
.footer-newsletter h4 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.footer-newsletter p { font-size: .76rem; color: #777; margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  height: 36px;
  background: #2c2c2c;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 0 12px;
  color: #ddd;
  font-size: .8rem;
  font-family: inherit;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--brand-primary); }
.newsletter-form button {
  background: #0277BD; /* WCAG AA */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0 14px;
  height: 36px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--brand-primary-hover); }

.footer-bottom {
  max-width: 1540px;
  margin: 24px auto 0;
  padding: 14px 20px;
  border-top: 1px solid #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .74rem;
  color: #94a3b8; /* WCAG AA on dark bg */
}
.footer-payments { display: flex; align-items: center; gap: 8px; }
.footer-payments img { height: 22px; opacity: .7; filter: grayscale(60%); }
.footer-payments img:hover { opacity: 1; filter: none; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: #222;
  color: #fff;
  padding: 11px 18px;
  border-radius: 6px;
  font-size: .82rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  animation: toastIn .25s ease;
  border-left: 3px solid var(--brand-primary);
}
.toast.success { border-left-color: #4caf50; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  #toast-container {
    bottom: auto;
    top: 80px; /* Clears mobile header */
    right: 50%;
    transform: translateX(50%);
    align-items: center;
    width: 90%;
    pointer-events: none;
  }
}

/* Modern Breadcrumb (Global Swipeable) */
.modern-breadcrumb {
  margin-bottom: 20px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 6px;
  display: flex;
  align-items: center;
}
.modern-breadcrumb::-webkit-scrollbar { display: none; }
.modern-breadcrumb a { color: #0277BD; text-decoration: none; }
.modern-breadcrumb a:hover { text-decoration: underline; }



