/* Globally hide Top Bar on all pages */
.top-bar {
	display: none !important;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        /* Header styles */
        .top-bar {
            background-color: #f2f2f2;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .top-bar-left a {
            margin-right: 20px;
            text-decoration: none;
            color: #333;
            font-weight: 600;
        }
        
        .top-bar-right a {
            margin-left: 20px;
            text-decoration: none;
            color: #333;
        }
        
        .header-main {
            background-color: #fff;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .logo {
            display: flex;
            flex-direction: column;
        }
        .logo-image {
            height: 64px;
            width: auto;
            margin-bottom: 6px;
        }
        
        .logo-main {
            font-size: 28px;
            font-weight: bold;
            color: #d82c2c;
        }
        
        .logo-tagline {
            font-size: 14px;
            letter-spacing: 2px;
            color: #444;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin: 0 12px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 16px;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: #d82c2c;
        }
        .section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.section-header h2 {
  color: #0d1c52;
  font-size: 22px;
}

.section-header .view-all {
  background: #e53935;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

/* --- Carousel wrapper and nav arrows --- */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 20px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #2c3e50;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    z-index: 5;
    transition: background .2s ease, transform .15s ease;
}

.slider-nav:hover { background: #1f2e3c; transform: translateY(-50%) scale(1.06); }
.slider-nav:active { transform: translateY(-50%) scale(0.98); }
.slider-nav.prev { left: 8px; }
.slider-nav.next { right: 8px; }

@media (max-width: 640px) {
    .slider-nav { width: 38px; height: 38px; font-size: 22px; }
}

/* --- Slider container --- */


.slider-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none; 
  }
  .slider-container::-webkit-scrollbar { display: none; }
  .slider-container { position: relative; }
  
  .slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }
  
  .card {
    flex: 0 0 auto;   /* 🔑 prevents shrinking */
    width: 280px;     /* 🔑 ensures wider than container */
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
  }
  













