body {
    margin: 0;
    padding: 0;
}

.header {
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 4px solid black;
}

.logo {
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    font-size: 18px;
    color: black;
    text-decoration: none;
    font-weight: 500;
}

.header_img {
    display: flex;
    gap: 15px;
}

.header_img img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    cursor: pointer;
}

.cart-wrap {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.cart-badge {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-family: sans-serif;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
}

.main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
}

.product_card {
  width: 300px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
}

.product_image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product_content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product_title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #333333;
}

.product_description {
  font-size: 14px;
  color: #666666;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.product_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_price {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
}

.product_button {
  background-color: black;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.cript {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-family: sans-serif;
}

.trash {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    width: 260px;
    margin: 0;
    font-family: sans-serif;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 10px;
    overflow: hidden;
}

.trash_link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: black;
    text-decoration: none;
}

.trash img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.trash_title {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: black;
}

.trash_link:hover .trash_title {
    text-decoration: underline;
}

.w {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    padding-bottom: 80px;
}
