body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  text-align: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 80px;
    background: #fff;
    border-bottom: 2px solid #77c1ff;
}

.logo {
  height: 60px;
}

.title {
    margin: 50px 20px 20px 20px;
    font-size: 30px;
    color: #2a85d0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1320px;
    margin: 0 auto;
}

.product-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  /* padding: 10px; */
  background: #fff;
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img {
  max-width: 100%;
  object-fit: contain;
}

.product-name {
    font-weight: 700;
    margin: 20px 0 10px 0;
    color: #ed0022;
    font-size: 20px;
}
.product-name.all_same_clr {  
    color: #0d43a9;   
}
.product-name .blueClr {
    color: #0d43a9;
}

.product-price {
    font-size: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
   
}
.product-price span {
    display: block;
}

.old-price {   
    color: #000;
    padding: 10px 0;
    background: #e7e4e4;
    border-radius: 0 0 0 10px;   
    position: relative;
}
.old-price .line_through {
    width: fit-content;
    position: relative;
    margin: 0 auto;
}
.old-price .line_through::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: red;
  transform: rotate(-15deg); /* Angle of the line */
  transform-origin: center;
}

.new-price {
    color: #ffffff;
    font-weight: bold;
    padding: 10px 0;
    background: #0e43a9;
    border-radius: 0 0 10px 0;
}


@media(max-width:767px){
    .logo {
    height: 40px;
}
.header {  
    padding: 10px 20px;  
}
.title {
    font-size: 24px;
}
}