/* ==================== RESET AND BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==================== NAVBAR STYLES ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #dc2626;
  line-height: 1;
  letter-spacing: -0.025em;
}

.logo-text-hebrew {
  font-size: 0.875rem;
  font-weight: 600;
  color: #f87171;
  line-height: 1;
}

/* Animated Slogan (Desktop Only) */
.navbar-slogan {
  display: none;
  margin-right: 2rem;
  margin-left: auto;
  overflow: hidden;
  max-width: 500px;
  flex: 1;
}

.slogan-text {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #f87171;
  white-space: nowrap;
  animation: runningText 8s linear infinite;
}

@keyframes runningText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.navbar-menu {
  display: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 0.375rem;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f87171;
}

.nav-link-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #dc2626;
  color: white;
  padding: 0.625rem 1.25rem;
}

.nav-link-phone:hover {
  background-color: #b91c1c;
  color: white;
}

.phone-icon {
  margin-left: 0.25rem;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link-phone {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (min-width: 769px) {
  .navbar-menu {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .navbar-slogan {
    display: block;
  }
}

/* Add padding to body to account for fixed navbar */
body {
  padding-top: 70px;
}

/* ==================== HOMEPAGE STYLES ==================== */
body.homepage {
  background-color: #000;
  color: #fff;
  padding-top: 70px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: fadeIn 1s ease-in;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.9)
  );
}

.hero-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 5rem 1rem;
  max-width: 1536px;
  margin: 0 auto;
}

.promo-badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.75rem 2rem;
  background-color: rgba(98, 97, 97, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.promo-badge p {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
  line-height: 1;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.5));
}

.title-line {
  display: block;
  margin-bottom: 0.75rem;
}

.title-gradient {
  background: linear-gradient(
    to left,
    #ef4444,
    #f97316,
    #dc2626
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: none;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.625;
  filter: drop-shadow(0 10px 15px rgb(0 0 0 / 0.4));
}

.brand-list {
  color: #f87171;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  width: 100%;
}

.btn-icon {
  margin-left: 0.75rem;
  height: 1.75rem;
  width: 1.75rem;
}

.btn-primary {
  background-color: #dc2626;
  color: white;
  border-color: #f87171;
  box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.5);
}

.btn-primary:hover {
  background-color: #b91c1c;
  transform: scale(1.1);
}

.btn-secondary {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  border: 2px solid #4b5563;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  border-color: #6b7280;
  transform: scale(1.05);
}

.btn-white {
  background-color: white;
  color: black;
}

.btn-white:hover {
  background-color: #e5e5e5;
  transform: scale(1.1);
}

.btn-large {
  padding: 2rem 3rem;
  font-size: 1.25rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 80rem;
  margin: 0 auto 4rem;
}

.stat-card {
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #ef4444;
  transform: scale(1.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f87171;
}

.stat-label {
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 96rem;
  margin: 0 auto;
}

.feature-card {
  backdrop-filter: blur(16px);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #ef4444;
  transform: scale(1.05);
}

.feature-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  padding: 1rem;
  background-color: #dc2626;
  border-radius: 9999px;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.625;
}

/* Categories Section */
.categories-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

.categories-background {
  position: absolute;
  inset: 0;
}

.categories-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.categories-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #000,
    rgba(0, 0, 0, 0.9),
    #000
  );
}

.section-header {
  text-align: center;
  color: white;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.5));
  text-align: center;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.625;
  filter: drop-shadow(0 10px 15px rgb(0 0 0 / 0.4));
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.category-card {
  background-color: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #ef4444;
  transform: scale(1.05);
}

.category-image-wrapper {
  position: relative;
  height: 16rem;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image {
  transform: scale(1.1);
}

.category-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #000,
    rgba(0, 0, 0, 0.5),
    transparent
  );
}

.category-content {
  padding: 2rem;
  text-align: center;
}

.category-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
}

