/* Shop CSS - Artron Innovative */

:root {
  --primary-color: #3dd6c4;
  --primary-dark: #3b8ea7;
  --secondary-color: #858796;
  --success-color: #1cc88a;
  --info-color: #36b9cc;
  --warning-color: #f6c23e;
  --danger-color: #e74a3b;
  --dark-color: #1a1d29;
  --light-bg: #f8f9fc;
  --accent-color: #4154f1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Nunito",
    "Open Sans",
    "Prompt",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #fff;
  color: #333;
  padding-top: 100px;
}

/* Header */
.shop-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.shop-header .logo img {
  transition: transform 0.3s;
}

.shop-header .logo:hover img {
  transform: scale(1.05);
}

.shop-header .nav-link {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
}

.shop-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.shop-header .nav-link:hover::after,
.shop-header .nav-link.active::after {
  width: 100%;
}

.shop-header .nav-link:hover {
  color: var(--primary-color);
}

/* Cart Icon */
.cart-icon {
  position: relative;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}

.cart-icon:hover {
  color: var(--primary-color);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: linear-gradient(135deg, var(--danger-color), #c0392b);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  /* Pill shape */
  background-color: #e74c3c;
  /* Fallback */
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10;
}

/* Mini Cart Dropdown */
.mini-cart-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mini-cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Arrow */
.mini-cart-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 15px;
  height: 15px;
  background: white;
  transform: rotate(45deg);
}

.mini-cart-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-cart-header h6 {
  margin: 0;
  font-weight: 700;
}

.mini-cart-body {
  max-height: 300px;
  overflow-y: auto;
  padding: 0;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
}

.mini-cart-item:hover {
  background: #f9f9f9;
}

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

.mini-cart-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eee;
}

.mini-cart-info {
  flex: 1;
}

.mini-cart-title {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
  color: var(--dark-color);
  text-decoration: none;
}

.mini-cart-price {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 700;
}

.mini-cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

.mini-qty-btn {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  color: #666;
}

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

.mini-cart-remove {
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.mini-cart-remove:hover {
  color: var(--danger-color);
}

/* Remove number input spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--dark-color);
}

.qty-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.5);
}

.cart-item-remove {
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-size: 1.1rem;
}

.cart-item-remove:hover {
  color: var(--danger-color);
}

.mini-cart-footer {
  padding: 15px 20px;
  background: #fcfcfc;
  border-top: 1px solid #eee;
  border-radius: 0 0 15px 15px;
}

/* Hero Banner */
.shop-hero {
  background: linear-gradient(135deg,
      var(--primary-dark) 0%,
      var(--primary-color) 50%,
      var(--accent-color) 100%);
  padding: 30px 0;
  text-align: center;
  color: white;
}

.shop-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.shop-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--light-bg);
  padding: 15px 0;
}

.breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--secondary-color);
}

/* Sidebar */
.sidebar-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-card h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 5px;
}

.category-list a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
}

.category-list a:hover {
  background-color: var(--light-bg);
  color: var(--primary-color);
}

.category-list a.active {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-dark));
  color: white;
}

.category-list .badge {
  margin-left: auto;
  background-color: rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.category-list a.active .badge {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Product Card */
.product-card {
  background: white;
  /* border-radius: 15px; */
  /* Removed large radius for cleaner look */
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* Subtler shadow */
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  /* Light border */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: white;
  padding: 15px;
  /* Add padding inside image area */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Contain to show full product */
  transition: transform 0.5s;
}

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

.product-image .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  color: #ccc;
  font-size: 3rem;
}

.badge-hot {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #ff357a, #fff172);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 53, 122, 0.4);
  z-index: 2;
  animation: pulse-hot 2s infinite;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes pulse-hot {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.badge-pdf {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #dc3545;
  /* Standard bootstrap danger */
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #f8f9fa;
}

.product-category {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1rem;
  /* Slightly smaller */
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 2.8em;
  /* Reserve height for 2 lines */
}

.product-title a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s;
}

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

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #00b8d4;
  /* Cyan color matching reference */
  margin-bottom: 15px;
}

.product-actions {
  margin-top: auto;
}

.product-actions .btn.add-to-cart {
  background-color: #17a2b8;
  /* Cyan/Teal block */
  border-color: #17a2b8;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 10px;
  border-radius: 2px;
  /* Sharper corners */
  transition: all 0.3s;
}

.product-actions .btn.add-to-cart:hover {
  background-color: #138496;
  border-color: #117a8b;
  transform: translateY(-2px);
}

.quick-view-btn {
  font-size: 0.85rem;
  color: #6c757d;
}

.quick-view-btn:hover {
  color: var(--primary-color);
  text-decoration: underline !important;
}

/* Product Detail Page */
.product-gallery {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.main-image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-bg);
}

.main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  cursor: zoom-in;
}

.thumbnails-wrapper {
  margin-top: 15px;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
}

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

.no-image-large {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 10px;
  color: #ccc;
}

.no-image-large i {
  font-size: 5rem;
  margin-bottom: 15px;
}

.product-detail-info {
  padding: 20px 0;
}

.product-category-badge {
  display: inline-block;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-dark));
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.product-detail-info .product-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.product-price-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.product-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.add-to-cart-form {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: var(--light-bg);
  border-radius: 10px;
  overflow: hidden;
}

