:root {
  color-scheme: light;
  --bg: #faf7f3;
  --surface: #ffffff;
  --surface-soft: #f7f2eb;
  --text: #121212;
  --muted: #57534e;
  --primary: #77634f;
  --accent: #b78d64;
  --border: rgba(119, 99, 79, 0.12);
  --shadow: 0 24px 80px rgba(43, 33, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #1f1f1f;
  color: #ffffff;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
a {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 243, 0.92);
  border-bottom: 1px solid rgba(119, 99, 79, 0.08);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.top-banner {
  background: #1c1a18;
  color: #fff;
  padding: 0.8rem 0;
}

.banner-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.hero-section {
  padding: 4rem 0 1.5rem;
}

.coming-soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: #1f1f1f;
  position: relative;
}

.coming-soon-hero {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
  background: #1f1f1f;
  border-radius: 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.bg-1 {
  top: 0;
  left: 0;
}

.bg-2 {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.85);
  z-index: 1;
}

.coming-soon-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.brand-section {
  margin-bottom: 1rem;
}

.brand-name {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  font-family: "Cormorant Garamond", "Georgia", serif;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 800px;
}

.message-line {
  font-size: 1rem;
  line-height: 1.75;
  color: #e0e0e0;
  margin: 0;
}

.message-line.join-text {
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .coming-soon-hero {
    padding: 2.5rem 1.5rem;
  }

  .brand-name {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .message-line {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

.brand-wrap {
  display: none;
}

.brand-badge {
  display: none;
}

.launch-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, #a97fb0 0%, #d5b2d8 50%, #a97fb0 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(169, 127, 176, 0.22);
  width: fit-content;
}

.launch-ribbon::before,
.launch-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-100%);
  animation: ribbonSlide 2.6s linear infinite;
}

.launch-ribbon span {
  position: relative;
  z-index: 1;
}

.coming-soon-content {
  display: none;
}

.coming-soon-visuals {
  display: none;
}

.launch-badge {
  display: none;
}

.collection-strip {
  display: none;
}

.hero-intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.hero-kicker {
  margin: 0;
  color: #7a8590;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.coming-soon-card h1 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.4rem, 4.2vw, 3.9rem);
  line-height: 1.05;
  color: #1f2933;
}

.coming-soon-copy {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 1.4rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: #ffffff;
  color: #1f1f1f;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0f0f0;
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.button-secondary {
  background: transparent;
  color: #1f2933;
  border-color: rgba(31, 41, 51, 0.12);
}

.collection-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.collection-strip span {
  border: 1px solid rgba(31, 41, 51, 0.12);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: #f8fafc;
  color: #334155;
  font-size: 0.95rem;
}

.coming-soon-visuals {
  display: grid;
  gap: 1rem;
  min-width: 0;
  position: relative;
}

.launch-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  background: linear-gradient(90deg, #a97fb0 0%, #d5b2d8 50%, #a97fb0 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(169, 127, 176, 0.22);
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(76, 58, 43, 0.08);
  min-height: 220px;
}

.visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visual-card.primary img {
  min-height: 320px;
}

.visual-card.secondary img {
  min-height: 180px;
}

.visual-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-band {
  display: none;
}

.feature-item {
  padding: 1.2rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.feature-item h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #1f2933;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

@keyframes ribbonSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 900px) {
  .coming-soon-card {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .coming-soon-content {
    text-align: left;
    padding-top: 3.2rem;
    max-width: none;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .coming-soon-page {
    padding: 1rem 0 1.4rem;
  }

  .coming-soon-card {
    width: 100%;
    padding: 1.15rem;
    border-radius: 24px;
    gap: 1rem;
  }

  .brand-wrap {
    position: static;
    align-items: center;
    margin-bottom: 1rem;
  }

  .launch-ribbon {
    position: static;
    margin-bottom: 0.4rem;
  }

  .brand-badge {
    display: inline-block;
    font-size: 1.4rem;
    padding: 0.5rem 0.8rem;
  }

  .coming-soon-content {
    padding-top: 0;
  }


  .coming-soon-card h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .collection-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-strip span {
    text-align: center;
  }
}

.hero-shop {
  padding-top: 1rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 540px);
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: min(100%, 550px);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(43, 33, 26, 0.14);
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-features span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(119, 99, 79, 0.08);
  color: var(--text);
  font-size: 0.95rem;
}

.shop-categories {
  padding-bottom: 2rem;
}

.category-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.category-list a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(119, 99, 79, 0.15);
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-list a:hover,
.category-list a:focus-visible {
  background: var(--text);
  color: #fff;
}

.feature-shop article {
  border-radius: 24px;
  padding: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-copy h1,
.section-heading h2,
.about-section h2 {
  margin: 0;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  line-height: 1.02;
}

.hero-copy p {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--text);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(18, 18, 18, 0.1);
}

.hero-image {
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(100%, 420px);
  aspect-ratio: 1 / 1.1;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,242,235,0.9) 100%);
  border: 1px solid rgba(119, 99, 79, 0.1);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--text);
}

