/* ==========================================================================
   ShadowArms E-Commerce – Modern Modular Design System
   Primary Color: #c18d2b | Clean White Background | Sharp Geometric Styling
   ========================================================================== */

:root {
  --primary: #c18d2b;
  --primary-hover: #a87820;
  --primary-dark: #8c6318;
  --primary-light: rgba(193, 141, 43, 0.12);
  --primary-glow: rgba(193, 141, 43, 0.25);

  --secondary: #0f172a;
  --secondary-hover: #1e293b;

  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;

  --border-color: #e2e8f0;
  --border-dark: #334155;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --accent-green: #10b981;
  --accent-red: #ef4444;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;

  --radius-sharp: 4px;
  --radius-badge: 2px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--text-main);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.text-gold {
  color: var(--primary) !important;
}

.bg-gold {
  background-color: var(--primary) !important;
}

.bg-navy {
  background-color: var(--secondary) !important;
}

.border-gold {
  border-color: var(--primary) !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-gold {
  background: var(--primary);
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-sharp);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10.5px;
  cursor: pointer;
}

.btn-gold:hover,
.btn-gold:focus {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #000000;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-navy {
  background: var(--secondary);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--secondary);
  padding: 10px 20px;
  border-radius: var(--radius-sharp);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  cursor: pointer;
}

.btn-navy:hover {
  background: var(--secondary-hover);
  color: #ffffff;
}

.btn-outline-navy {
  background: transparent;
  color: var(--secondary);
  font-weight: 700;
  border: 1px solid #cbd5e1;
  padding: 9px 18px;
  border-radius: var(--radius-sharp);
  transition: all 0.2s ease;
}