.slider-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;              /* prevent vertical scrollbar */
    display: flex;
    scroll-snap-type: x mandatory;   /* enable snapping */
    -webkit-overflow-scrolling: touch; /* smooth on iOS */
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    cursor: auto;
  
    /* Hide scrollbar (Firefox + Chrome/Safari/Edge) */
    scrollbar-width: none; /* Firefox */
  }
  .slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
  }
  
  /* --- Slider track --- */
  .slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 10px 12px;
  }
  
  /* --- Card --- */
  .card {
    flex: 0 0 auto;                 /* don’t shrink */
    width: 280px;                   /* fixed card width */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    scroll-snap-align: start;       /* snap to start */
    padding: 15px;
    position: relative;             /* for free-shipping badge */
  }
  
  .card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* --- Free Shipping Badge --- */
  .card .free-shipping {
    position: absolute;
    background: #e53935;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    transform: rotate(-45deg);
    left: -20px;
    top: 10px;
  }
  
  /* --- Card Content --- */
  .card-content {
    padding: 10px 0;
    font-size: 14px;
  }
  
  .card-content h3 {
    font-size: 15px;
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .card-content p {
    margin: 3px 0;
    color: #444;
  }
  
  .card-content .price {
    color: green;
    font-weight: bold;
  }
  
  /* --- Card Actions (buttons, etc.) --- */
  .card-actions {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  
  .btn {
    padding: 6px 10px;
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .btn-blue {
    background: #0d1c52;
    color: #fff;
  }
  
  .btn-red {
    border: 1px solid #2c3e50; /* match slider arrow color */
    color: #fff;
    background: #2c3e50;
  }
  .btn-red:hover { background: #1f2e3c; border-color: #1f2e3c; color: #fff; }
  

/* Cart Modal */
.cart-modal[aria-hidden="true"] { display: none; }
.cart-modal[aria-hidden="false"] { display: block; }
.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.cart-modal__dialog {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: 60px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: translateY(10px);
  transition: transform .15s ease;
}
.cart-modal__dialog.open { transform: translateY(0); }
.cart-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  border: none;
  background: #f3f4f6;
  cursor: pointer;
  font-size: 20px;
}
.cart-modal__header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}
.cart-modal__status { display: flex; align-items: center; gap: 10px; }
.cart-modal__status-icon { color: #16a34a; font-weight: 700; }
.cart-modal__title { font-weight: 700; font-size: 18px; color: #0d1c52; }
.cart-modal__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 16px 20px;
}
.cart-modal__image img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; }
.cart-modal__grid { display: grid; gap: 8px; }
.cart-modal__row { display: grid; grid-template-columns: 180px 1fr; gap: 10px; align-items: start; }
.cart-modal__label { color: #6b7280; font-weight: 600; }
.cart-modal__value { color: #111827; }
.cart-modal__footer { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 20px; border-top: 1px solid #eee; }
.cart-modal__btn { padding: 10px 14px; border-radius: 6px; border: 1px solid #d1d5db; cursor: pointer; font-weight: 600; }
.cart-modal__btn--primary { background: #0d1c52; color: #fff; border-color: #0d1c52; }
.cart-modal__btn--ghost { background: #fff; color: #0d1c52; }

@media (max-width: 640px) {
  .cart-modal__body { grid-template-columns: 1fr; }
  .cart-modal__image img { height: 160px; }
  .cart-modal__row { grid-template-columns: 1fr; }
}



  
  
/* Makes Section */
.makes-section {
    padding: 10px 0;
    background: #f8f9fa;
}

.makes-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.makes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.make-item {
    background: #eef3f6;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 999px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    box-shadow: none;
}

.make-item:hover {
    background: #dbe7ee;
    color: #1c2a3a;
    transform: translateY(-1px);
}

/* Side-by-side layout for the two makes sections */
.makes-columns {
    display: grid;
    grid-template-columns: 1fr; /* stack vertically */
    gap: 0px; /* no space between stacked sections */
    max-width: 1200px; /* wider container */
    margin: 0 auto;
    padding: 0px 15px;
    align-items: start;
}

.makes-columns .makes-section {
    padding: 0;
    background: transparent;
}

/* Increase vertical space for makes sections */
.makes-columns .makes-section .container {
    min-height: 400px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smaller headings for compact cards */
.makes-columns .makes-section h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: #0d1c52;
}

/* Denser grid and full width inside side-by-side columns */
.makes-columns .makes-grid {
    grid-template-columns: repeat(4, 1fr); /* exactly four columns */
    gap: 12px; /* slightly tighter grid gap inside each section */
    max-width: none;
    margin: 0;
}

/* Smaller pill containers inside the side-by-side sections */
.makes-columns .make-item {
    padding: 6px 12px;
    font-size: 13px;
}

@media (max-width: 992px) {
  .makes-columns {
    grid-template-columns: 1fr;
  }
}

/* Responsive columns for makes grids when stacked/narrow */
@media (max-width: 1024px) {
  .makes-columns .makes-grid { grid-template-columns: repeat(3, 1fr); }
  .makes-columns .makes-section .container { min-height: 700px; }
}
@media (max-width: 768px) {
  .makes-columns .makes-grid { grid-template-columns: repeat(2, 1fr); }
  .makes-columns .makes-section .container { min-height: 600px; }
}
@media (max-width: 480px) {
  .makes-columns .makes-grid { grid-template-columns: 1fr; }
  .makes-columns .makes-section .container { min-height: 500px; }
  .makes-columns .make-item { padding: 8px 16px; font-size: 14px; }
}

/* Why Buy From Us Section */
.why-buy-section {
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

.why-buy-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-icon-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px auto;
    display: block;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.know-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.know-more:hover {
    text-decoration: underline;
}
/* Info Cards Section */
.info-cards-section {
    padding: 80px 0;
    background: white;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.info-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #3498db;
}

.info-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.info-card-header h3 {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.3rem;
}

.info-card-header i {
    color: #3498db;
    font-size: 1.5rem;
}

.info-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Product Categories Section */
.product-categories {
    background: #f8f9fa;
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.category-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 4rem;
    color: #3498db;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.5rem;
}

.category-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* FAQs Section */
.faqs-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faqs-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    background: #2c3e50;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #34495e;
}

.faq-question h4 {
    margin: 0;
    font-size: 18px;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-answer h5 {
    color: #2c3e50;
    margin: 20px 0 10px;
    font-size: 16px;
}

.faq-answer p {
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.6;
}

        
      
        /* Footer Styles */
        footer {
            background-color: #222;
            color: #fff;
            padding: 60px 0 20px;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-col h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #d82c2c;
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: #bbb;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #d82c2c;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul a:hover {
            color: #d82c2c;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 20px 15px 0;
            border-top: 1px solid #444;
            text-align: center;
            color: #bbb;
            font-size: 14px;
        }
        
        .payment-methods {
            margin-top: 20px;
        }
        
        .payment-methods i {
            font-size: 32px;
            margin: 0 5px;
            color: #fff;
        }
        
        /* Cart Page Styles */
        .cart-page {
            padding: 40px 0;
            background: #f8f9fa;
            min-height: 80vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .cart-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .cart-header h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .cart-header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        
        .cart-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .cart-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .cart-section h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .cart-table {
            width: 100%;
        }
        
        .cart-table-header {
            display: grid;
            grid-template-columns: 80px 1fr 2fr 100px 100px 120px 80px;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 2px solid #eee;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .cart-item {
            display: grid;
            grid-template-columns: 80px 1fr 2fr 100px 100px 120px 80px;
            gap: 15px;
            padding: 20px 0;
            border-bottom: 1px solid #eee;
            align-items: center;
        }
        
        .product-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .qty-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .qty-btn:hover {
            background: #f8f9fa;
        }
        
        .qty-value {
            min-width: 30px;
            text-align: center;
            font-weight: 600;
        }
        
        .remove-btn {
            background: #e74c3c;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .remove-btn:hover {
            background: #c0392b;
        }
        
        .cart-divider {
            height: 2px;
            background: #e74c3c;
            margin: 20px 0;
        }
        
        .cart-summary {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: fit-content;
        }
        
        .cart-summary h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding: 10px 0;
        }
        
        .summary-item.green {
            color: #27ae60;
        }
        
        .summary-value {
            font-weight: 600;
        }
        
        .summary-divider {
            height: 1px;
            background: #ddd;
            margin: 20px 0;
        }
        
        .summary-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
            padding: 15px 0;
            border-top: 2px solid #2c3e50;
        }
        
        .total-amount {
            color: #e74c3c;
        }
        
        .coupon-section {
            margin: 20px 0;
        }
        
        .coupon-input {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .coupon-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .apply-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .apply-btn:hover {
            background: #2980b9;
        }
        
        .coupon-link {
            color: #3498db;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .coupon-link:hover {
            text-decoration: underline;
        }
        
        .checkout-btn {
            width: 100%;
            background: #e74c3c;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            margin-top: 20px;
        }
        
        .checkout-btn:hover {
            background: #c0392b;
        }
        
        .customer-info-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .customer-info-section h2 {
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 1.5rem;
        }
        
        .customer-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group.full-width {
            grid-column: span 2;
        }
        
        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
        }
        
        .form-group input:invalid {
            border-color: #e74c3c;
        }
        
        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid #eee;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav li {
            border-bottom: 1px solid #eee;
        }

        .mobile-nav a {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .mobile-nav a:hover {
            background-color: #f8f9fa;
            color: #d82c2c;
        }

        /* Responsive Cart Styles */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
            }

            .header-container {
                position: relative;
            }

            .cart-header h1 {
                font-size: 1.8rem;
            }

            .cart-header p {
                font-size: 1rem;
            }

            .cart-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            /* Hide table headers on mobile */
            .cart-table-header {
                display: none;
            }
            
            /* Convert cart items to card layout */
            .cart-item {
                display: block;
                background: #f8f9fa;
                border-radius: 10px;
                padding: 20px;
                margin-bottom: 15px;
                border: 1px solid #e9ecef;
            }

            .col-product {
                text-align: center;
                margin-bottom: 15px;
            }

            .product-image {
                width: 120px;
                height: 120px;
                object-fit: cover;
                border-radius: 8px;
                margin: 0 auto;
            }

            .col-part-name {
                font-size: 1.2rem;
                font-weight: bold;
                color: #2c3e50;
                margin-bottom: 10px;
                text-align: center;
            }

            .col-description {
                color: #666;
                margin-bottom: 15px;
                text-align: center;
                line-height: 1.4;
            }

            .col-mileage {
                text-align: center;
                margin-bottom: 10px;
                font-weight: 600;
                color: #27ae60;
            }

            .col-price {
                text-align: center;
                font-size: 1.3rem;
                font-weight: bold;
                color: #e74c3c;
                margin-bottom: 15px;
            }

            .col-quantity {
                display: flex;
                justify-content: center;
                margin-bottom: 15px;
            }

            .quantity-controls {
                background: white;
                border-radius: 8px;
                padding: 5px;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }

            .qty-btn {
                width: 40px;
                height: 40px;
                font-size: 18px;
                font-weight: bold;
            }

            .qty-value {
                min-width: 50px;
                font-size: 16px;
            }

            .col-remove {
                text-align: center;
            }

            .remove-btn {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }

            .cart-section,
            .cart-summary,
            .customer-info-section {
                padding: 20px;
            }

            .summary-item {
                font-size: 0.95rem;
            }

            .summary-total {
                font-size: 1.1rem;
            }

            .checkout-btn {
                font-size: 1rem;
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .cart-header h1 {
                font-size: 1.5rem;
            }

            .cart-header p {
                font-size: 0.9rem;
            }

            .container {
                padding: 0 10px;
            }

            .cart-section,
            .cart-summary,
            .customer-info-section {
                padding: 15px;
            }

            .product-image {
                width: 100px;
                height: 100px;
            }

            .col-part-name {
                font-size: 1.1rem;
            }

            .col-price {
                font-size: 1.2rem;
            }

            .qty-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .qty-value {
                min-width: 40px;
                font-size: 14px;
            }

            .remove-btn {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 16px; /* Prevents zoom on iOS */
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
            
            .search-form {
                grid-template-columns: 1fr 1fr;
            }
            
            .search-button {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 768px) {
            .search-form {
                grid-template-columns: 1fr;
            }
            
            .search-button {
                grid-column: span 1;
            }
            
            .products-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .top-bar-container {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