.hero-card span {
  font-size: 1.1rem;
  max-width: 24rem;
  line-height: 1.7;
}

.feature-section,
.about-section,
.products-section,
.site-footer {
  padding: 3.5rem 0;
}

.feature-grid,
.about-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.info-card,
.product-card,
.site-footer {
  background: var(--surface);
  border: 1px solid var(--border);
}

.feature-grid article {
  padding: 2rem;
  border-radius: 28px;
}

.feature-grid h2,
.info-card h3 {
  margin-top: 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-group {
  display: flex;
  gap: 0.5rem;
  width: min(100%, 420px);
}

.search-group input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  outline: none;
}

.search-group button {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 0 1rem;
  color: var(--muted);
  cursor: pointer;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.admin-toggle-wrapper {
  display: flex;
  align-items: center;
}

.admin-panel {
  padding: 2rem;
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(119, 99, 79, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(43, 33, 26, 0.08);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-status {
  margin-bottom: 1rem;
  color: var(--muted);
}

.editor-rows {
  display: grid;
  gap: 1rem;
}

.editor-row {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface-soft);
}

.editor-field {
  display: grid;
  gap: 0.5rem;
}

.editor-row .image-upload {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.image-preview {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(119, 99, 79, 0.15);
}

.product-card {
  overflow: hidden;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: fadeIn 0.35s ease forwards;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(247,242,235,0.96));
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 90px rgba(43, 33, 26, 0.18);
}

.product-card-media {
  position: relative;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(119, 99, 79, 0.92);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-price {
  color: var(--accent);
  font-size: 1rem;
}

.image-credit,
.footer-credit {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.image-credit a,
.footer-credit a {
  color: var(--text);
  text-decoration: underline;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.editor-row input,
.editor-row textarea {
  width: 100%;
  border: 1px solid rgba(119, 99, 79, 0.18);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  outline: none;
  background: #fff;
}

.editor-row textarea {
  resize: vertical;
  min-height: 100px;
}

.editor-row .editor-row-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.editor-row label {
  font-size: 0.95rem;
  color: var(--muted);
}

.editor-row .delete-row {
  justify-self: flex-end;
  border-color: rgba(119, 99, 79, 0.16);
}

.admin-note {
  margin-top: 1rem;
  color: var(--muted);
}

/* Subscription Section */
.subscription-section {
  width: 100%;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  text-align: center;
}

.subscription-container {
  max-width: 700px;
  margin: 0 auto;
}

.subscription-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: "Cormorant Garamond", "Georgia", serif;
  color: #ffffff;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.subscription-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #cccccc;
  margin: 0 0 2rem;
}

.subscription-form {
  display: flex;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: #ffffff;
}

.email-input {
  flex: 1;
  min-width: 0;
  padding: 0.95rem 1.5rem;
  border: none;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 1rem;
  outline: none;
}

.email-input::placeholder {
  color: #999999;
}

.subscribe-button {
  padding: 0 1.5rem;
  background: #1f1f1f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.subscribe-button:hover,
.subscribe-button:focus-visible {
  background: #333333;
  transform: scale(1.05);
}

/* Footer Section */
.footer-section {
  width: 100%;
  padding: 2.5rem 1rem;
  background: #1f1f1f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  font-size: 0.95rem;
  color: #999999;
  margin: 0 0 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .subscription-form {
    flex-direction: column;
  }

  .email-input,
  .subscribe-button {
    width: 100%;
  }

  .social-links {
    gap: 1.5rem;
  }

  .social-links a {
    width: 42px;
    height: 42px;
  }
}

.hidden {
  display: none !important;
}

.no-results {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.filter-button.active {
  background: var(--text);
  color: #fff;
  border-color: transparent;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-card {
  overflow: hidden;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-content {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  flex: 1;
}

.product-card h3 {
  margin: 0;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--accent);
  font-weight: 600;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-footer .button {
  width: 100%;
  justify-content: center;
}

.about-grid {
  grid-template-columns: 1.2fr 0.9fr;
  align-items: start;
}

.about-cards {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.75rem;
  border-radius: 28px;
}

.site-footer {
  background: linear-gradient(180deg, rgba(250,247,243,0.98), rgba(255,255,255,0.98));
  border-top: 1px solid rgba(119, 99, 79, 0.1);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-note {
  margin: 1rem 0 0;
  color: var(--muted);
}

.copyright {
  text-align: center;
  padding: 1rem 0 0;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .feature-grid,
  .about-grid,
  .footer-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .controls {
    flex-direction: column;
    align-items: stretch;
  }

  .product-footer .button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .hero-section {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .search-group,
  .filter-group {
    width: 100%;
  }
}
