  body {
      font-family: 'Inter', sans-serif;
  }

  /* Animation for Desktop Dropdowns */
  .dropdown-animate {
      transition: all 0.2s ease-in-out;
      transform: translateY(10px);
  }

  .group:hover .dropdown-animate {
      transform: translateY(0);
  }

  /* Mobile Sidebar Transition */
  #mobile-menu {
      transition: transform 0.3s ease-in-out;
  }

  .menu-open {
      transform: translateX(0) !important;
  }


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



  /* Swiper force reset for all devices */
    .mySwiper {
        height: auto !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Desktop par wapis purani height set karne ke liye */
    @media (min-width: 1024px) {
        .mySwiper img {
            height: 100% !important;
            object-fit: cover;
        }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .mySwiper img {
            height: 100% !important;
            object-fit: cover;
        }
    }

    /* Red pagination bullet */
    .swiper-pagination-bullet-active {
        background: #ED1C24 !important;
        opacity: 1;
    }





    .breadcum{ 
    background:#f2f2f2; 
    padding:60px 0; 
} 

.breadcum h1{ 
    font-size:38px; 
    font-weight:700; 
    margin-bottom:10px; 
    color:#111; } 
    
.breadcum .breadcrumb{ 
    font-size:15px;
    color:#666; 
} 

.breadcum .breadcrumb a{ 
    text-decoration:none; 
    color:#c40000; 
    font-weight:500; 
}

.delivery-conatct{
    padding:80px 0;
    background:#ffffff;
}

.delivery-wrapper{
    display:flex;
    gap:50px;
    align-items:stretch;
}

.delivery-left{
    flex:0 0 60%;
    /* padding-top:10%; */
}

.location-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:30px;
    color:#111;
}

.location-wrapper{
    display:flex;
    flex-direction:column;
    gap:25px;
    width:100%;
}

.location-box{
    width:100%;
    background:#fafafa;
    padding:25px;
    border-radius:8px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.location-box h3{
    color:#c40000;
    font-size:18px;
    margin-bottom:15px;
}

.location-box p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin-bottom:8px;
}

.delivery-right{
    flex:0 0 40%;
    display:flex;
    align-items:center;
}

.form-box{
    width:100%;
    background:#fafafa;
    padding:35px;
    border-radius:8px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.form-box h2{
    font-size:22px;
    margin-bottom:25px;
    font-weight:600;
}

.form-group{
    margin-bottom:15px;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:14px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#ed1c24;
}

.form-group textarea{
    resize:none;
    height:100px;
}

.submit-btn{
    width:100%;
    padding:14px;
    border:none;
    background:#ed1c24;
    color:#fff;
    font-size:15px;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.submit-btn:hover{
    background:#000000;
}

@media(max-width:992px){

    .delivery-wrapper{
        flex-direction:column;
    }

    .delivery-left,
    .delivery-right{
        flex:100%;
    }

    .delivery-right{
        align-items:flex-start;
        margin-top:40px;
    }
}

@media(max-width:576px){

    .location-title{
        font-size:22px;
    }

    .delivery-left{
        padding-top:0;
    }
}