.qty-btn {
  width: 45px;
  height: 50px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.qty-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.quantity-selector input {
  width: 60px;
  height: 50px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.add-to-cart-btn {
  flex: 1;
}

.pdf-download .btn {
  padding: 12px 25px;
}

.contact-box {
  background: var(--light-bg);
  border-radius: 15px;
  padding: 20px;
}

.contact-box h6 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Cart Page */
.cart-items-container {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 120px 100px 40px;
  gap: 15px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

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

.cart-item-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.no-image-small {
  width: 80px;
  height: 80px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 1.5rem;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.cart-item-price {
  color: var(--secondary-color);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  background: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-quantity .qty-btn {
  width: 35px;
  height: 35px;
  font-size: 1rem;
}

.cart-item-quantity .qty-value {
  width: 40px;
  text-align: center;
  font-weight: 600;
}

.cart-item-subtotal {
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--danger-color);
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.cart-item-remove:hover {
  opacity: 1;
}

/* Cart Summary */
.cart-summary {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.cart-summary h5 {
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}


/* Floating Contact Widget - Redesigned */
.floating-contact-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 15px;
}

.contact-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2bb6c4, #37d3b0);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 15px rgba(55, 210, 176, 0.4);
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.contact-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(55, 210, 176, 0.6);
}

.contact-toggle .label {
  position: absolute;
  right: 70px;
  background: white;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: all 0.3s;
  pointer-events: none;
}

/* Hide label when active */
.floating-contact-widget.active .contact-toggle .label {
  opacity: 0;
  transform: translateX(10px);
}

.contact-toggle .icon-wrapper {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-toggle i {
  font-size: 24px;
  position: absolute;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-toggle .bi-x-lg {
  opacity: 0;
  transform: rotate(-180deg) scale(0.5);
}

.floating-contact-widget.active .contact-toggle .bi-chat-dots-fill {
  opacity: 0;
  transform: rotate(180deg) scale(0.5);
}

.floating-contact-widget.active .contact-toggle .bi-x-lg {
  opacity: 1;
  transform: rotate(0) scale(1);
}

/* Options Container */
.contact-options {
  display: flex;
  flex-direction: column-reverse;
  /* Stack upwards */
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  /* Center align items */
  margin-bottom: 20px;
  /* Space between options and toggle button */
  position: absolute;
  /* Position absolute to stack correctly */
  bottom: 80px;
  /* Start above the button */
  right: 0;
  /* Align with toggle button */
  width: 60px;
  /* Match button width */
}

.floating-contact-widget.active .contact-options {
  opacity: 1;
  visibility: visible;
}

/* Individual Option Buttons */
.contact-option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(20px) scale(0.5);
}

.contact-option:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-option span {
  display: none;
  /* Hide text label for circular design */
}

/* Tooltip on hover */
.contact-option::after {
  content: attr(title);
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  pointer-events: none;
}

.contact-option:hover::after {
  opacity: 1;
  visibility: visible;
}

.contact-option i {
  font-size: 24px;
}

/* Specific Colors */
.contact-option.line {
  background-color: #00B900;
  color: white;
}

.contact-option.gmail {
  background-color: #DB4437;
  color: white;
}

.contact-option.messenger {
  background-color: #0084FF;
  color: white;
}

.contact-option.tiktok {
  background-color: #000000;
  color: white;
}

.contact-option.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: white;
}

/* Active State for Main Button */
.floating-contact-widget.active .contact-toggle {
  background: #000000;
  /* Black background when active */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: rotate(90deg);
  /* Slight rotation */
}

/* Staggered Animation */
.floating-contact-widget.active .contact-option {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-contact-widget.active .contact-option:nth-child(1) {
  transition-delay: 0.2s;
}

.floating-contact-widget.active .contact-option:nth-child(2) {
  transition-delay: 0.15s;
}

.floating-contact-widget.active .contact-option:nth-child(3) {
  transition-delay: 0.1s;
}

.floating-contact-widget.active .contact-option:nth-child(4) {
  transition-delay: 0.05s;
}


/* Mobile adjustments */
@media (max-width: 576px) {
  .floating-contact-widget {
    bottom: 80px;
    /* Above bottom nav often found on mobile */
    right: 20px;
    align-items: center;
    /* Center align on mobile for better touch targets */
  }

  .contact-toggle .label {
    display: none;
  }
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.summary-row.total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
}

/* Footer */
.shop-footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 20px 0 20px;
  margin-top: 20px;
}

.shop-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.shop-footer a:hover {
  color: white;
}

/* Toast */
.toast {
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .shop-hero h1 {
    font-size: 2rem;
  }

  .cart-item {
    gap: 10px;
  }

  .cart-item-quantity,
  .cart-item-subtotal {
    grid-column: span 1;
  }
}

/* Banner Card */
.banner-card {
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: white;
}

.banner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  body {
    padding-top: 70px;
  }

  .shop-hero {
    padding: 40px 0;
  }

  .shop-hero h1 {
    font-size: 1.8rem;
  }

  .add-to-cart-form {
    flex-direction: column;
  }

  .quantity-selector {
    justify-content: center;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item-image {
    display: none;
  }

  .cart-item-subtotal,
  .cart-item-remove {
    text-align: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.5s ease-out;
}

/* Button hover effects */
.btn-primary {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--primary-dark));
  border: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(61, 214, 196, 0.4);
  background: linear-gradient(135deg,
      var(--primary-dark),
      var(--primary-color));
}

/* Related Products */
.related-products h3 {
  font-weight: 700;
  color: var(--dark-color);
}

/* Pagination Overrides */
.page-item.active .page-link {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
}

.page-link {
  color: var(--primary-color);
}

.page-link:hover {
  color: var(--primary-dark);
}