.btn-outline-navy:hover {
  background: #f1f5f9;
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ==========================================================================
   Badges
   ========================================================================== */
.badge-tactical {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid rgba(193, 141, 43, 0.35);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: var(--radius-badge);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-stock {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-sale {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
}

/* ==========================================================================
   Product Card
   ========================================================================== */
.product-card-modern {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sharp);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-card-modern:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.product-card-modern .img-wrap {
  height: 210px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.product-card-modern .img-wrap img {
  max-height: 175px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.product-card-modern:hover .img-wrap img {
  transform: scale(1.04);
}

.product-card-modern .product-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.7em;
  margin-bottom: 8px;
}

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

/* Variant Swatches */
.variant-swatch-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  transition: transform 0.15s ease, outline 0.15s ease;
}

.variant-swatch-dot.active {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
  background-color: #0f172a;
  color: #94a3b8;
  font-size: 12px;
  border-bottom: 1px solid #1e293b;
  line-height: 1.4;
}

@media (max-width: 575.98px) {
  .top-bar {
    font-size: 11px;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .top-bar .container {
    padding-left: 4px;
    padding-right: 4px;
  }
}

.nav-bar {
  background-color: #0f172a;
  border-top: 1px solid #1e293b;
  min-height: 50px;
}

@media (min-width: 992px) {
  .nav-bar {
    height: 50px;
  }

  .nav-bar .nav-item {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .nav-bar .nav-item.dropdown {
    position: relative !important;
  }

  .nav-bar .nav-link-custom {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 16px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    transition: all 0.15s ease;
  }

  .nav-bar .nav-link-custom:hover,
  .nav-bar .nav-link-custom.active {
    color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
  }

  /* Custom Category Dropdown Menus in Top Nav */
  .custom-nav-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.22), 0 4px 10px rgba(0, 0, 0, 0.06);
    margin-top: 0 !important;
    z-index: 1200;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-bar .dropdown:hover>.custom-nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav-bar .nav-link-custom.dropdown-toggle::after {
    display: inline-block;
    margin-left: 4px;
    vertical-align: 1px;
    border-top: 3.5px solid;
    border-right: 3.5px solid transparent;
    border-bottom: 0;
    border-left: 3.5px solid transparent;
    transition: transform 0.2s ease;
  }

  .nav-bar .dropdown:hover>.nav-link-custom.dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-bar .nav-link-custom {
    padding: 0 11px;
    font-size: 12px;
    gap: 5px;
  }
}

.custom-nav-dropdown .dropdown-item {
  color: #334155;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.15s ease;
  white-space: normal;
}

.custom-nav-dropdown .dropdown-item:hover {
  background-color: #f8fafc;
  color: var(--primary);
  transform: translateX(2px);
}

.custom-nav-dropdown .dropdown-item:hover i {
  color: var(--primary) !important;
}

/* Mega Menu & All Categories Button */
.btn-all-categories {
  background: linear-gradient(135deg, #d49e35 0%, #b88322 100%);
  color: #000000;
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 4px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-all-categories:hover,
.btn-all-categories:focus,
.btn-all-categories[aria-expanded="true"] {
  background: linear-gradient(135deg, #e5ae40 0%, #c9932d 100%);
  color: #000000;
  box-shadow: 0 4px 10px rgba(193, 141, 43, 0.35);
  transform: translateY(-1px);
}

.btn-all-categories::after {
  display: none !important;
}

.cat-burger-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 15px;
  height: 12px;
}

.cat-burger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #000000;
  border-radius: 1px;
  transition: all 0.2s ease;
}

.btn-all-categories:hover .cat-burger-icon span:nth-child(2) {
  width: 70%;
}

.cat-arrow {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.btn-all-categories[aria-expanded="true"] .cat-arrow {
  transform: rotate(180deg);
}

.mega-menu-container {
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.05);
  margin-top: 8px !important;
  animation: megaMenuFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes megaMenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.mega-cat-group {
  transition: transform 0.15s ease;
}

.mega-cat-header {
  transition: all 0.15s ease;
  padding: 4px;
  border-radius: 4px;
}

.mega-cat-header:hover {
  background-color: #f8fafc;
}

.mega-cat-header:hover h6 {
  color: var(--primary) !important;
}

.mega-cat-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background-color: #f1f5f9;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-cat-header:hover .mega-cat-icon {
  background-color: rgba(193, 141, 43, 0.15);
  color: var(--primary);
  transform: scale(1.05);
}

.mega-subcat-list {
  padding-left: 14px !important;
  margin-left: 19px !important;
  border-left: 2px solid #f1f5f9;
}

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

.mega-subcat-list li:last-child {
  margin-bottom: 0;
}

.mega-subcat-list a {
  color: #64748b;
  font-size: 12.5px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.15s ease;
  text-decoration: none;
}

.mega-subcat-list a:hover {
  color: var(--primary);
  font-weight: 600;
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .mega-menu-container {
    min-width: 100% !important;
    max-width: 100%;
    position: static !important;
    transform: none !important;
    margin-top: 6px !important;
  }
}


/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  border-radius: var(--radius-sharp);
  overflow: hidden;
  height: 40px;
}

.search-box input {
  border: none;
  background: transparent;
  padding: 0 12px;
  font-size: 13.5px;
  width: 100%;
  outline: none;
}

.search-box .btn-search {
  background: var(--primary);
  color: #000000;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  height: 100%;
  padding: 0 22px;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.search-box .btn-search:hover {
  background: var(--primary-hover);
}

/* Search Autocomplete */
.search-autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 1100;
  max-height: 460px;
  overflow-y: auto;
}

.search-product-item {
  border-bottom: 1px solid #f1f5f9;
  background: #ffffff;
  border-left: 3px solid transparent;
  transition: all 0.15s ease;
}

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

.search-product-item:hover,
.search-product-item.selected {
  background: #f8fafc !important;
  border-left-color: var(--primary) !important;
}

.search-product-item:hover .search-item-arrow {
  color: var(--primary) !important;
  transform: translateX(3px);
}

.search-product-thumb {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}

/* ==========================================================================
   Cart Drawer (Slide-Over)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  z-index: 2001;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

/* ==========================================================================
   Steppers & Checkout
   ========================================================================== */
.checkout-step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin-right: 8px;
}

.checkout-step-badge.active {
  background: var(--primary);
  color: #000000;
}

.option-card-radio {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sharp);
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #ffffff;
}

.option-card-radio:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.option-card-radio.selected {
  border-color: var(--primary);
  background: rgba(193, 141, 43, 0.04);
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sharp);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   Breadcrumb Bar Compact Padding & 11px Typography
   ========================================================================== */
.breadcrumb-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.breadcrumb-bar .breadcrumb,
.breadcrumb-bar .breadcrumb-item,
.breadcrumb-bar .breadcrumb-item a,
.breadcrumb-bar .breadcrumb-item.active,
.breadcrumb-bar .container,
.breadcrumb-item,
.breadcrumb {
  font-size: 11px !important;
  line-height: 1.4 !important;
}

.breadcrumb-bar .breadcrumb-item+.breadcrumb-item::before {
  font-size: 10px;
  color: #94a3b8;
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}

/* ==========================================================================
   Form Controls
   ========================================================================== */
.form-control-custom {
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sharp);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-main);
  background-color: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
  outline: none;
}

/* ==========================================================================
   Store Opening Status Badge
   ========================================================================== */
.opening-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: var(--radius-sharp);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.opening-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.opening-status.open {
  background-color: rgba(16, 185, 129, 0.16);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.45);
}

.opening-status.open .status-dot {
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: statusPulseGreen 2s infinite;
}

.opening-status.opening-soon,
.opening-status.closing-soon {
  background-color: rgba(245, 158, 11, 0.18);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.5);
}

.opening-status.opening-soon .status-dot,
.opening-status.closing-soon .status-dot {
  background-color: #f59e0b;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  animation: statusPulseOrange 2s infinite;
}

