/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 08 2026 | 07:23:01 */
Replace all previous CSS for Banner 1 with this complete updated version:

```css
/* ==================================================
   BANNER 1 — THREE-DAY CLEARANCE SALE
   ================================================== */

.cga-sale-v2,
.cga-sale-v2 * {
  box-sizing: border-box;
}

.cga-sale-v2 {
  --sale-gold: #d5a545;
  --sale-dark: #17120c;

  position: relative;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 14px;
  align-items: center;
  width: min(600px, calc(100% - 36px));
  margin-right: auto;
  margin-left: clamp(18px, 4vw, 70px);
  padding: 18px;
  overflow: hidden;
  color: #fff;
  text-align: left;
  background: linear-gradient(
    110deg,
    rgba(12, 10, 9, 0.93),
    rgba(20, 16, 13, 0.79)
  );
  border: 1px solid rgba(213, 165, 69, 0.38);
  border-radius: 5px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}

/* Gold accent line */
.cga-sale-v2::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--sale-gold),
    rgba(213, 165, 69, 0)
  );
}

/* ==================================================
   THREE-DAY BADGE
   ================================================== */

.cga-sale-v2-badge {
  display: flex;
  width: 94px;
  height: 94px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sale-dark);
  text-align: center;
  background: var(--sale-gold);
  border-radius: 50%;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.3);
}

.cga-sale-v2-badge strong {
  display: block;
  margin: 0;
  color: var(--sale-dark);
  font-size: 48px;
  font-weight: 800;
  line-height: 0.8;
}

.cga-sale-v2-badge span {
  display: block;
  margin-top: 8px;
  color: var(--sale-dark);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==================================================
   BANNER TEXT
   ================================================== */

.cga-sale-v2-content {
  width: 100%;
  min-width: 0;
}

.cga-sale-v2-kicker {
  margin: 0 0 7px;
  color: var(--sale-gold);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cga-sale-v2-title {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 43px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.cga-sale-v2-title span {
  display: block;
  color: var(--sale-gold);
}

.cga-sale-v2-description {
  width: 100%;
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 400;
  line-height: 1.45;
}

/* ==================================================
   CATEGORY BUTTONS
   ================================================== */

.cga-sale-v2-actions {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.cga-sale-v2-button {
  display: flex;
  min-width: 0;
  min-height: 46px;
  padding: 8px 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(213, 165, 69, 0.7);
  border-radius: 3px;
  line-height: 1.1;
  text-align: center;
  text-decoration: none !important;
  box-shadow: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cga-sale-v2-button span {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cga-sale-v2-button small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cga-sale-v2-button:hover {
  color: var(--sale-dark) !important;
  background-color: var(--sale-gold);
  border-color: var(--sale-gold);
  box-shadow: none;
  transform: translateY(-2px);
}

.cga-sale-v2-button:hover small {
  color: rgba(23, 18, 12, 0.78);
}

.cga-sale-v2-button:focus-visible {
  color: var(--sale-dark) !important;
  background-color: var(--sale-gold);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ==================================================
   MOBILE
   ================================================== */

@media (max-width: 549px) {
  .cga-sale-v2 {
    position: relative;
    left: 50%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    width: calc(100vw - 24px);
    max-width: 380px;
    margin: 0;
    padding: 18px;
    transform: translateX(-50%);
  }

  /* Compact mobile badge */
  .cga-sale-v2-badge {
    display: inline-flex;
    width: auto;
    height: auto;
    padding: 7px 13px;
    flex-direction: row;
    gap: 7px;
    justify-self: start;
    border-radius: 100px;
  }

  .cga-sale-v2-badge strong {
    font-size: 23px;
    line-height: 1;
  }

  .cga-sale-v2-badge span {
    margin: 0;
    font-size: 9px;
    line-height: 1;
  }

  /* Full-width mobile text */
  .cga-sale-v2-content {
    width: 100%;
    min-width: 0;
  }

  .cga-sale-v2-kicker,
  .cga-sale-v2-title,
  .cga-sale-v2-description {
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .cga-sale-v2-kicker {
    margin-bottom: 6px;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.1em;
  }

  .cga-sale-v2-title {
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1.04;
  }

  .cga-sale-v2-title span {
    display: block;
  }

  .cga-sale-v2-description {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
  }

  /* Mobile buttons */
  .cga-sale-v2-actions {
    display: grid;
    grid-column: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    width: 100%;
  }

  .cga-sale-v2-button {
    min-width: 0;
    min-height: 44px;
    padding: 7px 3px;
  }

  .cga-sale-v2-button span {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .cga-sale-v2-button small {
    margin-top: 3px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }
}
```