.category-description {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.category-price {
  color: #f87171;
  font-weight: 700;
  font-size: 1.25rem;
}

.section-cta {
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: 3rem;
}

/* Brands Section */
.brands-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(to bottom, #000, #111827);
}

.brands-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.brand-card {
  backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.brand-card:hover {
  border-color: #ef4444;
  transform: scale(1.05);
}

.brand-name {
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  filter: drop-shadow(0 10px 15px rgb(0 0 0 / 0.4));
  word-break: break-word;
}

/* Upgrade Cards Styling */
.upgrade-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
}

.upgrade-icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.upgrade-card:hover .upgrade-icon {
  transform: rotate(360deg) scale(1.1);
}

.upgrade-icon svg {
  color: white;
}

.upgrade-card .brand-name {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.upgrade-description {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.5;
}

/* Motorcycles Section */
.motorcycles-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.motorcycles-background {
  position: absolute;
  inset: 0;
}

.motorcycles-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motorcycles-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    #000,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5)
  );
}

.motorcycles-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 4rem 1rem;
}

.motorcycles-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.625;
  filter: drop-shadow(0 10px 15px rgb(0 0 0 / 0.4));
}

.motorcycles-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

/* Contact Section */
.contact-section {
  position: relative;
  padding: 5rem 0;
  background-color: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-card {
  backdrop-filter: blur(16px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 2px solid rgba(239, 68, 68, 0.5);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #ef4444;
  transform: scale(1.05);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 0.75rem;
}

.contact-text {
  color: white;
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

/* ==================== REVIEWS SECTION ==================== */
.reviews-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
  overflow: hidden;
}

.reviews-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reviews-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.95)
  );
}

.reviews-scroll-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  padding: 2rem 0;
}

.reviews-scroll-track {
  display: flex;
  gap: 2rem;
  animation: scrollReviews 40s linear infinite;
  will-change: transform;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  flex: 0 0 auto;
  width: 350px;
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(0, 0, 0, 0.95));
  border: 2px solid rgba(220, 38, 38, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.6);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.star-icon {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  color: #dc2626;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: right;
}

.review-cta-wrapper {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
}

.review-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ==================== BIKES PAGE STYLES ==================== */
body.bikes-page {
  background-color: #f9fafb;
  color: #111827;
  padding-top: 70px;
}

/* Page Wrapper */
.page-wrapper {
  min-height: 100vh;
  padding: 2rem 0;
}

/* Page Header */
.page-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.page-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

/* Filters Section */
.filter-toggle-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.filter-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%);
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: 0.75rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.filter-toggle-btn:hover {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(220, 38, 38, 0.2) 100%);
  border-color: rgba(220, 38, 38, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

.filter-toggle-btn.active {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-color: #dc2626;
}

.filter-toggle-btn .chevron-icon {
  transition: transform 0.3s ease;
}

.filter-toggle-btn.active .chevron-icon {
  transform: rotate(180deg);
}

.filters-section {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #e5e7eb;
  background-color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #111827;
}

.filter-btn:hover {
  border-color: #d1d5db;
  background-color: #f9fafb;
}

.filter-btn.active {
  background-color: #dc2626;
  color: white;
  border-color: #dc2626;
}

/* Price Filter */
.price-filter-box {
  background-color: rgba(249, 250, 251, 0.5);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.price-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.price-display span {
  font-size: 0.875rem;
  font-weight: 500;
}

.reset-btn {
  padding: 0.25rem 0.75rem;
  background-color: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reset-btn:hover {
  background-color: #f3f4f6;
}

.range-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-range {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  accent-color: #dc2626;
}

.price-number-inputs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input-group {
  flex: 1;
}

.input-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.price-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background-color: white;
  font-size: 0.875rem;
}

.quick-price-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quick-price-btn {
  padding: 0.5rem 1rem;
  border: 2px solid #e5e7eb;
  background-color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-price-btn:hover {
  border-color: #dc2626;
  background-color: #fef2f2;
}

/* Active Filters */
.active-filters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.active-filters-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.active-filter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 0.25rem 0.75rem;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tag:hover {
  background-color: #fef2f2;
  border-color: #fca5a5;
}

.clear-all-btn {
  padding: 0.25rem 0.75rem;
  background-color: transparent;
  border: none;
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease;
}

.clear-all-btn:hover {
  color: #dc2626;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 4rem 1rem;
}

.loading-spinner {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  border: 4px solid #e5e7eb;
  border-top: 4px solid #dc2626;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-state h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.loading-state p {
  font-size: 1.25rem;
  color: #6b7280;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
}

.empty-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  color: #d1d5db;
}

.empty-state h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.empty-state p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Bikes Grid */
.bikes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.bike-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.bike-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.bike-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

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

.bike-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: white;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.bike-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bike-brand {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.bike-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.bike-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.bike-spec {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.bike-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bike-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-tag {
  padding: 0.25rem 0.75rem;
  background-color: #f3f4f6;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: #4b5563;
}

.bike-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
  min-height: 80px;
}

.bike-price {
  font-size: 1.875rem;
  font-weight: 900;
  color: #dc2626;
  align-self: flex-end;
}

.bike-price-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  align-self: flex-end;
}

.bike-price-sale {
  font-size: 2rem;
  font-weight: 900;
  color: #dc2626;
  animation: pulse 2s infinite;
}

.bike-price-original {
  font-size: 1.25rem;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: line-through;
  opacity: 0.6;
  filter: blur(0.5px);
}

.sale-badge {
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 6px rgba(220, 38, 38, 0.3);
  animation: bounce 1s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.bike-cta {
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.bike-cta:hover {
  background-color: #b91c1c;
}

.bike-cta:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.bike-cta:disabled:hover {
  background-color: #9ca3af;
}

/* ==================== EQUIPMENT CARD STYLES ==================== */
.equipment-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.equipment-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #f9fafb;
}

.equipment-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

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

.equipment-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: white;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 1;
}

.equipment-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 0;
}

.equipment-brand {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
  line-height: 1.2;
  height: 1.05rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.equipment-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
  line-height: 1.4;
  height: 3.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.equipment-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  height: 2.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.equipment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  min-height: 2rem;
}

.equipment-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid #e5e7eb;
  min-height: 70px;
}

