
/* gift cards */
.cards-part1{
  margin: 0 100px;
}
.card-img1{
  margin: 10px 0;
}
.cards-part1 img{
  width: 1050px;
  margin: 8px 0;
}
.btn-cards{
  display: grid;
  grid-template-columns: repeat(3,336px);
  gap: 20px;
}
.btn1-cards,
.btn2-cards,
.btn3-cards{
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  border: 1px solid #555;
  background-color: white;
}
.btn1-cards:hover,
.btn2-cards:hover,
.btn3-cards:hover{
  color: white;
  background-color: #282a2e;
}
.gift-cards-section {
    /* direction: rtl; */
    margin: 50px 0;
    background-color: #fff;
    font-family: Arial, sans-serif;
}
.section-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
}
.section-header h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}
.section-header a {
    color: #007185;
    text-decoration: none;
    font-size: 13px;
}
.cards-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* gap: 10px; */
}
.gift-cards-section .product-cardgi {
  width: 210px;
  height: 320px;
  background-color: #f7f7f7;
    flex: 0 0 160px;
    border: 1px solid #eeeeee;
    padding: 10px ;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}
.image-box {
    position: relative;
    background-color: #f7f7f7;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.image-box img {
  margin-top: 10px;
  height: 100px;
  width: 90%;
}
.quick-view {
    position: absolute;
    inset-inline-end: 50%;
    transform: translateX(-50%);
    background: rgb(255, 255, 255);
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    display: none; 
    margin-top: 90px;
}
.product-cardgi:hover .quick-view {
    display: block;
}
.card-info {
    text-align: right;
    margin-top: 30px;
}
.price {
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 5px;
}
.price .amount { font-size: 18px; }
.price .currency, .price .zeros { font-size: 10px; margin-top: 4px; }
.description {
    font-size: 13px;
    color: black;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    margin-bottom: 8px;
}
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}
.stars { color: #ffa41c; }
.count { color: black; }
.fit img{
  margin-top: 10px;
  width: 1280px;
}
.cardgi-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 80px; 
  padding: 20px;
  /* direction: rtl; */
}
.product-cardgi {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  font-family: sans-serif;
}
.product-cardgi:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.img-wrappergi {
  background-color: #f7f7f7;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-wrappergi img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.product-infogi {
  padding: 15px;
}
.productgi-title {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
  height: 45px; 
  overflow: hidden;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #ffa41c;
  margin-bottom: 10px;
}
.rating-count {
  color: #007185;
  margin-inline-start: 5px;
}
.rating-avg {
  color: #333;
  font-weight: bold;
}
.price-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.main-price {
  font-size: 24px;
  font-weight: bold;
}
.currency, .decimal {
  font-size: 12px;
  margin-top: 5px;
  padding: 0 2px;
}
.availability {
  font-size: 12px;
  color: #565959;
}


 .header-for-phone,.footer-mobile{
  display: none;
}

@media (max-width: 768px) {
  .header-for-phone, .footer-mobile {
    display: block;
  }
  .cards-gift .cards-part1{
    display: none;
  }
  .cards-gift .cards-container {
    width: 390px ;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cards-gift .cards-container .product-cardgi{
    width: 190px ;
  }
  .cards-gift .card-gi1 {
    display: none;
  }
  .cards-gift .cardgi-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}