/** Shopify CDN: Minification failed

Line 865:0 Unexpected "}"

**/
/* ==========================================================================
   LUMARVA ORGANIC LIGHTING - SHOPIFY OS 2.0 THEME STYLESHEET
   ========================================================================== */

:root {
  --color-bg: #F5F1EB;
  --color-card-bg: #FAF8F5;
  --color-text: #2C2B29;
  --color-muted: #6E6B65;
  --color-accent: #B57A44;
  --color-accent-hover: #986333;
  --color-dark-bg: #1A1918;
  --color-dark-text: #F5F1EB;
  --color-border: #E4DDD3;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --page-width: 1320px;
  --header-height: 80px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.lumarva-body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-width--narrow {
  max-width: 840px;
}

.section-padding {
  padding: 80px 0;
}

.bg-alt {
  background-color: #EDE8E1;
}

.bg-dark {
  background-color: var(--color-dark-bg);
  color: var(--color-dark-text);
}

.text-center {
  text-align: center;
}

/* Typography */
.section-header__subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 8px;
}

/* Clean Minimalist Product Card Layout (Matching Reference Screenshot) */
.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  transition: transform 0.3s ease;
}

.product-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: transparent; /* No background card behind photo */
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-bottom: 12px;
  border: none;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__img--primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card__img--hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__img--hover {
  opacity: 1;
  transform: scale(1.03);
}

.product-card__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C857B;
  margin-bottom: 4px;
}

.product-card__category {
  color: #8C857B;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.product-card__price-tag {
  color: #4A4641;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.product-card__title-link {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: #2C2B29;
  line-height: 1.25;
  margin: 0;
}

.collection-card__img-container {
  width: 100%;
  height: 240px;
  background-color: #FAF8F5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card__image-container {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1, h2, h3, h4, h5, h6,
.hero-banner__title,
.section-header__title,
.artisan-title,
.newsletter-title,
.product-info__title {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-header__subtitle {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.subtitle--light {
  color: #D4A373;
}

.section-header__title {
  font-size: 38px;
  color: var(--color-text);
}

.flex-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-header__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
}

.section-header__link:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn--primary {
  background-color: var(--color-text);
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn--outline:hover {
  background-color: var(--color-text);
  color: #FFFFFF;
}

.btn--light {
  background-color: #F5F1EB;
  color: var(--color-dark-bg);
}

.btn--light:hover {
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.btn--full {
  width: 100%;
}

/* Announcement Bar */
.announcement-bar {
  padding: 10px 0;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.announcement-bar__link {
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 600;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(245, 241, 235, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height, 80px);
  display: flex;
  align-items: center;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo-img {
  display: block;
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.header__menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__menu-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
  position: relative;
}

.header__menu-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition);
}

.header__menu-link:hover::after {
  width: 100%;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  position: relative;
}

.header__cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
}

.hero-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 25, 24, 0.45) 0%, rgba(26, 25, 24, 0.65) 100%);
}

.hero-banner__container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-banner__content {
  max-width: 640px;
}

.hero-banner__subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8C8A3;
  margin-bottom: 16px;
}

.hero-banner__title {
  font-size: 58px;
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-banner__description {
  font-size: 17px;
  color: #EAE4DC;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Grid System */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2-col { grid-template-columns: repeat(2, 1fr); }
.grid--3-col { grid-template-columns: repeat(3, 1fr); }
.grid--4-col { grid-template-columns: repeat(4, 1fr); }

/* Collection Cards */
.collection-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-card-bg);
  aspect-ratio: 4/5;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.collection-card__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection-card__placeholder {
  width: 100%;
  height: 100%;
  background-color: #E6DFD5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
}

.placeholder-icon {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.collection-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
}

.collection-card__content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: #FFFFFF;
}

.collection-card__subtitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #E8C8A3;
  display: block;
}

.collection-card__title {
  font-size: 26px;
  margin: 4px 0 12px 0;
  color: #FFFFFF;
}

.collection-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

