@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    background-color: #000000;
    background-size: cover;
    color: #fff;
}

main {
  display: flex;
  flex-direction: row;
  justify-content: center; /* horizontally center items */
  padding-top: 6rem;
  padding-bottom: 6rem;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    transition: font-weight 1s ease;
}

a:hover {
    font-weight: 1000;
    color: #FF0000;
}

 h1 {
    color: #fff;
 }

 p {
    color: #fff;
 }

/* start header */
#header {
    position: fixed;
    top:0; left:0; right:0;  
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    padding:1rem 9%;  
    display: flex;  
    align-items: center;  
    justify-content: space-between;  
    z-index: 1000; 
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.navbar .links a {
    color: #fff;
    display: flex;
    gap: 2rem;
}

.navbar .links a:hover {
    color: #FF0000;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn {
    color: #FF0000;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}
.action_btn {
    background-color: plum ;
    color: #FF0000;
    padding: 0.3rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
    font-size: 1.1rem;
}

.action_btn:hover {
    scale: 0.95;
}

.action_btn:active {
    scale: 0.95;
}
/* end header */



/* addtocartbtn */
.button2 {
  display: inline-block;
  margin-top: 1rem;
  padding: .8rem 3rem;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  color: #fff;
  background-color: rgb(15, 15, 15);
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.5s ease;
  width: 210px;
  letter-spacing: 1.5px;
}

.button2:hover {
  color: #fff;
  background-color: #FF0000;
  box-shadow: rgb#FF0000 0px 7px 29px 0px;
}

.button2:active {
  background-color: hsl#FF0000;
  color: #fff;
  box-shadow: pink 0px 0px 0px;
  transform: translateY(10px);
  transition: 100ms;
}
/* end addtocartbtn */



/* productcard */
.container {
  padding: 20px;
  display: flex; /* Use flexbox */
  flex-direction: row; /* Stack items vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
}

.card {
  display: flex; /* Use flexbox */
  flex-direction: row; /* Stack items vertically */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  height: 480px;
  transition: transform 0.3s ease-in-out;
  padding: 20px;
  margin: 20px;
}

.card:hover {
    transform: scale(1.03);
}

.card img {
  width: 210px;
  height: 210px;
  margin-bottom: 20px;
}

.card-content {
    padding: 20px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
  width: 210px;
}

.card-description {
  font-size: 0.8rem;
  color: #fff;
  margin-bottom: 20px;
  width: 210px;
}

.card-price {
  font-size: 1rem;
  font-weight: bold;
  color: rgb(139, 0, 0);
}
/* end productcard */


.sidebar {
  width: 350px;
  height: 600px;
  border-radius: 5px;
  background-color: #ffffff;
  margin-left: 20px;
  padding: 15px;
  text-align: center;
}

.container2 {
  display: flex;
  margin-bottom: 30px;
  margin: 40px;
}


.head {
  background-color: #FF0000;
  border-radius: 3px;
  height: 40px;
  padding: 10px;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}

.foot {
  display: flex;
  justify-content: space-between;
  margin: 20px 0px;
  padding: 10px 0px;
  border-top: 1px solid #FF0000;
  
}

footer {
    background: transparent;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 20px;
}