/* ---------------------------heading section----------------------------------- */

.bg-img {
    width: 130%;      
    right: 25%;    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow effect */
    transition: box-shadow 0.3s ease; /* Smooth transition for shadow changes */    
  }
  /* ---------------------------image section----------------------------------- */
  .img-thumbnail {
    width: 104px;
    height: 100px;
    border: none;
    transition: all 0.5s ease;
    margin: 15px; /* Adds spacing around the image */
    /* OR */
    padding: 10px; /* Adds inner spacing inside the border, if necessary */
}

  .img-thumbnail:hover{
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .img-thumbnail.active {
    border: 1px solid #A66F3E !important;
  }
  
  /* image zoom */
  
  .main-image img {
    transition: transform 0.3s ease;
  }
  
  /* ---------------------------weight section----------------------------------- */
  
  .dropdown-item:hover{
    background-color: #fce3bf;
    color:#8B572A;
  }
  
  .dropdown-toggle::after {
    display: none;
  }
  
  .dropdown-menu-end {
    left: 100% !important;
    top: 0 !important;
    transform: translateX(2px) !important;
  }
  /* ---------------------------product chekout section----------------------------------- */
  
  
  .form-check-input:checked {
    background-color: #a66f3e;
    border-color: #a66f3e;;
  }
  
  input[type="radio"]:checked + label {
    font-weight: 600;
  }
  .form-check-input {
    width: 25px; 
    height: 25px; 
  }
  /* ---------------------------quantity section----------------------------------- */
  
  .quantityucart{
    width: 18px;
    height: 16px;
  }
  .share {
    width: 35px;
    height: 34.13px;
    text-shadow: 0 0 1px black;
  }
  
  .quantity-selector input:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
  }
  
  .hoverbtn {
    transition: all 0.5s ease; /* Smooth transition effect */
  }
  
  .hoverbtn:hover {
    background-color: #8B572A; /* Background color on hover */
    border-color: transparent;
  }
  /* ---------------------------product detail section----------------------------------- */
  
  .nav-tabs .nav-link {
    border: 0 !important;
    opacity: 0.5;
  }
  
  .nav-tabs .nav-link.active {
    background-color: #a66f3e !important;
    color: #FFFFFF !important;
    font-weight: 600 !important;
    box-shadow: 2px 4px 20px 0px #00000040 !important;
    opacity: 1;
  }
  .tab-pane.active {
    opacity: 1 !important;
  }
  
  /* ---------------------------product section----------------------------------- */
  
  .text-shadow {
    text-shadow: 4px 4px 25px rgba(0, 0, 0, 0.35);
  }
  .product-card:hover{
    box-shadow: 4px 4px 25px rgba(0, 0, 0, 0.35);
    background-color: #fffbf2;
  }
  
  .dropdown-item:hover{
    background-color: #fffbf2;
  }
  
  .product-card{
    box-shadow: 2px 2px 5px 0px #00000040;
    transition: all 0.5s ease;
  }
  
  .cart-btn{
    width: 28px; 
    height: 28px;
  }
  
  /* ---------------------------copy alert section----------------------------------- */
  
  /* Show the alert when checkbox is checked */
  .copy-alert {
    transform: translateY(-50%);
    transition: opacity 0.3s, transform 0.3s;
    display: none;
  }
  .copy-btn:focus .copy-alert {
    transform: translateY(-50%) translateX(0px);
    display: flex;
  }
  
  /* ---------------------------alert image section----------------------------------- */
  /* alert buttons */
  .aler-img {
    transition: all 0.5s ease; /* Smooth transition effect */
  }
  
  .aler-img:hover {
   background-color: #8B572A;
   border-radius: 5px;
  }
  
  .aler-img{
    width: 53px;
    height: 53px;
  }
  
  
  /* ---------------------------all media card section----------------------------------- */
  
  @media (max-width: 992px) {
    .bg-img {
      height: 259px;     
    }
  
    .product{
      color: black !important;
    }
    .aler-img{
        width: 33px !important;
        height: 33px !important;
    }
  
    .img-thumbnail {
        width: 62px !important;
        height: 60px !important;
    }
    .share {
        width: 27.11px;
        height: 30.21px;
    }
  
    .quantityucart{
        width: 13.94px;
        height: 12.39px;  
  }
  
  .cart-btn{
    width: 14px; 
    height: 14px;
  }
  .card-body a{
    font-size: 10px;
  }
  .card-text{
    font-size: 8px;
  }
  
  .card-title{
    font-size: 10.13px;
  }
  }
  