.equipment-price {
  font-size: 1.875rem;
  font-weight: 900;
  color: #dc2626;
  align-self: flex-end;
  line-height: 1;
}

.equipment-price-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  align-self: flex-end;
}

.equipment-price-sale {
  font-size: 1.875rem;
  font-weight: 900;
  color: #dc2626;
  animation: pulse 2s infinite;
  line-height: 1;
}

.equipment-price-original {
  font-size: 1rem;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: line-through;
  opacity: 0.6;
  filter: blur(0.5px);
  line-height: 1;
}

.equipment-cta {
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.equipment-cta:hover {
  background-color: #b91c1c;
}

.equipment-cta:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.equipment-cta:disabled:hover {
  background-color: #9ca3af;
}

/* Contact Footer */
.contact-footer {
  background-color: #111827;
  color: white;
  padding: 4rem 0;
  margin-top: 4rem;
}

.footer-title {
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.info-card {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
}

.info-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #e5e7eb;
  line-height: 1.8;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }

  .btn {
    width: auto;
  }

  .motorcycles-buttons {
    flex-direction: row;
  }

  .bikes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }

  .hero-subtitle {
    font-size: 1.875rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-name {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 4.5rem;
  }

  .section-subtitle {
    font-size: 1.875rem;
  }

  .motorcycles-subtitle {
    font-size: 1.5rem;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .review-card {
    width: 400px;
  }

  .stat-number {
    font-size: 3rem;
  }

  .bikes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-title {
    font-size: 9rem;
  }

  .bikes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==================== MOBILE RESPONSIVE HOMEPAGE STYLES ==================== */

/* Equipment Carousel - Mobile First */
.equipment-carousel {
  position: relative;
  width: 100%;
  max-width: 80rem;
  height: 250px;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .equipment-carousel {
    height: 350px;
    border-radius: 1.25rem;
    margin: 0 auto 2.5rem;
  }
}

@media (min-width: 768px) {
  .equipment-carousel {
    height: 450px;
    border-radius: 1.5rem;
    margin: 0 auto 3rem;
  }
}

@media (min-width: 1024px) {
  .equipment-carousel {
    height: 500px;
  }
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Zoom out carousel images on mobile devices */
@media (max-width: 767px) {
  .carousel-slide img {
    object-fit: contain;
    background-color: rgba(0, 0, 0, 0.3);
  }
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
}

/* Carousel Indicators - Mobile Responsive */
.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

@media (min-width: 640px) {
  .carousel-indicators {
    bottom: 1.25rem;
    gap: 0.625rem;
  }
}

@media (min-width: 768px) {
  .carousel-indicators {
    bottom: 1.5rem;
    gap: 0.75rem;
  }
}

.carousel-indicator {
  height: 0.375rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
}

@media (min-width: 768px) {
  .carousel-indicator {
    height: 0.5rem;
  }
}

.carousel-indicator:not(.active) {
  width: 0.375rem;
}

@media (min-width: 768px) {
  .carousel-indicator:not(.active) {
    width: 0.5rem;
  }
}

.carousel-indicator.active {
  width: 2rem;
  background: #dc2626;
}

@media (min-width: 640px) {
  .carousel-indicator.active {
    width: 2.5rem;
  }
}

@media (min-width: 768px) {
  .carousel-indicator.active {
    width: 3rem;
  }
}

.carousel-indicator:not(.active):hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Hero Subtitle - Mobile Responsive */
@media (max-width: 639px) {
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 1rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    padding: 0;
  }
}

/* Stats Grid - Mobile First Responsive */
@media (max-width: 639px) {
  .stats-grid {
    padding: 0 1rem;
    margin: 2rem auto;
  }

  .stat-card {
    padding: 1.25rem;
    border-radius: 1rem;
  }

  .stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 0 1.5rem;
    margin: 2.5rem auto;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
  }

  .stat-label {
    font-size: 0.9375rem;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    gap: 1.5rem;
    padding: 0 2rem;
    margin: 3rem auto;
  }

  .stat-card {
    padding: 2rem;
    border-radius: 1.25rem;
  }

  .stat-number {
    margin-bottom: 0.75rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    gap: 2rem;
    padding: 0;
  }
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

/* Brand Logos Container */
.brand-logos-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto 1.5rem;
  padding: 1.5rem 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.brand-logos-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: scroll-brands 20s linear infinite;
  will-change: transform;
}

@keyframes scroll-brands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brand-logos-container:hover .brand-logos-track {
  animation-play-state: paused;
}

.brand-logo-box {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: default;
}

.brand-logo-box:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.brand-logo-box img {
  display: block;
}

/* Recommended Products Scrolling */
.recommended-scroll-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.recommended-scroll-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-recommended 30s linear infinite;
  will-change: transform;
}

