/** Shopify CDN: Minification failed

Line 260:0 Expected "}" to go with "{"

**/
/* ── Rising Star Footer ── */
.rs-footer {
  background-color: #0D0D0D;
  padding: 80px 0 40px;
}

.rs-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

/* NEWSLETTER */
.rs-footer__newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 72px;
}

.rs-footer__newsletter-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rs-footer__star {
  font-size: 18px;
  color: #B8894F;
  line-height: 1;
}

.rs-footer__newsletter-title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #F7F6F2;
  margin: 0;
  line-height: 1.1;
  white-space: pre-line;
}

.rs-footer__newsletter-text {
  font-size: 14px;
  color: rgba(247,246,242,0.5);
  margin: 0;
  line-height: 1.7;
}

/* FORM */
.rs-footer__form-row {
  display: flex;
  gap: 0;
}

.rs-footer__input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(247,246,242,0.2);
  border-right: none;
  color: #F7F6F2;
  font-size: 13px;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.rs-footer__input::placeholder {
  color: rgba(247,246,242,0.3);
}
.rs-footer__input:focus {
  border-color: rgba(247,246,242,0.5);
}

.rs-footer__btn {
  background: #B8894F;
  color: #0D0D0D;
  border: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: inherit;
}
.rs-footer__btn:hover {
  background: #c99a60;
}

.rs-footer__success {
  font-size: 12px;
  color: #B8894F;
  margin: 12px 0 0;
  letter-spacing: 0.08em;
}

.rs-footer__error {
  font-size: 12px;
  color: rgba(247,246,242,0.4);
  margin: 12px 0 0;
}

/* DIVIDER */
.rs-footer__divider {
  height: 1px;
  background: rgba(247,246,242,0.08);
  margin: 0 0 64px;
}

/* COLUMNS */
.rs-footer__columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.rs-footer__logo {
  display: block;
  max-width: 140px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.rs-footer__brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #F7F6F2;
  display: block;
  margin-bottom: 12px;
}

.rs-footer__tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8894F;
  margin: 0 0 16px;
}

.rs-footer__brand-desc {
  font-size: 13px;
  color: rgba(247,246,242,0.4);
  line-height: 1.7;
  margin: 0;
  max-width: 280px;
}

.rs-footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.35);
  margin: 0 0 20px;
}

.rs-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rs-footer__link {
  font-size: 13px;
  color: rgba(247,246,242,0.6);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rs-footer__link:hover {
  color: #F7F6F2;
}

.rs-footer__social-link svg {
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.rs-footer__social-link:hover svg {
  opacity: 1;
}

/* LEGAL */
.rs-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.rs-footer__legal-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.rs-footer__copyright {
  font-size: 11px;
  color: rgba(247,246,242,0.25);
  letter-spacing: 0.06em;
}

.rs-footer__legal-link {
  font-size: 11px;
  color: rgba(247,246,242,0.25);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.rs-footer__legal-link:hover {
  color: rgba(247,246,242,0.6);
}

/* DISCLOSURE */
.rs-footer__disclosure {
  font-size: 11px;
  color: rgba(247,246,242,0.18);
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

/* MOBILE */
@media (max-width: 768px) {
  .rs-footer { padding: 60px 0 32px; }
  .rs-footer__inner { padding: 0 24px; }

  .rs-footer__newsletter {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }

  .rs-footer__newsletter-title {
    font-size: 28px;
  }

  .rs-footer__columns {
    grid-template-columns: 1fr 
