*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* navbar start here  */

.navBar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
    background-color: #0f1111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

/* Mobile menu icon */
.mobile-menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* Logo box */
.navLogo {
    height: 60px;
    width: 200px;
    flex-shrink: 0;
}

.logo {
    background-image: url('images/logo-big-best.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50px;
    width: 100%;
    margin-top:-5px;
}

/* Border hover effect */
.border {
    border: 2px solid transparent;
    padding: 5px;
    border-radius: 2px;
}

.border:hover {
    border: 1.5px solid white;
}

/* Category dropdown */
.category_dropdown {
    height: 50px;
    width: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.category_label {
    font-size: 12px;
    color: #cccccc;
    margin-left: 10px;
}

.category_selector {
    background: transparent;
    color: white;
    border: none;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    outline: none;
}

.category_selector option {
    background-color: #0f1111;
    color: white;
}

/* Nav search */
.nav_search {
    height: 40px;
    width: 100%;
    max-width: 620px;
    display: flex;
    flex: 1;
    margin: 0 15px;
}

.nav_search:focus-within {
    border: 2px solid #FEBD69;
    border-radius: 20px;
}

#item_selector {
    background-color: #f3f3f3;
    width: 60px;
    border: none;
    text-align: center;
    border-radius: 20px 0px 0px 20px;
    font-size: 12px;
}

.search_input {
    flex-grow: 1;
    border: none;
    font-size: 1rem;
    padding-left: 10px;
    outline: none;
}

.search_icon_div {
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FEBD69;
    border: none;
    border-radius: 0px 20px 20px 0px;
    cursor: pointer;
}

#search_icon {
    color: black;
    font-size: 20px;
}

