.att-store-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 120px) 22px;
  color: #f8efe4;
  --att-highlight: rgba(206, 162, 86, 0.28);
  --att-bg-base: #0f0d0c;
  background:
    radial-gradient(circle at 18% 15%, var(--att-highlight), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(255, 245, 219, 0.13), transparent 24%),
    linear-gradient(135deg, #15100d 0%, #2b1813 52%, var(--att-bg-base) 100%);
}

.att-store-section::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(219, 180, 106, 0.24);
  border-radius: 30px;
  pointer-events: none;
}

.att-store-wrap {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.att-kicker {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ddb26a;
}

.att-store-wrap h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.95;
  text-transform: lowercase;
  color: #fff8ed;
}

.att-store-intro {
  max-width: 650px;
  margin: 24px auto 44px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
  color: rgba(255, 248, 237, 0.76);
}

.att-store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.att-store-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  text-align: left;
  text-decoration: none;
  color: #fff8ed;
  border: 1px solid rgba(235, 199, 131, 0.26);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.att-store-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(221, 178, 106, 0.28), transparent 48%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.att-store-card:hover,
.att-store-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(235, 199, 131, 0.62);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  outline: none;
}

.att-store-card:hover::after,
.att-store-card:focus-visible::after {
  opacity: 1;
}

.att-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #1d130d;
  background: linear-gradient(135deg, #ffe5a7, #b98335);
  font-size: 1.25rem;
  box-shadow: 0 12px 30px rgba(221, 178, 106, 0.24);
  transition: all 0.3s ease;
}
.att-card-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.att-card-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ddb26a;
}

.att-store-card h3 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
}

.att-store-card p:not(.att-card-label) {
  margin: 0;
  color: rgba(255, 248, 237, 0.74);
  line-height: 1.65;
}

.att-card-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 32px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #24140d;
  background: #f3d28d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .att-store-grid {
    grid-template-columns: 1fr;
  }

  .att-store-card {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .att-store-section {
    padding: 64px 16px;
  }

  .att-store-section::before {
    inset: 10px;
    border-radius: 22px;
  }

  .att-store-card {
    padding: 24px;
    border-radius: 22px;
  }
}