/**
 * Amazon Clone Design System & Stylesheet
 * Based on Amazon's Exact UI & Design Language
 */

:root {
  --amz-dark-navy: #131921;
  --amz-nav-sub: #232f3e;
  --amz-nav-hover: #37475a;
  --amz-yellow: #febd69;
  --amz-yellow-dark: #f3a847;
  --amz-orange: #e47911;
  --amz-btn-cart: #ffd814;
  --amz-btn-cart-hover: #f7ca00;
  --amz-btn-buy: #ffa41c;
  --amz-btn-buy-hover: #fa8900;
  --amz-red-deal: #cc0c39;
  --amz-link-blue: #007185;
  --amz-link-hover: #c7511f;
  --amz-price-red: #b12704;
  --amz-price-dark: #0f1111;
  --amz-green-stock: #007600;
  --amz-gray-bg: #eaeded;
  --amz-card-bg: #ffffff;
  --amz-border-gray: #d5d9d9;
  --amz-border-light: #e7e7e7;
  --amz-star-gold: #de7921;
  --amz-prime-blue: #00a8e1;
}

body {
  background-color: var(--amz-gray-bg);
  color: #0f1111;
  font-family: "Amazon Ember", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--amz-link-blue);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--amz-link-hover);
  text-decoration: underline;
}

/* ==========================================================================
   Top Header Navigation
   ========================================================================== */
.amazon-header {
  background-color: var(--amz-dark-navy);
  color: #ffffff;
  padding: 6px 12px;
  position: relative;
  z-index: 1040;
}

.amz-nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: #ffffff !important;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.1s ease;
}

.amz-nav-item:hover {
  border-color: #ffffff;
}

.amz-logo-wrap {
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
}

.amz-logo-wrap:hover {
  border-color: #ffffff;
}

.amz-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  line-height: 1;
}

.amz-logo-dot {
  color: var(--amz-yellow);
  font-size: 14px;
  margin-left: 1px;
}

.amz-nav-line-1 {
  font-size: 11px;
  line-height: 13px;
  color: #cccccc;
  font-weight: 400;
}

.amz-nav-line-2 {
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
  color: #ffffff;
}

/* Header Search Form */
.amz-search-container {
  display: flex;
  flex: 1;
  max-width: 900px;
  margin: 0 12px;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid transparent;
  transition: box-shadow 0.15s, border-color 0.15s;
  position: relative;
}

.amz-search-container:focus-within {
  border-color: var(--amz-yellow-dark);
  box-shadow: 0 0 0 3px rgba(243, 168, 71, 0.5);
}

.amz-search-category {
  background: #f3f3f3;
  color: #555555;
  border: none;
  border-right: 1px solid #cdcdcd;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
  max-width: 140px;
  cursor: pointer;
  outline: none;
}

.amz-search-category:hover {
  background: #e2e2e2;
  color: #111111;
}

.amz-search-input {
  flex: 1;
  border: none;
  padding: 9px 12px;
  font-size: 14px;
  outline: none;
}

.amz-search-btn {
  background-color: var(--amz-yellow);
  border: none;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.amz-search-btn:hover {
  background-color: var(--amz-yellow-dark);
}

/* Search Autocomplete Suggestions Dropdown */
.amz-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--amz-border-gray);
  border-top: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 1050;
  display: none;
  max-height: 380px;
  overflow-y: auto;
}

.amz-suggestion-item {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f1111;
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid #f2f2f2;
}

.amz-suggestion-item:hover, .amz-suggestion-item.active {
  background-color: #f7fafa;
  color: var(--amz-orange);
}

.amz-suggestion-thumb {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 2px;
}

/* Cart Badge */
.amz-cart-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.amz-cart-count {
  position: absolute;
  left: 14px;
  top: -2px;
  color: var(--amz-yellow-dark);
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
}

.amz-cart-icon {
  font-size: 26px;
  color: #ffffff;
}

/* ==========================================================================
   Sub-Navigation Bar
   ========================================================================== */
