
/* TOP MENU */
.shop-top-menu{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  padding:15px;
  background:#ebeae6;
}

  /*=================*/
.shop-top-menu a{
  color:#001f3f;
  text-decoration:none;
  font-size:14px;
}
.shop-filter-right button:hover {
  background: yellowgreen;
}


/*==============FOR THE PRODUNT CARDS============*/
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  padding: 10px;
}

.product-card {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  background: #7c3131;
}
/*==============new add product with discription one ============*/
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 10px;
}

.product-card {
  border: 1px solid #ddd;
  padding: 5px;
  text-align: center;
}
/* Product Card */
.product-card {
    border: 1px solid #ddd;
    flex: 0 0 250px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}


.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 5px;
}

.product-page {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.product-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

  /*------policies pages--------*/
  .policy-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 25px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

.policy-container h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.policy-container h2 {
    font-size: 20px;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #111;
}

.policy-container p {
    font-size: 15px;
    margin-bottom: 15px;
}

.policy-container ul {
    padding-left: 22px;
}

.policy-container li {
    font-size: 15px;
    margin-bottom: 8px;
}

.policy-container hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.intro {
    font-size: 16px;
}

.last-updated {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-container {
        padding: 15px;
    }

    .policy-container h1 {
        font-size: 22px;
    }

    .policy-container h2 {
        font-size: 18px;
    }

    .policy-container p,
    .policy-container li {
        font-size: 14px;
    }
}
/*-------------for quote css------------*/
.quote-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.quote-container h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.intro {
    font-size: 16px;
    margin-bottom: 25px;
}

.quote-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group button {
    padding: 12px;
    background: #000;
    color: #fff;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.form-group button:hover {
    background: #333;
}

.success {
    margin-top: 20px;
    color: green;
    font-weight: bold;
}

.note {
    margin-top: 30px;
    font-size: 14px;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-group {
        width: 100%;
    }

    .quote-container h1 {
        font-size: 22px;
    }
}
/*--------- css for contact----------*/
.contact-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 25px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}

.contact-container h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.intro {
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-grid {
    display: flex;
    gap: 40px;
}

.contact-info {
    width: 40%;
}

.contact-info h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 10px;
}

.contact-form {
    width: 60%;
}

.contact-form h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form button {
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.contact-form button:hover {
    background: #333;
}

.success {
    margin-top: 15px;
    color: green;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .contact-container h1 {
        font-size: 22px;
    }
}
/*-------------home---------*/
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #222;
}

/* HERO */
.home-hero {
  padding: 80px 20px;
  text-align: center;
  background: #f2f2f2;
}

.home-hero h1 {
  font-size: 36px;
}

.home-hero p {
  font-size: 18px;
  margin: 15px 0;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #c00;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.btn-dark {
  background: #111;
}

/* TRUST */
.home-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 15px;
  padding: 30px;
  background: #111;
  color: #fff;
  text-align: center;
}

/* CATEGORIES */
.home-categories {
  padding: 50px 20px;
  text-align: center;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 20px;
  margin-top: 25px;
}

.cat-box {
  padding: 30px;
  background: #eee;
  font-weight: bold;
}

/* WHY */
.home-why {
  padding: 50px 20px;
  background: #f9f9f9;
}

.home-why ul {
  max-width: 600px;
  margin: auto;
}

/* STEPS */
.home-steps {
  padding: 50px 20px;
  text-align: center;
}

.steps span {
  display: block;
  margin: 10px 0;
  font-weight: bold;
}

/* CTA */
.home-cta {
  padding: 60px 20px;
  background: #c00;
  color: #fff;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .home-hero h1 {
    font-size: 26px;
  }
}
/* FOOTER */
.footer {
  background: #efe9e9;
  color: #000000;
  padding: 50px 20px 20px;
}

.footer-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-box h4 {
  margin-bottom: 12px;
  color: #26ac2a;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 45px;
}

.footer-brand h3 {
  margin: 0;
  color: #26ac2a;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
}

