/* You Name It — Store Layout (minimal — store.css is the primary source) */

/* ----- Footer (only defined here) ----- */
.store-footer {
  background: linear-gradient(180deg, var(--st-chocolate) 0%, #4a2f1f 100%);
  color: #fff;
  padding: 3rem 1.25rem 2rem;
  margin-top: 4rem;
}

.store-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.store-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-footer__brand p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.store-footer h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.store-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.store-footer li {
  margin-bottom: 0.5rem;
}

.store-footer a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.store-footer a:hover {
  opacity: 1;
}

.store-footer__bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ----- RTL footer ----- */
body.is-rtl .store-footer__inner {
  direction: ltr;
  text-align: right;
}
body.is-rtl .store-footer h4,
body.is-rtl .store-footer li,
body.is-rtl .store-footer a {
  text-align: right;
}
body.is-rtl .store-footer__bottom {
  text-align: center;
}

/* ----- Responsive footer ----- */
@media (max-width: 640px) {
  .store-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .store-footer {
    padding: 2.5rem 0.85rem 1.5rem;
  }
}

@media (min-width: 641px) and (max-width: 800px) {
  .store-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