.amazon-subnav {
  background-color: var(--amz-nav-sub);
  color: #ffffff;
  padding: 0 12px;
  height: 39px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.amazon-subnav::-webkit-scrollbar {
  display: none;
}

.amz-subnav-link {
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.amz-subnav-link:hover {
  border-color: #ffffff;
}

.amz-subnav-deals {
  color: #febd69 !important;
  font-weight: 700;
}

/* ==========================================================================
   Hero Banner & Carousel
   ========================================================================== */
.amz-hero-carousel {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

.amz-hero-slide {
  height: 360px;
  background-size: cover;
  background-position: center top;
  position: relative;
}

@media (min-width: 992px) {
  .amz-hero-slide {
    height: 480px;
  }
}

.amz-hero-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, rgba(234, 237, 237, 0) 0%, rgba(234, 237, 237, 1) 100%);
  pointer-events: none;
}

.amz-hero-content {
  position: absolute;
  top: 30px;
  left: 40px;
  max-width: 500px;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

.amz-hero-content h1 {
  font-size: 32px;
  font-weight: 800;
  color: #0f1111;
  line-height: 1.2;
}

.amz-hero-content p {
  font-size: 15px;
  color: #333333;
  margin-top: 8px;
}

/* ==========================================================================
   Homepage Feature Cards (4-Quadrant Grid & Single Promo)
   ========================================================================== */
.amz-grid-container {
  max-width: 1500px;
  margin: -160px auto 30px auto;
  padding: 0 16px;
  position: relative;
  z-index: 3;
}

.amz-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid #e3e6e6;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.amz-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.amz-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f1111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.amz-quad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.amz-quad-item {
  text-decoration: none;
  color: #0f1111;
  display: block;
}

.amz-quad-item:hover {
  text-decoration: none;
}

.amz-quad-img-wrap {
  background: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.amz-quad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.amz-quad-item:hover .amz-quad-img {
  transform: scale(1.04);
}

.amz-quad-label {
  font-size: 12px;
  line-height: 14px;
  color: #0f1111;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.amz-single-promo-img-wrap {
  height: 240px;
  background: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.amz-single-promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.amz-card:hover .amz-single-promo-img {
  transform: scale(1.02);
}

.amz-card-footer-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--amz-link-blue);
  display: inline-block;
  margin-top: auto;
}

.amz-card-footer-link:hover {
  color: var(--amz-link-hover);
  text-decoration: underline;
}

/* ==========================================================================
   Horizontal Product Rails / Sliders
   ========================================================================== */
.amz-rail-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid #e3e6e6;
  position: relative;
}

.amz-rail-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.amz-rail-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f1111;
  margin: 0;
}

.amz-rail-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.amz-rail-scroll::-webkit-scrollbar {
  height: 6px;
}

.amz-rail-scroll::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 3px;
}

.amz-rail-item {
  flex: 0 0 200px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}

.amz-rail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.09);
  text-decoration: none;
}

.amz-rail-item-img-wrap {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.amz-rail-item-img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
}

/* ==========================================================================
   Badges, Tags & Pricing
   ========================================================================== */
.amz-badge-bestseller {
  background-color: #e67a00;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 2px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.amz-badge-deal {
  background-color: var(--amz-red-deal);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-block;
}

.amz-deal-percent {
  color: var(--amz-red-deal);
  font-size: 18px;
  font-weight: 300;
  margin-right: 6px;
}

.amz-price-large {
  font-size: 26px;
  font-weight: 500;
  color: #0f1111;
  line-height: 1;
}

.amz-price-large sup {
  font-size: 13px;
  top: -0.6em;
}

.amz-price-original {
  font-size: 12px;
  color: #565959;
  text-decoration: line-through;
  margin-left: 6px;
}

