/* Black Friday Design Deposit styles */
.bfdd-wrapper {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.bfdd-card {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.bfdd-image {
  flex: 0 0 320px;
  max-width: 100%;
}

.bfdd-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bfdd-content {
  flex: 1;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bfdd-title {
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.bfdd-intro {
  margin: 0 0 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Button */
.bfdd-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-align: center;

  /* Adjust these colors if you want to match your existing brand colors */
  background-color: #c0392b;
  color: #ffffff;
}

.bfdd-button:hover,
.bfdd-button:focus {
  background-color: #a13124;
}

/* Terms section */
.bfdd-terms {
  margin-top: 1.75rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  padding: 1.5rem 1.5rem 1.75rem;
}

.bfdd-terms h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.bfdd-terms ul {
  margin: 0;
  padding-left: 1.25rem;
}

.bfdd-terms li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
  font-size: 0.98rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .bfdd-card {
    flex-direction: column;
  }

  .bfdd-image {
    flex: 0 0 auto;
  }

  .bfdd-content {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .bfdd-title {
    font-size: 1.3rem;
  }

  .bfdd-intro {
    font-size: 0.98rem;
  }

  .bfdd-wrapper {
    margin: 1.5rem auto;
  }
}

@media (max-width: 480px) {
  .bfdd-content {
    padding: 1rem 1rem 1.25rem;
  }

  .bfdd-title {
    font-size: 1.15rem;
  }

  .bfdd-intro {
    font-size: 0.95rem;
  }

  .bfdd-button {
    width: 100%;
  }
}


.bfdd-cart-btn {
  float: right;
  background-color: #c0392b;      /* deep sale red */
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.bfdd-cart-btn:hover {
  background-color: #a13124;
  transform: translateY(-2px);
}

.bfdd-cart-btn:active {
  transform: translateY(0);
}

/* optional: keep form layout clean on small screens */
@media (max-width: 600px) {
  .bfdd-cart-btn {
    float: none;
    width: 100%;
    margin-top: 10px;
  }
}


.mm-banner-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
}

.mm-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .mm-banner-wrap {
    padding: 0 10px;
  }
}














.close-btn {
  position: absolute;
  top: 8px;
  left: 8px;              /* change to right:8px if you prefer */
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 22px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
  padding: 0;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}


.sale-banner {
  display: block;
  width: 100%;
  max-width: 1000px;   /* matches your design size */
  height: auto;        /* keeps proportions */
  margin: 0 auto;      /* centers it */
}