*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
body{
    background-color: #1A1C20;
}
/* ================================================== */
/* the name of the store */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    background-color: #343434;
    color: #F0A500;
    box-shadow: 5px 5px 8px #FFB22C;
    border: 2px solid  #FFB22C; 
    height:70px;
    padding: 0 20px;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: 0;   
}
.name{
    font-size: 1.5rem;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;   
}
.navigation a{
    padding: 5px 10px;
    text-decoration: none;
    font-weight: 800;
    transition: color 0.3s;
    color: #F0A500;
    margin-right: -5px;
}
.navigation a:hover{
    color:white ; 
}

.split-btn-container {
    display: inline-flex;
    border: 2px solid #F0A500;
    border-radius: 6px;
    overflow: hidden;
    margin-left: 10px;
}

.split-btn-part {
    padding: 5px 12px;
    text-decoration: none;
    font-weight: bold;
    background-color: #343434;
    color: #F0A500;
    transition: background-color 0.3s, color 0.3s;
}

.split-btn-part.left {
    border-right: 3px solid #F0A500;
}

.split-btn-part:hover {
    background-color: #F0A500;
    color: #343434;
}
/* ========================================================== */
h1 {
  color: #F0A500;
  text-align: center;
  margin-top: 84px;
}

#cartItems p {
  padding: 10px;
  background: #343434; 
  margin: 10px 0;
  border: 1px solid #F0A500;
  border-radius: 5px;
  color: white;
}

button {
  background-color: #F0A500;
  color: #343434;
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #FFB22C;
  color: white;
}

#total {
  margin-top: 5px;
  text-align: center;
  color: #FFB22C;
}

/* products */

.product-card{
    display: flex;
    border-left: 2px solid #FFB22C ;
    transition: transform 0.3s ease;
    width: 99%;
    height: 400px;
    background-color: #343434;
    color: #F0A500;
    margin : 15px;
    border-radius: 10px;
    font-weight: bold;
}
.product-img{
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: space-around;
    border: 2px solid #FFB22C ;
    margin-left: 15px;
    margin-top: 10px;
    padding: 0px;
    border-radius: 12px;
}
.product-card:hover {
    transform: scale(1.02);  
}

ul li{
    display: flex;
    font-weight: 600;
    padding: 5px;
    margin: 10px;
}
 .details{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 13px;
    margin-left: 25px;
    
}
.product-info{

    color: #FFB22C;
    margin-top: 10px;
} 

.product-info h3{
    margin-top: 5px;
    font-weight: bold;
    
}

.price {
    margin-top: 4px;
  font-weight: bold;
}

.add-fav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 280px;
}
.fav {
    background: none;
    border: none;
    cursor: pointer;
}
.heart-icon {
    font-size:2rem;
    color: #F0A500;
    transition: color 0.3s ease;
}

.heart-icon.active {
    color: rgb(8, 248, 8);
}
.addtocart{
    display: flex;
    background-color: #1A1C20;
    color: #F0A500;
    text-align: center;
    align-items: center;
    padding: 10px 30px;
    font-weight: 800 ;
    border-radius: 15px;
    border-color: #FFB22C;
    transition: all 0.3s ease;
    margin-left: 8px;
    cursor: pointer;

}
.addtocart:hover{
    box-shadow: 0px 3px 5px goldenrod;
    color: white;
    background-color:goldenrod;

    
}

/* Go To Top  */
#Backtotop{
    background-color: #4a4a4a;
    color: white;
    border-radius: 50%;
    padding: 3px 20px;
    position: fixed;
    z-index: 100;
    border: none;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    font-size: 30px;
    display: none;
    box-shadow: 0 0 2px #FFB22C;
}
#Backtotop:hover{
    border:1px solid #FFB22C;
    color: #F0A500;
} 