.amz-prime-tag {
  color: var(--amz-prime-blue);
  font-weight: 800;
  font-style: italic;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.amz-prime-tag .bi-check {
  font-size: 18px;
  stroke-width: 2px;
  color: var(--amz-orange);
}

.amz-delivery-text {
  font-size: 12px;
  color: #0f1111;
  line-height: 1.4;
}

.amz-delivery-bold {
  font-weight: 700;
}

/* ==========================================================================
   Buttons (Amazon Style)
   ========================================================================== */
.btn-amz-cart {
  background: var(--amz-btn-cart);
  border: 1px solid #fcd200;
  border-radius: 20px;
  color: #0f1111;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
  transition: background 0.15s ease, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.btn-amz-cart:hover {
  background: var(--amz-btn-cart-hover);
  border-color: #f2c200;
  color: #0f1111;
}

.btn-amz-cart:active {
  background: #f0b800;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.btn-amz-buy {
  background: var(--amz-btn-buy);
  border: 1px solid #ff8f00;
  border-radius: 20px;
  color: #0f1111;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
  transition: background 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.btn-amz-buy:hover {
  background: var(--amz-btn-buy-hover);
  border-color: #e07a00;
  color: #0f1111;
}

.btn-amz-secondary {
  background: #ffffff;
  border: 1px solid var(--amz-border-gray);
  border-radius: 8px;
  color: #0f1111;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
  transition: background 0.15s;
}

.btn-amz-secondary:hover {
  background: #f7fafa;
  border-color: #d0d7d9;
}

/* ==========================================================================
   Product Listing / Catalog Page (Filter & Cards)
   ========================================================================== */
.amz-filter-sidebar {
  background: #ffffff;
  border-radius: 4px;
  padding: 16px;
  border: 1px solid #e3e6e6;
}

.amz-filter-heading {
  font-size: 14px;
  font-weight: 700;
  color: #0f1111;
  margin-top: 16px;
  margin-bottom: 8px;
}

.amz-filter-link {
  display: flex;
  align-items: center;
  color: #0f1111;
  font-size: 13px;
  padding: 3px 0;
  text-decoration: none;
}

.amz-filter-link:hover {
  color: var(--amz-orange);
  text-decoration: none;
}

.amz-filter-link.active {
  font-weight: 700;
  color: #0f1111;
}

.amz-product-card-grid {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.15s ease;
}

.amz-product-card-grid:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.amz-prod-img-box {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  margin-bottom: 12px;
  position: relative;
}

.amz-prod-img {
  max-height: 190px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.amz-product-card-grid:hover .amz-prod-img {
  transform: scale(1.03);
}

.amz-prod-title {
  font-size: 15px;
  font-weight: 500;
  color: #0f1111;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.amz-prod-title:hover {
  color: var(--amz-link-hover);
}

/* ==========================================================================
   Product Detail Page (PDP) & Buy Box
   ========================================================================== */
.amz-pdp-container {
  background: #ffffff;
  border-radius: 4px;
  padding: 24px;
  margin-top: 16px;
  margin-bottom: 24px;
  border: 1px solid #e3e6e6;
}

.amz-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.amz-gallery-thumb {
  width: 50px;
  height: 50px;
  border: 1px solid #d5d9d9;
  border-radius: 4px;
  padding: 2px;
  cursor: pointer;
  object-fit: contain;
  transition: border-color 0.15s;
}

.amz-gallery-thumb:hover, .amz-gallery-thumb.active {
  border-color: var(--amz-orange);
  box-shadow: 0 0 0 2px rgba(228, 121, 17, 0.4);
}

.amz-main-image-preview {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.amz-main-image-preview img {
  max-height: 400px;
  max-width: 100%;
  object-fit: contain;
}

/* Buy Box Card */
.amz-buy-box {
  border: 1px solid var(--amz-border-gray);
  border-radius: 8px;
  padding: 16px 18px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.amz-stock-status {
  font-size: 18px;
  font-weight: 700;
  color: var(--amz-green-stock);
  margin-bottom: 8px;
}

.amz-seller-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #565959;
  margin-bottom: 4px;
}

.amz-seller-val {
  color: #0f1111;
  font-weight: 500;
}

/* Customer Reviews Breakdown Bars */
.amz-review-bar-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 13px;
}

.amz-bar-track {
  flex: 1;
  height: 18px;
  background: #f0f2f2;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e3e6e6;
}

.amz-bar-fill {
  height: 100%;
  background: var(--amz-yellow-dark);
}

/* ==========================================================================
   Shopping Cart Page
   ========================================================================== */
.amz-cart-container {
  background: #ffffff;
  border-radius: 4px;
  padding: 24px;
  border: 1px solid #e3e6e6;
}

.amz-cart-item-row {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e7e7e7;
}

.amz-cart-item-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.amz-cart-subtotal-box {
  background: #ffffff;
  border: 1px solid #e3e6e6;
  border-radius: 8px;
  padding: 20px;
}

/* ==========================================================================
   Checkout Page
   ========================================================================== */
.amz-checkout-header {
  background: linear-gradient(to bottom, #fcfcfc, #f7f7f7);
  border-bottom: 1px solid #e7e7e7;
  padding: 12px 24px;
}

.amz-checkout-step {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 16px;
}

.amz-checkout-step-number {
  font-size: 18px;
  font-weight: 700;
  color: #0f1111;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* ==========================================================================
   Order Tracking Timeline
   ========================================================================== */
.amz-tracker-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 30px 0;
}

.amz-tracker-timeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 20px;
  right: 20px;
  height: 4px;
  background: #e7e7e7;
  z-index: 1;
}

.amz-tracker-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 25%;
}

.amz-tracker-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #cdcdcd;
  margin: 0 auto 8px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #888888;
}

.amz-tracker-step.completed .amz-tracker-circle {
  background: var(--amz-green-stock);
  border-color: var(--amz-green-stock);
  color: #ffffff;
}

.amz-tracker-step.active .amz-tracker-circle {
  background: var(--amz-yellow-dark);
  border-color: var(--amz-yellow-dark);
  color: #ffffff;
}

.amz-tracker-label {
  font-size: 12px;
  font-weight: 700;
  color: #0f1111;
}

/* ==========================================================================
   Amazon Footer
   ========================================================================== */
.amz-back-to-top {
  background-color: var(--amz-nav-hover);
  color: #ffffff;
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s;
}

.amz-back-to-top:hover {
  background-color: #485769;
  color: #ffffff;
}

.amazon-footer-main {
  background-color: var(--amz-nav-sub);
  color: #ffffff;
  padding: 40px 0 30px 0;
}

.amz-footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.amz-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amz-footer-links li {
  margin-bottom: 8px;
}

.amz-footer-links a {
  color: #dddddd;
  font-size: 13px;
  text-decoration: none;
}

.amz-footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.amazon-footer-bottom {
  background-color: var(--amz-dark-navy);
  color: #dddddd;
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  border-top: 1px solid #3a4553;
}

/* ==========================================================================
   Toast / Notification
   ========================================================================== */
.amz-toast-custom {
  background: #ffffff;
  border-left: 4px solid var(--amz-green-stock);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  border-radius: 4px;
}

/* ==========================================================================
   Offcanvas Amazon Menu
   ========================================================================== */
.amz-offcanvas-header {
  background-color: var(--amz-nav-sub);
  color: #ffffff;
  padding: 14px 20px;
}

.amz-offcanvas-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.amz-offcanvas-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f1111;
  padding: 14px 20px 6px 20px;
}

.amz-offcanvas-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #0f1111;
  font-size: 14px;
  text-decoration: none;
}

.amz-offcanvas-item:hover {
  background-color: #eaeded;
  color: #0f1111;
  text-decoration: none;
}

/* Admin Seller Central */
.amz-admin-sidebar {
  background: var(--amz-dark-navy);
  min-height: calc(100vh - 60px);
  color: #ffffff;
}

.amz-admin-nav-link {
  color: #cccccc;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.amz-admin-nav-link:hover, .amz-admin-nav-link.active {
  background: var(--amz-nav-sub);
  color: var(--amz-yellow);
  border-left-color: var(--amz-yellow);
  text-decoration: none;
}