/* Product Cards */
.product-card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.product-card__image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  background-color: #EDE7DE;
  overflow: hidden;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--color-dark-bg);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.product-card__quick-add {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: none;
  padding: 10px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__rating {
  font-size: 12px;
  color: #D4A373;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-val {
  color: var(--color-muted);
}

.product-card__title {
  font-size: 20px;
  margin-bottom: 4px;
}

.product-card__subtitle {
  font-size: 12px;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.product-card__price {
  margin-top: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

/* Feature Banner Showcase */
.feature-card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.feature-card__image-container {
  aspect-ratio: 4/3;
  background-color: #FAF8F5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #FAF8F5;
  padding: 12px;
  border-radius: 12px;
  display: block;
}

.feature-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__content {
  padding: 32px;
}

.feature-card__title {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card__desc {
  color: var(--color-muted);
  margin-bottom: 24px;
}

/* Value Props */
.value-grid {
  text-align: center;
}

.value-item {
  padding: 24px;
}

.value-item__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.value-item__title {
  font-size: 20px;
  margin-bottom: 8px;
}

.value-item__desc {
  font-size: 14px;
  color: var(--color-muted);
}

/* Testimonials */
.testimonial-card {
  background-color: var(--color-card-bg);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.testimonial-card__stars {
  color: #B57A44;
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14px;
}

.testimonial-card__author span {
  font-size: 12px;
  color: var(--color-muted);
}

/* Lifestyle Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  background-color: transparent; /* Zero background shade */
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Artisan Spotlight */
.artisan-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.artisan-image {
  background-color: transparent; /* Zero background shade */
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.artisan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
}

.artisan-image__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
}

.artisan-title {
  font-size: 42px;
  margin: 8px 0 20px 0;
}

.artisan-text {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.artisan-highlights {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.artisan-highlights strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
}

.artisan-highlights span {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
}

/* Sustainability */
.eco-card {
  background-color: var(--color-card-bg);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.eco-card__number {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.eco-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.eco-card p {
  font-size: 13px;
  color: var(--color-muted);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--color-card-bg);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  font-size: 20px;
  color: var(--color-accent);
}

.faq-item__answer {
  padding: 0 28px 22px 28px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Newsletter */
.newsletter-title {
  font-size: 46px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.newsletter-subtitle {
  color: #D4A373;
  font-size: 16px;
  margin-bottom: 36px;
}

.newsletter-form {
  max-width: 520px;
  margin: 0 auto 16px auto;
}

.newsletter-form__inner {
  display: flex;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 6px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-input {
  flex-grow: 1;
  background: none;
  border: none;
  padding: 0 20px;
  color: #FFFFFF;
  font-size: 14px;
  outline: none;
}

.newsletter-disclaimer {
  font-size: 12px;
  color: #8E8A83;
}

/* Footer */
.footer {
  background-color: #121110;
  color: #EAE4DC;
  padding: 80px 0 32px 0;
  border-top: 1px solid #282725;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__logo-img {
  max-height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer__tagline {
  color: #A49F96;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #D4A373;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list a {
  color: #A49F96;
  font-size: 14px;
}

.footer__list a:hover {
  color: #FFFFFF;
}

.footer__bottom {
  border-top: 1px solid #282725;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #7E7A73;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer.active {
  visibility: visible;
}

.cart-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: var(--transition);
}

.cart-drawer.active .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--color-bg);
  transform: translateX(100%);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.cart-drawer.active .cart-drawer__container {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.cart-drawer__close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Product Detail Page */
.product-detail-layout {
  gap: 60px;
  align-items: start;
}

.product-media__main {
  aspect-ratio: 1/1;
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.product-media__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
}

.product-info__title {
  font-size: 44px;
  margin-bottom: 8px;
}

.product-info__subtitle {
  color: var(--color-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.product-info__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.price-val {
  font-size: 28px;
  font-weight: 700;
}

.shipping-badge {
  background-color: #EAE3D8;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.product-option {
  margin-bottom: 24px;
}

.product-option__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-option__values {
  display: flex;
  gap: 12px;
}

.btn-option {
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid var(--color-border);
  background: var(--color-card-bg);
  font-size: 13px;
  cursor: pointer;
}

.btn-option.active {
  border-color: var(--color-text);
  background-color: var(--color-text);
  color: #FFFFFF;
}

.quantity-input {
  display: inline-flex;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--color-card-bg);
}

.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
}

.qty-field {
  width: 40px;
  border: none;
  text-align: center;
  background: none;
  font-weight: 600;
  outline: none;
}

.product-info__accordions {
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
}

.product-accordion {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}

.product-accordion summary {
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.product-accordion p, .product-accordion ul {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
}

/* ==========================================================================
   ULTRA-RESPONSIVE MEDIA QUERIES & MOBILE DESIGN SYSTEM
   ========================================================================== */

.header__mobile-toggle {
  display: none;
}

@media (max-width: 992px) {
  .hero-banner__title { font-size: 42px; line-height: 1.15; }
  .grid--4-col { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid--3-col { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .grid--2-col { grid-template-columns: 1fr; gap: 32px; }
  .artisan-container { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .header__nav { display: none; }
  .header__mobile-toggle { display: block !important; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--color-text); }
  .header__wrapper { display: flex; justify-content: space-between; align-items: center; }
  .product-detail-layout { grid-template-columns: 1fr !important; gap: 32px !important; }
}

@media (max-width: 768px) {
  .page-width { padding: 0 16px; }
  .hero-banner { min-height: 480px; padding: 60px 0; }
  .hero-banner__title { font-size: 34px; }
  .hero-banner__subtitle { font-size: 11px; letter-spacing: 0.15em; }
  
  /* 2-Column Product & Category Grid on Mobile for Premium Store Experience */
  .grid--4-col, .product-grid, .collection-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  
  .product-card__title { font-size: 15px !important; }
  .product-card__price-tag { font-size: 13px !important; }
  .product-card__category { font-size: 10px !important; }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }
  
  .section-header__title { font-size: 28px !important; }
  
  /* Product Detail Page Mobile Polish */
  .product-info__title { font-size: 28px !important; }
  .product-info__price { font-size: 18px !important; }
  .product-media__thumbnails { gap: 8px !important; }
  .product-media__thumb-btn { width: 70px !important; height: 70px !important; }
  
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-banner__title { font-size: 28px; }
  .hero-banner__actions { flex-direction: column; width: 100%; }
  .hero-banner__actions .btn { width: 100%; justify-content: center; }
  
  .announcement-bar { font-size: 11px; padding: 6px 10px; }
  .header { height: 68px; }
  .header__logo-img { max-height: 32px; }
  
  /* Crisp 2-col on compact screens with touch padding */
  .grid--4-col, .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .product-card__content { padding: 10px 8px !important; }
}
