/* E-Commerce Shop Stylesheet - African Inspired Design */

:root {
  --primary-color: #045c24;
  --primary-hover: #03461b;
  --secondary-color: #C75B39; /* Terracotta */
  --accent-color: #D4A017; /* Amber Gold */
  --accent-dark: #A67C0F;
  --neutral-dark: #2C3E50;
  --neutral-light: #F8F9FA;
  --neutral-bg: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-premium: 0 20px 25px -5px rgba(4, 92, 36, 0.08), 0 10px 10px -5px rgba(4, 92, 36, 0.04);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
}

/* Shop Banner / Hero Section */
.shop-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(4, 92, 36, 0.95), rgba(62, 39, 35, 0.95)), 
              url('../images/caption-bg.png') repeat;
  background-size: auto;
  color: white;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 5px solid var(--accent-color);
}

.shop-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    var(--accent-color),
    var(--accent-color) 10px,
    var(--secondary-color) 10px,
    var(--secondary-color) 20px,
    var(--primary-color) 20px,
    var(--primary-color) 30px
  );
}

.shop-hero h1 {
  font-family: 'PT Serif', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* Category Filter Pills */
.categories-container {
  padding: 30px 0;
  background: var(--neutral-light);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 9;
}

.category-scroll {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pill {
  padding: 10px 22px;
  background: var(--neutral-bg);
  border: 1px solid var(--border-color);
  color: var(--neutral-dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  user-select: none;
}

.category-pill:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.category-pill.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 10px rgba(4, 92, 36, 0.2);
}

/* Search and Controls Section */
.shop-controls {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.search-box-wrapper {
  position: relative;
  flex: 1;
  max-width: 400px;
  min-width: 250px;
}

.search-box-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #94A3B8;
  font-size: 16px;
}

.search-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: 15px;
  background: var(--neutral-bg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(4, 92, 36, 0.1);
}

.sort-select {
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  background: var(--neutral-bg);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: border 0.3s ease;
}

.sort-select:focus {
  border-color: var(--primary-color);
}

/* Product Card Design */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  padding: 20px 0 60px 0;
}

.product-card {
  background: var(--neutral-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary-color);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-image-container {
  position: relative;
  aspect-ratio: 1;
  background: #F1F5F9;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-action-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  padding: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
}

.product-card:hover .product-action-overlay {
  opacity: 1;
  transform: translateY(0);
}

.quick-view-btn {
  background: var(--accent-color);
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.quick-view-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 12px;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin: 0 0 10px 0;
  line-height: 1.4;
  font-family: 'PT Serif', serif;
}

.product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-title a:hover {
  color: var(--primary-color);
}

.product-price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

.price-usd {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.price-ugx {
  font-size: 13px;
  color: #64748B;
  font-weight: 600;
}

.add-to-cart-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.add-to-cart-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 10px rgba(4, 92, 36, 0.25);
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(4, 92, 36, 0.3);
  cursor: pointer;
  z-index: 99;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-cart-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}

.floating-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--secondary-color);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Shopping Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100%;
  background: var(--neutral-bg);
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  z-index: 1001;
  transition: right 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
  right: 0;
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  margin: 0;
  font-family: 'PT Serif', serif;
  font-weight: 700;
  color: var(--neutral-dark);
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #94A3B8;
  transition: color 0.2s ease;
}

.cart-drawer-close:hover {
  color: var(--neutral-dark);
}

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-drawer-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
  position: relative;
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--neutral-light);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin: 0 0 6px 0;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.qty-btn:hover {
  background: var(--neutral-light);
  border-color: var(--primary-color);
}

.cart-item-qty {
  font-size: 14px;
  font-weight: 700;
}

.cart-item-remove {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: #EF4444;
  cursor: pointer;
  font-size: 14px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--neutral-light);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--neutral-dark);
}

.cart-subtotal-price {
  color: var(--primary-color);
  font-size: 18px;
}

.checkout-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px;
  width: 100%;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.checkout-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 10px rgba(4, 92, 36, 0.2);
  text-decoration: none;
  color: white;
}

.view-cart-btn {
  background: white;
  color: var(--neutral-dark);
  border: 1px solid var(--border-color);
  padding: 12px;
  width: 100%;
  border-radius: var(--radius-lg);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
  margin-top: 10px;
}

.view-cart-btn:hover {
  background: var(--neutral-light);
  border-color: var(--neutral-dark);
  text-decoration: none;
  color: var(--neutral-dark);
}

.cart-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #64748B;
}

.cart-empty-state i {
  font-size: 48px;
  color: #CBD5E1;
  margin-bottom: 15px;
}

/* Product Detail Page Layout */
.product-detail-container {
  padding: 60px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image-wrapper {
  background: #F1F5F9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  aspect-ratio: 1;
}

.main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-strip {
  display: flex;
  gap: 10px;
}

.thumbnail-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  background: #F1F5F9;
  object-fit: cover;
  transition: all 0.2s ease;
}