/* Account section */
.account_list {
    height: 50px;
    width: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.font_size1_nav {
    font-size: 12px;
    margin-left: 10px;
}

.font_size2_nav {
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
}

/* Return and order */
.return_order {
    height: 50px;
    width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

/* Cart */
.cart {
    height: 50px;
    width: 80px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#cart_icon {
    font-size: 30px;
    margin-left: 9px;
}

.cart_word {
    font-size: 14px;
    margin-top: 20px;
}

/* Mobile menu overlay */
.mobile_menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #0f1111;
    z-index: 999;
    padding: 20px;
}

.mobile_menu.active {
    display: block;
}

.mobile_menu_item {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: white;
    cursor: pointer;
}

.mobile_menu_item:hover {
    background-color: #333;
}

/* Sub navigation */
.sub_nav {
    height: 39px;
    width: 100%;
    color: #FFFFFF;
    background-color: #232F3E;
    display: flex;
    align-items: center;
    font-weight: 530;
    overflow-x: auto;
    white-space: nowrap;
}

.pannel_options {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.pannel_options > p {
    margin: 0 15px;
    padding: 7px 2px;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .nav_search {
        max-width: 400px;
    }
    
    .account_list,
    .return_order {
        width: 100px;
    }
    
    .font_size1_nav,
    .font_size2_nav {
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {
    .navBar {
        height: auto;
        min-height: 60px;
        flex-wrap: wrap;
        padding: 10px;
    }

    .mobile-menu-icon {
        display: block;
        order: 1;
    }

    .navLogo {
        order: 2;
        margin: 0 auto;
    }

    .cart {
        order: 3;
        width: 60px;
    }

    .nav_search {
        order: 4;
        width: 100%;
        margin: 10px 0;
        max-width: none;
    }

    /* Hide other elements on mobile */
    .category_dropdown,
    .account_list,
    .return_order {
        display: none;
    }

    .sub_nav {
        padding: 0 10px;
    }

    .pannel_options > p {
        margin: 0 10px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .navBar {
        padding: 5px;
    }

    .navLogo {
        width: 80px;
    }

    .logo {
        height: 40px;
    }

    .nav_search {
        height: 35px;
    }

    #item_selector {
        width: 50px;
        font-size: 11px;
    }

    .search_icon_div {
        width: 40px;
    }

    .cart {
        width: 50px;
    }

    #cart_icon {
        font-size: 24px;
        margin-left: 5px;
    }

    .cart_word {
        font-size: 12px;
    }

    .sub_nav {
        height: 35px;
    }

    .pannel_options > p {
        margin: 0 8px;
        font-size: 12px;
    }
}

/* sub nav ends here */

/* hero section start from here */

/* .hero-section{
    height: 260px;
    background-image: url("images/hero_image_current.jpg");
    background-size: cover;
} commented by amanAdee */
 .hero-carousel {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.carousel-images {
  display: flex;
  width: 100%; /* 3 images = 3x width */
  height: 100%;
  animation: slide 12s infinite;
}

.carousel-item {
  flex: 1 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Animation to slide images */
@keyframes slide {
  0% { transform: translateX(0); }
  25% { transform: translateX(0); }

  33% { transform: translateX(-100%); }
  58% { transform: translateX(-100%); }

  66% { transform: translateX(-200%); }
  91% { transform: translateX(-200%); }

  100% { transform: translateX(0); }
}

/* Responsive height adjustment (optional) */
@media (max-width: 768px) {
  .hero-carousel {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 140px;
  }
}

/* hero section start ends here */

 /* Shop card section start here */

.shop{
    background-color: #d2d6d6; 
    /* height: 1007px; */
    padding-bottom: 5px;
    

}
.shop-card-row {

    display: flex;
    justify-content: space-evenly;
}
.shop-card-row > div{

    height: 400px;
    /* width: 320px; */
    margin: 0 20px;
    /* border: 1px solid black; */
    background-color: white;
}


/* card 1 start from here */
.card1{

    display: flex;
    flex-direction: column;
    justify-content: space-evenly; 
    min-width: 310px !important;

}

.card1 h2{
    font-size: 21px;
    margin-left: 20px;
}
.item-pic-row-1{
    height: 130px;
    display: flex;
    justify-content: space-evenly;
}
.item1{
    width: 110px;
}
.item1 img{

    height: 100%;
    width: 100%;
    object-fit: cover;
}
.item2{
    width: 110px;
}

.item2 img{

    height: 100%;
    width: 100%;
    object-fit: cover;
}

.item-pic-row-2{
    height: 130px;
    display: flex;
    justify-content: space-evenly;
}
.item3{
    width: 110px;
}
.item3 img{

    height: 100%;
    width: 100%;
    object-fit: cover;
}
.item4{
    width: 110px;
}

.item4 img{

    height: 100%;
    width: 100%;
    object-fit: cover;
}

.font_size3_item{
    font-size: 12px;
}

.card1 p a{
    font-size: 13px;
    text-decoration: none;
    margin-left: 22px;  
    display: inline-block;
    margin-top: 20px; 
}

.card2{
   
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-width: 310px !important;
}
.gaming_pc{
    height: 288px;
    width: 86%;
}

.gaming_pc img{
    margin-left: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card2 p a{
    margin-left: 20px;
    font-size: 13px;
    text-decoration: none;
}

.card2 h2{
    margin-left: 20px;
    font-size: 21px;
}

/* card1 ends here */

/* Card 2 start from here  */
.card3 h2{
    font-size: 21px;
    margin-left: 20px;
}
.card3{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-width: 310px !important;
    padding: 10px;
    margin-left: 10px;
}

.card3-row1{
    height: 115px;
    display: flex;
    justify-content: space-evenly;
}
.card3-row2{
    height: 115px;
    display: flex;
    justify-content: space-evenly;
    margin-top: 5px;
}

.card3-item3 img{
    height: 115px;
    object-fit: cover;
    width: 115px;
} 

.card3-item4 img{
    height: 115px;
    object-fit: cover;
    width: 115px;
} 
.card3 p a{

    text-decoration: none;
    font-size: 13px;
    margin-left: 20px;
    margin-top: 15px;
    display: inline-block;
}
/* card 3 ends here  */


/* CARD 4 START FROM HERE */
.card4{

    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-width: 310px !important;
}

.card4 h2{

    font-size: 21px;
    margin-left: 20px;
}

.card4 p a{

    font-size: 13px;
    text-decoration: none;
    margin-left: 20px;
}

.bag{
    width: 252px;
    height: 300px;
    margin-left: 20px;
}

.bag img{

    height: 100%;
    width:100%;
    object-fit: cover;
}
/* card 4 ends here  */

.shop-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  /* Optional: make scrollbar look clean */
.shop-carousel::-webkit-scrollbar {
    height: 8px;
  }
  
  .shop-carousel::-webkit-scrollbar-thumb {
    background: #504e4e;
    border-radius: 4px;
  }
  
  .shop-carousel::-webkit-scrollbar-track {
    background: #eee;
  }

/* Best seller options start from here */
.best-sellers-section {
    background: #FFFFFF;
    padding: 20px;
    overflow: hidden;
    margin: 20px;
  }
  
  .scroll-wrapper {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
  }
  
  .sell-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .sell-items div {
    min-width: 200px;
    margin-right: 30px;
  }
  
  .sell-items img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
  }
  
/* best seller option ends here */

/* Top picks for bangladesh section start from here */

.top-pick-bangladesh {
    background: #FFFFFF;
    padding: 20px;
    margin: 20px;
    overflow: hidden;
  }
  
  .scroll-wrapper2 {
    margin-top: 20px;
    overflow: hidden;
    width: 100%;
  }
  
  .top-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .top-items div {
    min-width: 200px;
    margin-right: 30px;
  }
  
  .top-items img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
  }
  
/* Top picks for bangladesh ends here */

/* Shop section ends here */


/* customer view part start from here */


.customer-view{
    background-color: white;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-content{
    width: 100%;
    /* height: 590px; */
    border: .1px solid rgba(0, 0, 0,.2);
    border-radius: 3px;
}

.customer-content h2{
    font-size: 18px;
    padding: 20px 20px;
    color: #0f1111;
}

.content-card {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Default: 6 columns for desktop */
    gap: 20px;
    padding: 20px;
  }
  
  /* Tablet view (3 columns) */
  @media screen and (max-width: 1024px) {
    .content-card {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Mobile view (2 columns) */
  @media screen and (max-width: 600px) {
    .content-card {
      grid-template-columns: repeat(2, 1fr);
    }
    .sign-in-button h2{
        font-size: 20px;
    }
  }
  
  .content-card > div {
    background: #fff;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }
  
.card-1 img,.card-2 img ,.card-3 img,.card-4 img,.card-5 img,.card-6 img{

    width: 100%;
    height: 165px;
    object-fit: contain;
}

.card-1 a ,.card-2 a,.card-3 a,.card-4 a,.card-5 a,.card-6 a{
    font-size: 14px;
    text-decoration: none;
    line-height: 2px;
}

.card-1 a:hover, .card-2 a:hover,.card-3 a:hover,.card-4 a:hover,.card-5 a:hover,.card-6 a:hover,.sign-in-button div a:hover{
    text-decoration: underline;
    color: #0f1111;
}

.star{
    letter-spacing: -4px;
    margin-left: 0px;
}

.rating-num{
    margin-left: 5px;
    font-size: 12px;
    display: inline;
}

.amazon-choice{
    background-color: #0f1111;
    display: inline-block;
    padding: 5px 7px;
    margin-top: 3px;
}
.amazon{
    font-size: 12px;
    font-weight: bold;
    color: white;
}
.choice{
    font-size: 12px;
    font-weight: bold;
    color: #FEBD69;
}
.usd{
    font-size: 17px;
    font-weight: bold;
    margin: 6px 0px;
}

.shipping{
    font-size: 12px;
    margin: 4px 0px;
}

.get-soon{
    font-size: 12px;
}

.get-soon span{
    font-weight: bold;
}

.discount-div{
    display: flex;
}
.discount{
    width: 55px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    background-color: #CC0C39;
    color: white;
    margin-top: 5px;
    border-radius: 2px;
}

.discount-text{
    font-size: 12px;
    margin-top: 8px;
    display: inline-block;
    margin-left: 10px;
    color: #CC0C39;
    font-weight: bold;
}
.usd-linethrough{
    margin: 5px 0px;
    font-size: 12px;
}
.usd-linethrough span{
    text-decoration: line-through;
}

.hr-customer-view{
    width: 96.8%;
    margin-left: 20px;
    border: none;
    border-top: 1px solid rgba(0, 0, 0,.2);
}

.sign-in-button{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sign-in-button h2{
    font-size: 24px;
    margin: 0;
    padding: 35px 0px 7px 0px;
    text-align: center;
}

@media screen and (max-width: 600px) {
    .sign-in-button h2{
        font-size: 20px;
    }
  }
.sign-in-button button{
    width: 157px;
    height: 30px;
    font-size: 12px;
    background-color: #FFD814;
    border: none;
    border-radius: 15px;
}
.sign-in-button div{
    font-size: 12px;
    padding: 4px;
}
.sign-in-button div a{
    margin-left: 3px;
}
/* customer view part ends here */

/* back to top section */
.back-to-top{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    color: white;
    background-color: #37475A;
}

.back-to-top p{
    font-size: 13px;
    font-weight: bold;
}
/* back to top section ends here */


/* Top footer section start from here  */
.top-footer-section{
    width: 100%;
    /* height: 400px; */
    background-color: #232F3E;
}
.footer-box {
    display: flex;
    flex-direction: column;
  }
  

.top-footer-box{
    padding: 30px 0px;
    /* height: 330px; */
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.top-footer-box div{
    /* height: 291px; */
    width: 20%;

}

.footer-box p{
  color: white;
  font-size: 16px;
  padding: 7px;
  font-weight: bold;
}

.footer-box a{
    text-decoration: none;
    display: block;
    color: #DDDDDD;
    font-size: 14px;
    padding: 7px;
}

.footer-box a:hover{
    text-decoration: underline;
}


/* Tablet view: show 2 boxes per row */
@media screen and (max-width: 992px) {
    .top-footer-box {
      flex-wrap: wrap;
      height: auto;
      padding: 20px;
    }
  
    .top-footer-box .footer-box {
      width: 45%;
      margin-bottom: 20px;
    }
  }
  
 
  

.hr-top-footer{
    border: none;
    border-top: 1px solid rgba(211, 211, 211, .2);
}

.bottom-logo-div{
    height: 68px;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-div{
    height: 70px;
    width: 90px;
    margin-right: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 13px;
}

.logo-div img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.language{
    height: 33px;
    width: 112px;
    border: 1.5px solid rgba(211, 211, 211, .2);
    background: transparent;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language i{
    color: #CCCCCC;
}

.language select{
    background: transparent;
    border: none;
    color: #CCCCCC;
    font-size: 13px;
}
.language select option{
    color: black;
}

.language select:focus{
    outline: none;
    box-shadow: none;
}

.us-dollar{
    width: 150px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    border: 1.5px solid rgba(211, 211, 211, .2);
    border-radius: 2px;
}
.us-dollar a{
    text-decoration: none;
    color: #CCCCCC;
}
.country{
    height: 33px;
    width: 140px;
    border: 1.5px solid rgba(211, 211, 211, .2);
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #CCCCCC;
}
.country i{
    color: white;
    margin-right: 7px;
}
.country , .language, .us-dollar{
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
}

/* bottom logo div ends here */

/* top footer section ends here */

/* footer section start from here  */
.footer{

    background-color: #131A22;
  
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer-container{

    width: 100%;
    height: 370px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:10px ;
}

.footer-box-bottom{
    margin-top: 30px;
    height: 300px;
    width: 120px;
    margin-left: 16px;
    margin-right: 16px;
}

.margin-top{
   margin-top: 30px; 
} 

.footer-box-bottom span{
    font-weight: bold;
    color: #DDDDDD;
}
.footer-box-bottom a{
    text-decoration: none;
    font-size: 12px;
    color: #999999;
    display: block;
}

.footer-box-bottom a:hover{
    text-decoration: underline;
}

/* copyright section start from here  */

.copyright{

    width: 100%;
    margin-top: 0;
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.info a{
    display: inline-block;
    font-size: 12px;
    color: #DDDDDD;
    text-decoration: none;
    margin: 0px 10px;
}

.info a:hover{
    text-decoration: underline;
}

.info{

    display: flex;
    justify-content: center;
    align-items: center;
}
.info span{
    width: 29px;
    height: 14px;
    font-size: 10px;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
}

#i1, #i2 {
  flex: 1; 
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: bold;
  padding: 0;
}

#i1 {
  background-color: white;
  color: #0066FF;
}

#i2 {
  background-color: #0066FF;
  color: white;
}

.copyright-text{
    text-align: center;
    font-size: 12px;
    color:#DDDDDD ;
    margin-top: 5px;

}
/* ------------------------------------ */
/* footer section ends here  */




.product-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
    /* border-radius: 12px; */
    padding: 30px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    display: grid;
    grid-template-columns: 120px 1fr 400px;
    gap: 30px;
}

/* Thumbnail Images */
.thumbnail-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #2563eb;
}

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

/* Main Product Image */
.main-image-container {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    /* background: #f8f9fa; */
    border-radius: 12px;
    padding: 20px;
}

.main-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* Product Details */
.product-details {
    padding-left: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.stock {
    color: #16a34a;
    font-weight: 600;
}

.item-number {
    color: #666;
    font-size: 14px;
}

.color-section {
    margin-bottom: 25px;
}

.section-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.color-options {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-option {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s;
    overflow: hidden;
}

.color-option.selected {
    border-color: #2563eb;
    border-width: 3px;
}

.color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-colors {
    color: #16a34a;
    font-weight: 600;
    text-decoration: none;
    margin-left: 10px;
}

.quantity-section {
    margin-bottom: 25px;
}

.quantity-input {
    width: 80px;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

.pricing {
    margin-bottom: 25px;
}

.mrp {
    color: #666;
    margin-bottom: 5px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 5px;
}

.price-gst {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.savings {
    color: #16a34a;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.btn {
    padding: 14px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    background: #3b82f6;
    color: white;
}

.btn-secondary:hover {
    background: #2563eb;
}

.seller-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.seller-name {
    color: #ea580c;
    font-weight: 600;
    margin-bottom: 5px;
}

.delivery-info {
    color: #666;
    font-size: 14px;
}

.info-section {
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
}

.info-label {
    font-weight: 600;
    color: #666;
    width: 100px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

   
            /* Horizontal scrolling thumbnails for mobile */
            .thumbnail-container {
                flex-direction: row;
                overflow-x: auto;
                overflow-y: hidden;
                gap: 10px;
                padding: 10px 0;
                margin-bottom: 20px;
                /* Hide scrollbar but keep functionality */
                scrollbar-width: none; /* Firefox */
                -ms-overflow-style: none; /* IE and Edge */
            }

            .thumbnail-container::-webkit-scrollbar {
                display: none; /* Chrome, Safari, Opera */
            }

            .thumbnail {
                flex-shrink: 0;
                width: 70px;
                height: 70px;
            }

    .product-details {
        padding-left: 0;
    }
}