.footer-box ul li a:hover {
  color: #e0210c;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #090909;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}
/*=========================================
      shop-menu.php css codes
=========================================*/
/* Shop top horizontal menu */
.shop-top-menu {
  width: 100%;
  background: #d8d6d6;
  overflow: hidden;
  position: sticky;
  top: 0px; /* adjust if header height changes */
  z-index: 999;
}

/* Scroll container */
.shop-menu-scroll {
  display: flex;
  gap: 10px;
  padding: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
}

/* Hide scrollbar (clean look) */
.shop-menu-scroll::-webkit-scrollbar {
  display: none;
}
.shop-menu-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Links */
.shop-menu-scroll a {
  color: #fff;
  background: #fd2e2e;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Hover */
.shop-menu-scroll a:hover {
  background: #007bff;
  color: #fff;
}

/* Active page (optional manual class) */
.shop-menu-scroll a.active {
  background: #007bff;
}
/*=========HEADER===========*/
:root {
    --primary: #d32f2f;
    --accent: #ffd700;
    --white: #ffffff;
}

.pro-header {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Brand */
.brand { display: flex; align-items: center; text-decoration: none; color: white; gap: 8px; }
.brand img { height: 38px; }
.brand-text { font-weight: 800; font-size: 1.2rem; }
.gold { color: var(--accent); }

/* Search Box */
.search-wrapper { flex: 1; margin: 0 25px; max-width: 400px; }
.search-box { display: flex; background: #222; border-radius: 5px; padding: 2px 10px; border: 1px solid #444; }
.search-box input { background: none; border: none; color: white; padding: 8px; width: 100%; outline: none; }
.search-box button { background: none; border: none; color: var(--accent); cursor: pointer; }

/* Navigation */
.nav-links a { color: white; text-decoration: none; margin-right: 20px; font-weight: 500; font-size: 0.85rem; text-transform: uppercase; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

/* Socials */
.header-socials { display: flex; align-items: center; gap: 15px; }
.header-socials a { color: white; font-size: 1.1rem; transition: 0.3s; }
.header-socials a:hover { color: var(--accent); }

/* Mobile Controls */
.mobile-controls-left { display: none; }
.menu-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: white; }
.mobile-search-trigger { display: none; background: none; border: none; color: white; font-size: 1.1rem; cursor: pointer; }

/* LEFT SIDE DRAWER */
.mobile-drawer {
    position: fixed; top: 0; left: -280px; width: 260px; height: 100%;
    background: #fff; color: #333; z-index: 1001; transition: 0.4s ease;
    display: flex; flex-direction: column; box-shadow: 5px 0 15px rgba(0,0,0,0.5);
}
.mobile-drawer.active { left: 0; }
.drawer-header { padding: 20px; background: var(--primary); color: white; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; letter-spacing: 1px; }
.drawer-links a { padding: 18px 25px; text-decoration: none; color: #333; border-bottom: 1px solid #f0f0f0; display: flex; gap: 15px; font-weight: 600; }
.drawer-links a i { color: var(--accent); }

.overlay { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.7); visibility: hidden; opacity: 0; transition: 0.3s; z-index: 1000; }
.overlay.active { visibility: visible; opacity: 1; }

@media (max-width: 992px) {
    .nav-links, .header-socials a:not(.mobile-search-trigger) { display: none; }
    .mobile-controls-left, .mobile-search-trigger { display: block; }
    .search-wrapper { display: none; }
    .search-wrapper.mobile-visible {
        display: block; position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--primary); padding: 12px; margin: 0; border-bottom: 1px solid var(--accent);
    }
}
/* Sticky Sidebar Styles */
.social-sticky-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.social-sticky-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: 0.3s;
    margin-bottom: 2px;
}

/* Brand Colors */
.icon-facebook { background: #1877F2; }
.icon-instagram { background: #E4405F; }
.icon-tiktok { background: #000000; }
.icon-whatsapp { background: #25D366; }

/* Hover Effect */
.social-sticky-bar a:hover {
    width: 65px; /* Expands slightly on hover */
    padding-right: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-sticky-bar {
        top: auto;
        bottom: 10px;
        right: 10px;
        flex-direction: row;
        gap: 10px;
        transform: none;
    }
    .social-sticky-bar a {
        border-radius: 50%; /* Circle icons on mobile */
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    .social-sticky-bar a:hover {
        width: 45px;
        padding-right: 0;
    }
}
/*===========home page=======*/
:root{
    --red:#e63946;
    --dark:#111;
    --gray:#333;
    --white:#fff;
    --muted:#b5b5b5;
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:#fafafa;
    color:var(--gray);
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-space{
    margin:80px auto;
}

/* Buttons */
.btn{
    padding:12px 26px;
    font-weight:bold;
    border-radius:4px;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
}

.btn-red{background:var(--red);color:#fff}
.btn-dark{background:var(--dark);color:#fff}
.btn-outline{
    border:2px solid var(--red);
    color:var(--red);
    width:100%;
    text-align:center;
}

.btn-outline-light{
    border:2px solid #fff;
    color:#fff;
}

.btn:hover{opacity:.9}

/* ================= SLIDER ================= */
.hero-slider{
    position:relative;
    height:75vh;
    min-height:420px;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    opacity:0;
    transition:.8s;
}

.slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.slide.active{opacity:1;z-index:1}

.slide-content{
    position:relative;
    max-width:650px;
    padding:0 40px;
}

.hero-tag{
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--muted);
    display:block;
    margin-bottom:10px;
}

.slide h1{
    color:#fff;
    font-size:3rem;
    margin:0 0 10px;
}

.slide p{
    color:#ddd;
    font-size:1.1rem;
}

.hero-actions{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,.6);
    color:#fff;
    border:none;
    padding:15px;
    cursor:pointer;
}

.prev{left:15px}
.next{right:15px}

/* ================= SEARCH ================= */
.search-wrap{
    margin-top:-40px;
    position:relative;
    z-index:10;
}

.search-form{
    background:#fff;
    padding:30px;
    border-radius:8px;
    display:flex;
    gap:20px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.search-field{
    flex:1;
}

.search-field label{
    font-size:.85rem;
    font-weight:600;
}

.search-field select{
    width:100%;
    padding:12px;
    margin-top:6px;
}

/* ================= PRODUCTS ================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

/* Slider */
.product-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 10px;
}

/* Hide scrollbar */
.product-slider::-webkit-scrollbar {
    display: none;
}


.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4d4d;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 8px;
    text-transform: uppercase;
}

.product-body {
    padding: 15px;
}

.p-brand { font-size: 0.85rem; color: #777; }
.product-body h3 { font-size: 1rem; margin: 5px 0 10px; color: #222; }
.p-price { font-size: 1rem; font-weight: 600; color: #ff4d4d; margin-bottom: 8px; }
.p-details { font-size: 0.85rem; color: #555; line-height: 1.4; margin-bottom: 10px; }

.btn-outline {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}
.btn-outline:hover {
    background: #ff4d4d;
    color: #fff;
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
}
.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }

/* Mobile */
@media (max-width: 768px) {
    .product-card { flex: 0 0 200px; }
    .product-img { height: 150px; }
}

@media (max-width: 480px) {
    .product-card { flex: 0 0 160px; }
    .product-img { height: 120px; }
}


/* ================= WHATSAPP ================= */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    z-index:100;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
    .product-grid{grid-template-columns:repeat(2,1fr)}
    .search-form{flex-direction:column}
    .slide h1{font-size:2rem}
    .hero-actions{flex-direction:column}
}

@media(max-width:480px){
    .product-grid{grid-template-columns:1fr}
}

/*======End of home page and from here start home (h2) highlighted =====*/
.section-title-container {
    text-align: center;
    margin: 50px 0 50px 0;
}

/* Modern H2 shimmer effect */
.modern-h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #222;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s ease;
    cursor: pointer;
    background: linear-gradient(
        90deg,
        #222 0%,
        #ff4d4d 20%,
        #ff9900 40%,
        #222 60%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}

/* Hover: shimmer/light passes */
.modern-h2:hover {
    animation: shine 1.5s linear infinite;
}

/* Keyframes for light/shimmer */
@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive font */
@media (max-width: 768px) {
    .modern-h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .modern-h2 {
        font-size: 1.8rem;
    }
}
/* ================= PRODUCT SINGLE After add to cart================= */

.product-single {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* LEFT: GALLERY */
.product-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-gallery img {
    width: 60%;
    height: 60%;
    border-radius: 10px;
    object-fit: cover;
}

/* RIGHT: INFO */
.product-info {
    flex: 1;
}

.product-info h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.product-info p {
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-info h2 {
    color: #c00;
    margin: 16px 0;
}

/* ADD TO CART */
.add-to-cart-form input[type="number"] {
    width: 80px;
    padding: 6px;
    margin-left: 10px;
}

.add-to-cart-form .btn {
    margin-top: 12px;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

    .product-single {
        flex-direction: column;
        margin-top: 20px;
    }

    .product-gallery {
        flex-direction: row;
        overflow-x: auto;
    }

    .product-gallery img {
        min-width: 45%;
        scroll-snap-align: center;
    }

    .product-info h1 {
        font-size: 22px;
    }

    .product-info h2 {
        font-size: 20px;
    }
}
/* =============================== */
/* FORCE LOGO & NAME TO STAY VISIBLE */
/* =============================== */

.pro-header,
.header-container {
    overflow: visible !important;
}

.header-container > * {
    flex-shrink: 0;
}

/* =============================== */
/* SEARCH – ISOLATED & SAFE        */
/* =============================== */

.header-search {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;   /* move search to right only */
}

/* input */
.header-search .search-input {
    width: 220px;
    padding: 7px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* button */
.header-search .search-btn {
    padding: 7px 12px;
    background: #c00000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* =============================== */
/* MOBILE – SEARCH GOES BELOW      */
/* =============================== */
@media (max-width: 768px) {

    .header-container {
        flex-wrap: wrap;
    }

    .header-search {
        width: 100%;
        margin: 10px 0 0 0;
        order: 100; /* search LAST, logo stays first */
    }

    .header-search .search-input {
        width: 100%;
        flex: 1;
    }
}
/*==============for search smll css=============*/
.highlight {
    background-color: var(--accent); /* your gold color */
    color: #000;
    padding: 2px 4px;
    border-radius: 3px;
}
/* ===== MOBILE FIX FOR SHOP PRODUCT GRID ===== */
@media (max-width: 768px) {

    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 products */
        gap: 1px;
    }

    .product-grid .product-card {
        flex: none !important;   /* KILLS slider width */
        width: 100% !important;
        max-width: 100%;
        padding: 1px;
    }

    .product-grid .product-card img {
        height: auto; /* responsive image */
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.product-card h3 {
    font-weight: 400;        /* not bold */
    margin-top: 1px;        /* space from image */
    margin-bottom: 6px;
    font-size: 15px;         /* optional, clean look */
}
/* ===== PRODUCT TEXT CLEANUP ===== */
.product-card h3,
.product-card p {
    margin: 2px 0;          /* reduce vertical spacing */
    font-size: 14px;        /* same font size */
    font-weight: 400;       /* normal text */
    line-height: 1.3;
}

/* Price only bold */
.product-card .price {
    font-weight: 700;       /* bold only price */
    margin-top: 6px;
    font-size: 14px;
}
.product-card p {
    color: #555;
}
/* ============================= */
/* PRODUCT IMAGE SWIPE (MOBILE) */
/* ============================= */

.product-images {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    scroll-snap-type: x mandatory;
}

.product-images img {
    flex: 0 0 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    scroll-snap-align: start;
}

/* hide scrollbar */
.product-images::-webkit-scrollbar {
    display: none;
}
/* Hero Section Container */
.hero-container {
    padding: 100px 20px;
    background-color: #1a1a1a; /* Dark industrial background */
    color: #ffffff;
    text-align: center;
}

/* The Browse Button */
.cta-button {
    display: inline-block;
    background-color: #d9534f; /* Robust Red - stands out for auto parts */
    color: white;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    border-color: #d9534f;
    color: #d9534f;
    transform: translateY(-3px); /* Subtle lift effect */
}