.thumbnail-img.active, .thumbnail-img:hover {
  border-color: var(--primary-color);
}

.product-info-panel h2 {
  font-family: 'PT Serif', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin: 0 0 15px 0;
}

.detail-price-box {
  background: var(--neutral-light);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 25px;
  border-left: 4px solid var(--accent-color);
}

.detail-price-usd {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.detail-price-ugx {
  font-size: 16px;
  color: #64748B;
  font-weight: 600;
  margin-top: 4px;
}

.shipping-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
}

.product-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 30px;
}

.meta-info-list {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.meta-item {
  font-size: 14px;
  color: #64748B;
}

.meta-item strong {
  color: var(--neutral-dark);
  font-weight: 600;
}

.detail-action-row {
  display: flex;
  gap: 15px;
  align-items: center;
}

.detail-qty-select {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 5px;
  background: white;
}

.detail-qty-input {
  width: 50px;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  outline: none;
}

/* Full Cart Page Layout */
.cart-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 50px 0;
}

.cart-table-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 25px;
  box-shadow: var(--shadow-sm);
}

.cart-table-card h3 {
  margin: 0 0 25px 0;
  font-family: 'PT Serif', serif;
  font-weight: 700;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-page-item:last-child {
  border-bottom: none;
}

.cart-page-item-info h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--neutral-dark);
}

.cart-page-item-info p {
  margin: 0;
  font-size: 13px;
  color: var(--secondary-color);
  font-weight: 600;
}

.cart-page-item-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
  min-width: 100px;
}

.cart-summary-card {
  background: var(--neutral-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 30px;
}

.cart-summary-card h3 {
  margin: 0 0 20px 0;
  font-family: 'PT Serif', serif;
  font-weight: 700;
  color: var(--neutral-dark);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #64748B;
}

.summary-row.total {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 18px;
  color: var(--neutral-dark);
}

.summary-row.total span:last-child {
  color: var(--primary-color);
  font-size: 22px;
}

/* Checkout Progress / Steps */
.checkout-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.checkout-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.checkout-card h3 {
  margin: 0 0 25px 0;
  font-family: 'PT Serif', serif;
  font-weight: 700;
  color: var(--neutral-dark);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.checkout-form-group {
  margin-bottom: 20px;
}

.checkout-form-group label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--neutral-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.checkout-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.checkout-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(4, 92, 36, 0.1);
}

/* Currency toggle container */
.currency-selector-box {
  background: var(--neutral-light);
  padding: 15px;
  border-radius: var(--radius-md);
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.currency-radio-group {
  display: flex;
  gap: 15px;
}

.currency-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

/* Admin Dashboard UI */
.admin-dashboard-container {
  padding: 40px 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 20px;
}

.admin-header h2 {
  font-family: 'PT Serif', serif;
  font-weight: 700;
  margin: 0;
  color: var(--neutral-dark);
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(4, 92, 36, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-info h4 {
  margin: 0;
  font-size: 13px;
  color: #64748B;
  text-transform: uppercase;
  font-weight: 600;
}

.stat-info .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-top: 4px;
}

.admin-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.admin-tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 15px;
  color: #64748B;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease;
}

.admin-tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.admin-panel {
  display: none;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.admin-panel.active {
  display: block;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th, .admin-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background: var(--neutral-light);
  font-weight: 700;
  color: var(--neutral-dark);
}

.admin-table tr:hover {
  background: rgba(248, 249, 250, 0.5);
}

/* Password Gate Modal Overlay */
.auth-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), var(--neutral-dark));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-card {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 400px;
  width: 100%;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  text-align: center;
}

.auth-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(4, 92, 36, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px auto;
}

.auth-card h3 {
  margin: 0 0 10px 0;
  font-family: 'PT Serif', serif;
  font-weight: 700;
  font-size: 24px;
}

.auth-card p {
  color: #64748B;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Custom CSS Gradients/Patterns for African Accents */
.pattern-accent-bar {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent-color),
    var(--accent-color) 20px,
    var(--secondary-color) 20px,
    var(--secondary-color) 40px,
    var(--primary-color) 40px,
    var(--primary-color) 60px
  );
  width: 100%;
}

.status-badge {
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-badge.pending {
  background: #FEF3C7;
  color: #D97706;
}

.status-badge.processing {
  background: #DBEAFE;
  color: #2563EB;
}

.status-badge.completed {
  background: #D1FAE5;
  color: #059669;
}

/* Dropdown Menu overrides for style.css compatibility */
.navigation ul li ul {
  background-color: var(--primary-color) !important;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

.navigation ul li ul li a {
  font-size: 13px !important;
  padding: 10px 15px !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.navigation ul li ul li a:hover {
  background-color: var(--primary-hover) !important;
  padding-left: 20px !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .detail-grid, .cart-page-grid, .checkout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .shop-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .category-pill {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
  }
  
  .product-title {
    font-size: 15px;
  }
  
  .price-usd {
    font-size: 16px;
  }
}
