    
  .add-to-cart-btn {
    font-size: 2rem;              
    display: inline-block;       
    width: 3.5rem;               
    height: 3.5rem;
    border-radius: 50%;          
    background-color:  #47170D; 
    color:  #ff6b00; 
    font-weight: 300;            
    flex-shrink: 0;
    text-align: center;
    line-height: 3.5rem;          
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
    border: none;
  }
  
  .add-to-cart-btn:hover {
    background-color: #47170D;
  }
  
  .add-to-cart-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #47170D; 
  }


  .ship-to-address-btn{
    width: 100%;
  padding: 14px;
  background-color: #5a2012;
  color: #ffb14a;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.06s ease;
  box-shadow: none;
  }

   
  .add-to-cart-btn.disabled {
    font-size: 2rem;              
    display: inline-block;       
    width: 3.5rem;               
    height: 3.5rem;
    border-radius: 50%;          
    background-color:  #47170D; 
    color:  #ff6b00; 
    font-weight: 300;            
    flex-shrink: 0;
    text-align: center;
    line-height: 3.5rem;          
    transition: background-color 0.2s ease-in-out;
    cursor: none;
    border: none;
  }