.opening-status.closed {
  background-color: rgba(239, 68, 68, 0.16);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.opening-status.closed .status-dot {
  background-color: #ef4444;
}

@keyframes statusPulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes statusPulseOrange {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(245, 158, 11, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

/* ==========================================================================
   Product Description Rich Content
   ========================================================================== */
.product-description-content {
  color: #334155;
  font-size: 14px;
  line-height: 1.7;
}

.product-description-content p {
  margin-bottom: 1rem;
}

.product-description-content p:last-child {
  margin-bottom: 0;
}

.product-description-content strong,
.product-description-content b {
  color: #0f172a;
  font-weight: 700;
}

.product-description-content ul,
.product-description-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.product-description-content li {
  margin-bottom: 0.35rem;
}

/* ==========================================================================
   Cookie Consent Banner & Floating Button
   ========================================================================== */
.cookie-consent-banner {
  animation: cookieSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cookieSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.cookie-floating-btn {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 1040;
  background-color: #0f172a;
  color: var(--primary);
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.cookie-floating-btn:hover {
  background-color: #1e293b;
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Tactical Sleek Grayscale Map
   ========================================================================== */
.map-grayscale-wrapper {
  overflow: hidden;
  background-color: #0f172a;
}

.map-grayscale-wrapper iframe {
  filter: grayscale(85%) contrast(95%) opacity(0.92);
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.map-grayscale-wrapper:hover iframe {
  filter: grayscale(0%) contrast(100%) opacity(1);
}

/* ==========================================================================
   Novinka Tag / Badge Styling (#5E5CC6)
   ========================================================================== */
.badge-novinka,
.badge-new,
.tag-novinka,
.badge.bg-purple,
.badge.bg-novinka {
  background-color: #5E5CC6 !important;
  color: #ffffff !important;
}

/* ==========================================================================
   Mobile Horizontal Main Categories Slider (Slide Left-to-Right)
   ========================================================================== */
.mobile-cat-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 0 6px 0;
}

.mobile-cat-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.mobile-cat-slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  min-width: max-content;
  padding-left: 2px;
  padding-right: 2px;
}

.mobile-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #1e293b;
  color: #f1f5f9;
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 6px 13px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile-cat-pill:hover,
.mobile-cat-pill:active,
.mobile-cat-pill.active {
  background-color: var(--primary);
  color: #000000;
  border-color: var(--primary);
}

.mobile-cat-pill:hover i,
.mobile-cat-pill:active i,
.mobile-cat-pill.active i {
  color: #000000 !important;
}

.mobile-cat-pill-sale {
  border-color: rgba(220, 38, 38, 0.45);
  background: rgba(220, 38, 38, 0.15);
  color: #fca5a5;
}

.mobile-cat-pill-sale:hover,
.mobile-cat-pill-sale.active {
  background-color: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
}

.mobile-cat-pill-sale:hover i,
.mobile-cat-pill-sale.active i {
  color: #ffffff !important;
}

.mobile-cat-pill-all {
  border-color: var(--primary);
  background: rgba(193, 141, 43, 0.15);
  color: var(--primary);
}

/* ==========================================================================
   Hero Banner Carousel Slider
   ========================================================================== */
.hero-video-banner,
.hero-carousel-slider {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background-color: #0f172a;
}

.hero-carousel-slider .carousel-inner {
  position: relative;
  z-index: 3;
}

.hero-carousel-slider .carousel-indicators [data-bs-target] {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.hero-carousel-slider .carousel-indicators .active {
  background-color: var(--primary) !important;
  width: 38px;
}

.hero-carousel-slider .carousel-control-prev,
.hero-carousel-slider .carousel-control-next {
  width: 50px;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.25s ease;
}

.hero-carousel-slider:hover .carousel-control-prev,
.hero-carousel-slider:hover .carousel-control-next {
  opacity: 0.9;
}

.hero-carousel-slider .carousel-nav-btn {
  width: 38px;
  height: 38px;
  background-color: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: all 0.2s ease;
}

.hero-carousel-slider .carousel-nav-btn:hover {
  background-color: var(--primary);
  color: #000000;
  border-color: var(--primary);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.70) 55%, rgba(15, 23, 42, 0.35) 100%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-video-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.90) 0%, rgba(15, 23, 42, 0.78) 100%);
  }
}


.hero-slide-img {
  max-height: 290px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.65));
  transition: transform 0.5s ease;
}

.carousel-item.active .hero-slide-img {
  animation: heroImgFadeIn 0.8s ease forwards;
}

@keyframes heroImgFadeIn {
  from {
    opacity: 0;
    transform: translateX(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ==========================================================================
   Blog & Tactical News Styling
   ========================================================================== */
.blog-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-radius: var(--radius-sharp);
  background: #ffffff;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(15, 23, 42, 0.12), 0 4px 8px -2px rgba(15, 23, 42, 0.06);
  border-color: rgba(193, 141, 43, 0.45) !important;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-title {
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title a {
  color: var(--primary) !important;
}