@keyframes scroll-recommended {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.recommended-scroll-container:hover .recommended-scroll-track {
  animation-play-state: paused;
}

.recommended-scroll-track .bike-card,
.recommended-scroll-track .equipment-card {
  flex-shrink: 0;
  width: 320px;
  height: 480px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .recommended-scroll-track .bike-card,
  .recommended-scroll-track .equipment-card {
    width: 280px;
    height: 450px;
  }

  .review-card {
    width: 280px;
    padding: 1.5rem;
  }

  .review-text {
    font-size: 0.9375rem;
  }
}

/* ==================== ADMIN PAGE STYLES ==================== */
.admin-page {
  background: linear-gradient(
    135deg,
    #000 0%,
    #1a1a1a 50%,
    #000 100%
  );
  min-height: 100vh;
  padding-top: 0;
}

/* Login Screen */
.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.login-card {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(30, 30, 30, 0.8) 100%
  );
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 1rem;
  max-width: 28rem;
  width: 100%;
  padding: 2rem;
  backdrop-filter: blur(16px);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.shield-icon {
  margin: 0 auto 1rem;
  color: #dc2626;
}

.login-header h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: #9ca3af;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc2626;
  background-color: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background-color: #1a1a1a;
  color: #dc2626;
  padding: 0.5rem;
  font-weight: 600;
}

.modal-form select option {
  background-color: #1a1a1a !important;
  color: #dc2626 !important;
  padding: 0.5rem;
  font-weight: 600;
}

