.deal-bar {
  position: fixed;
  bottom: 20px; /* Fixed at bottom */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  z-index: 99999;
}

.deal-inner {
  background: linear-gradient(135deg, #1E60AA, #9f92e8);
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  font-family: Arial, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.deal-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deal-title {
  font-size: 14px;
  font-weight: bold;
}

.deal-sub {
  font-size: 12px;
  opacity: 0.9;
}

.deal-btn {
  background: #000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
}

.deal-close {
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .deal-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    border-radius: 20px;
  }
}


/* CONTAINER */
.deal-container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* SALE BANNER */
.sale-banner {
  background: linear-gradient(135deg, #1E60AA, #9f92e8);
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

/* HEADER */
.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discount {
  font-size: 36px;
  font-weight: bold;
  color: #1E60AA;
}

.title {
  font-size: 22px;
  margin: 10px 0;
}

.meta {
  font-size: 13px;
  color: #666;
}

/* BUTTON */
.get-btn {
  background: #1E60AA;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
}

/* PRODUCT SECTION */
.product {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* IMAGE ZOOM & BADGE */
.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* SALE BADGE */
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3b3b;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.image-wrapper img {
  width: 250px;
  transition: transform 0.5s ease, filter 0.3s ease;
  cursor: zoom-in;
}

.image-wrapper:hover img {
  transform: scale(1.35);
  filter: brightness(1.1);
}

/* DESCRIPTION TOGGLE */
.desc-box {
  flex: 1;
}

.toggle-header {
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 6px;
}

.toggle-content {
  display: none;
  padding: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.icon {
  font-size: 18px;
}

/* FULLSCREEN ZOOM MODAL */
.zoom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zoom-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* CLOSE BUTTON */
.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10;
}

/* MOBILE */
@media (max-width: 768px) {
  .product {
    flex-direction: column;
    text-align: center;
  }

  .image-wrapper img {
    width: 100%;
  }
}


.price {
  font-size: 1.2rem; /* increases overall size */
}

.new-price {
  color: #1a73e8;
  font-size: 1.3em;   /* slightly bigger than old */
  font-weight: 600;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 10px;
  font-size: 1.1em;   /* also bigger now */
}