select option {
  background-color: #1a1a1a;
  color: #dc2626;
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.btn-login {
  padding: 1rem;
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
}

/* Admin Dashboard */
.admin-dashboard {
  min-height: 100vh;
}

.admin-header {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 2px solid rgba(239, 68, 68, 0.3);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.admin-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-header h1 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
}

.btn-logout {
  padding: 0.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-logout:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #dc2626;
}

/* Admin Content */
.admin-content {
  padding: 2rem 0;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stats-row .stat-card {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.9) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.stats-row .stat-card:hover {
  border-color: #dc2626;
  transform: translateY(-4px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-bike {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.stat-icon-equipment {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.stat-icon-brands {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.stat-icon-trending {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.stat-icon svg {
  color: white;
}

.stat-info h3 {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat-number {
  color: white;
  font-size: 2rem;
  font-weight: 900;
}

/* Action Buttons */
.action-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.action-btn {
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 0.9) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.action-btn:hover {
  transform: translateY(-4px);
}

.action-btn-bike:hover {
  border-color: #dc2626;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.action-btn-equipment:hover {
  border-color: #2563eb;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.action-btn-view:hover {
  border-color: #16a34a;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.action-btn-brand:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.action-btn-category:hover {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 1rem;
  max-width: 64rem;
  margin: 2rem auto;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.modal-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  padding: 1.5rem;
  border-bottom: 2px solid rgba(239, 68, 68, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.modal-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.modal-title-wrapper svg {
  color: #dc2626;
}

.modal-title-wrapper h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
}

.modal-close:hover {
  color: white;
}

/* Modal Form */
.modal-form {
  padding: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

/* Checkbox Styling */
.form-group label input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
  accent-color: #dc2626;
  margin-left: 0;
  margin-right: 8px;
}

.form-group label:has(input[type="checkbox"]) {
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  user-select: none;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  margin-bottom: 0;
}

.form-group label:has(input[type="checkbox"]):hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* File Upload */
.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #dc2626;
  border: 2px solid #b91c1c;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.file-upload-label:hover {
  background-color: #b91c1c;
}

.file-input {
  display: none;
}

.help-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

/* Image Previews */
.image-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.image-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.image-preview-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  background-color: #dc2626;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  padding: 0;
}

.image-preview:hover .image-preview-remove {
  opacity: 1;
}

.image-preview-remove:hover {
  background-color: #b91c1c;
}

.image-preview-number {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-submit {
  flex: 1;
  padding: 1rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-cancel {
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Success/Error Messages */
.message {
  position: fixed;
  top: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background-color: #16a34a;
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  animation: slideIn 0.3s ease;
}

.message.error {
  background-color: #dc2626;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Admin Responsive Design */
@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .action-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .action-buttons {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==================== RECOMMENDED SECTION ==================== */
.recommended-section {
  position: relative;
  padding: 5rem 0;
  background-color: #000;
  overflow: hidden;
}

.recommended-background {
  position: absolute;
  inset: 0;
}

.recommended-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.recommended-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #000,
    rgba(0, 0, 0, 0.9),
    #000
  );
}

.recommended-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.empty-state-text {
  text-align: center;
  padding: 3rem 1rem;
  color: #9ca3af;
  font-size: 1.125rem;
}

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  z-index: 10;
}

.carousel-grid {
  position: relative;
  z-index: 10;
}

/* Carousel Controls */
.carousel-controls {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(220, 38, 38, 0.9);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(239, 68, 68, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background-color: #b91c1c;
  border-color: #f87171;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  transform: scale(1);
  background-color: rgba(220, 38, 38, 0.9);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
  background-color: #dc2626;
  width: 32px;
  border-radius: 6px;
}

/* ==================== EQUIPMENT PAGE STYLES ==================== */
.equipment-page {
  background-color: #f9fafb;
}

.equipment-card {
  position: relative;
}

.out-of-stock-badge {
  position: absolute;
  top: 4rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fca5a5;
  border: 2px solid #ef4444;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.bike-cta:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.bike-cta:disabled:hover {
  background-color: #9ca3af;
}

/* ==================== DETAIL PAGE STYLES ==================== */
.detail-page {
  background-color: #f9fafb;
  padding-top: 70px;
}

.equipment-detail-page {
  background-color: #f9fafb;
}

/* Error State */
.error-state {
  text-align: center;
  padding: 4rem 1rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 1.5rem;
  color: #dc2626;
}

.error-state h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
}

.error-state p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Detail Content */
.detail-content {
  padding-bottom: 4rem;
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  margin: 2rem 0;
  background-color: white;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #111827;
  font-weight: 600;
  transition: all 0.2s ease;
}

.back-btn:hover {
  border-color: #dc2626;
  background-color: #fef2f2;
}

/* Detail Section */
.detail-section {
  background-color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Gallery Section */
.gallery-section {
  position: relative;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #f3f4f6;
  margin-bottom: 1rem;
}

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

.out-of-stock-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.out-of-stock-overlay span {
  padding: 1rem 2rem;
  background-color: #dc2626;
  color: white;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
}

.thumbnail {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s ease;
}

.thumbnail:hover {
  border-color: #d1d5db;
}

.thumbnail.active {
  border-color: #dc2626;
}

/* Info Section */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-badge {
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: white;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.brand-name-detail {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 600;
}

.detail-title {
  font-size: 2rem;
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
}

/* Price Section */
.price-section {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #fef2f2;
  border: 2px solid #fca5a5;
  border-radius: 0.75rem;
}

.price-label {
  font-size: 1.125rem;
  color: #6b7280;
  font-weight: 600;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #dc2626;
}

.price-container-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.price-sale-detail {
  font-size: 2.5rem;
  font-weight: 900;
  color: #dc2626;
  animation: pulse 2s infinite;
}

.price-original-detail {
  font-size: 1.5rem;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: line-through;
  opacity: 0.7;
  filter: blur(0.5px);
}

.sale-badge-detail {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 6px rgba(220, 38, 38, 0.4);
  animation: bounce 1s infinite;
}

/* Quick Specs */
.quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.quick-spec-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.spec-icon {
  font-size: 1.5rem;
}

.spec-details {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

.spec-value {
  font-size: 1rem;
  color: #111827;
  font-weight: 600;
}

/* Description Section */
.description-section,
.features-section {
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 0.75rem;
}

.section-title-small {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111827;
}

.description-text {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #4b5563;
  line-height: 1.6;
}

.features-list li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Action Buttons Section */
.action-buttons-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

/* Like Section */
.like-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(239, 68, 68, 0.3);
  text-align: center;
}

.like-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.btn-like {
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  border-radius: 1rem;
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #dc2626;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-like:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #dc2626;
  transform: scale(1.05);
}

.btn-like.liked {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  border-color: #ef4444;
  color: #ffffff;
}

.btn-like.liked .heart-icon {
  fill: #ffffff;
  stroke: #ffffff;
}

.heart-icon {
  transition: all 0.3s ease;
  stroke: #ef4444;
}

.like-message {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #16a34a;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.like-message.show {
  opacity: 1;
}

/* Specs Section */
.specs-section {
  background-color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.section-title-main {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: #111827;
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}

.spec-item-label {
  font-weight: 600;
  color: #6b7280;
}

.spec-item-value {
  font-weight: 700;
  color: #111827;
  text-align: left;
}

/* Safety Section */
.safety-section {
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.safety-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: white;
  border: 2px solid #16a34a;
  border-radius: 0.75rem;
  gap: 1rem;
}

.safety-card svg {
  color: #16a34a;
}

.safety-card p {
  font-weight: 600;
  color: #111827;
}

/* Size Guide Section */
.size-guide-section {
  background-color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.size-guide-content {
  max-width: 48rem;
  margin: 0 auto;
}

.size-guide-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #eff6ff;
  border: 2px solid #3b82f6;
  border-radius: 0.75rem;
}

.size-guide-info svg {
  color: #3b82f6;
}

.size-guide-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.size-guide-info h3 span {
  color: #dc2626;
}

.size-guide-info p {
  color: #4b5563;
  line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
  background: linear-gradient(135deg, #111827 0%, #000000 100%);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.contact-cta-card {
  text-align: center;
  color: white;
}

.contact-cta-card h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.contact-cta-card > p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.branches-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.branch-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 0.75rem;
  backdrop-filter: blur(16px);
}

.branch-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 0.75rem;
}

.branch-card p {
  color: #e5e7eb;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.branch-card .hours {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Related Section */
.related-section {
  padding: 3rem 0;
  background-color: #f9fafb;
}

/* Responsive Design for Detail Page */
@media (max-width: 767px) {
  .like-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .like-question {
    font-size: 1rem;
  }

  .btn-like {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .heart-icon {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-title {
    font-size: 2.5rem;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(
      auto-fill,
      minmax(100px, 1fr)
    );
  }

  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branches-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .action-buttons-section {
    flex-direction: row;
  }

  .quick-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}