/* Reset and Base Styles */
html {
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  transition: background .4s ease, color .4s ease;
}

body {
  background: #f8f5ef;
  color: #1a1a1a;
}

.aa-is-busy {
  opacity: .72;
}

.aa-loading-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.aa-loading-text::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 999px;
  animation: aa-spin .7s linear infinite;
}

@keyframes aa-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Ivory storefront text colors */
body.ivory h1, 
body.ivory h2, 
body.ivory h3, 
body.ivory h4 { 
  color: #111 !important; 
}

body.ivory p, 
body.ivory a { 
  color: #444 !important; 
}

body.ivory .text-white { 
  color: #111 !important; 
}

body.ivory .text-gray-400,
body.ivory .text-gray-500,
body.ivory .text-gray-600 { 
  color: #666 !important; 
}

/* Site header */
.aa-site-header.glass-effect {
  background: rgba(248, 245, 239, .9);
  border: 0;
  border-bottom: 1px solid rgba(20, 17, 13, .08);
  box-shadow: 0 18px 45px rgba(20, 17, 13, .07);
  backdrop-filter: blur(14px);
}

.aa-site-header-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  width: 100%;
}

.aa-logo-wrap {
  justify-self: start;
}

.aa-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #111 !important;
  text-decoration: none;
}

.aa-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.aa-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #15120d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: .9;
  text-transform: uppercase;
}

.aa-wordmark span:last-child {
  color: #7a5d22;
}

.aa-desktop-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.aa-desktop-nav a {
  position: relative;
  color: #4f4942 !important;
  padding: 8px 18px;
  border-radius: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}

.aa-desktop-nav a:hover,
.aa-desktop-nav a.active {
  color: #111 !important;
  background: transparent;
  box-shadow: none;
}

.aa-desktop-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 2px;
  height: 1px;
  background: #111;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.aa-desktop-nav a:hover::after,
.aa-desktop-nav a.active::after {
  transform: scaleX(1);
}

.aa-header-actions {
  justify-self: end;
}

.aa-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  width: 34px;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(182, 146, 75, .38);
  border-radius: 999px;
  background: linear-gradient(145deg, #fffaf0, #d8c197);
  color: #211b15 !important;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(182, 146, 75, .22);
}

.aa-cart-link svg {
  width: 18px;
  height: 18px;
  color: #211b15;
  stroke: currentColor;
  opacity: .9;
}

.aa-cart-label {
  display: none;
}

.aa-icon-button {
  color: #111 !important;
  border-color: rgba(17, 17, 17, .22);
}

.aa-cart-count {
  top: -8px !important;
  right: -8px !important;
  width: 20px !important;
  height: 20px !important;
  background: #211b15;
  color: #111 !important;
  font-size: 11px;
  font-weight: 800;
  border: 2px solid #f8f5ef;
  line-height: 1;
}

.aa-cart-count {
  color: #fffdf8 !important;
}

.aa-mobile-menu {
  background: rgba(248, 245, 239, .96);
  border-color: rgba(20, 17, 13, .08);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease;
}

.aa-mobile-menu[hidden] {
  display: block;
}

.aa-mobile-menu.is-open {
  max-height: 260px;
  opacity: 1;
  transform: translateY(0);
}

.aa-trust-strip {
  display: none;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  border-top: 1px solid rgba(20, 17, 13, .06);
  border-bottom: 1px solid rgba(20, 17, 13, .08);
  background: rgba(248, 245, 239, .9);
  color: #756b5f;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: .5rem 1rem;
  text-transform: uppercase;
}

.aa-trust-strip span {
  white-space: nowrap;
}

/* Footer */
.aa-footer {
  border-top: 1px solid rgba(20, 17, 13, .1);
  background: rgba(248, 245, 239, .72);
}

.aa-footer h4,
.aa-footer-heading {
  color: #15120d;
}

.aa-footer p,
.aa-footer a {
  color: #645d53 !important;
}

.aa-footer a {
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.aa-footer a:hover {
  color: #111 !important;
}

.aa-footer-heading {
  margin-bottom: 1.25rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.aa-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
}

.aa-social-link:hover {
  background: #111;
  border-color: #111;
  color: #fff !important;
}

.aa-footer-contact {
  margin-top: 1rem;
  color: #211b15 !important;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  font-style: italic;
}

.aa-footer-bottom {
  border-top: 1px solid rgba(20, 17, 13, .1);
}

/* Glass effect */
.glass-effect {
  backdrop-filter: blur(10px);
  transition: all .3s ease;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(0, 0, 0, .08);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #211b15;
  border-radius: 0;
  transition: all .3s ease;
  background: #211b15;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

.btn-primary,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus {
  color: #fff !important;
  text-decoration: none !important;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

/* Background wrapper */
#app-wrapper {
  min-height: 100vh;
  height: auto !important;
  overflow: visible !important;
  transition: background .4s ease;
  background: linear-gradient(180deg, #f8f5ef 0%, #f0e8d8 50%, #f8f5ef 100%) !important;
}

/* Typography */
.font-display {
  font-family: 'Cormorant Garamond', serif;
}

.font-body {
  font-family: 'Montserrat', sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #d8c197 48%, #9fb4a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Brand hero */
.aa-hero {
  isolation: isolate;
  overflow: hidden;
  align-items: flex-start !important;
  min-height: calc(100vh - 96px);
  padding-top: clamp(1.35rem, 3vh, 2.4rem);
  padding-bottom: clamp(.85rem, 1.8vh, 1.35rem);
  background-image: linear-gradient(135deg, rgba(248, 245, 239, 1) 0%, rgba(247, 242, 232, .98) 52%, rgba(239, 228, 204, .72) 100%);
  background-color: #f8f5ef;
}

.aa-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, #f8f5ef);
  z-index: 0;
}

.aa-hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 11rem;
  width: 38vw;
  max-width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(182, 146, 75, .2);
  background: rgba(255, 255, 255, .22);
  z-index: 0;
}

body.ivory .aa-hero {
  background-image: linear-gradient(135deg, rgba(248, 245, 239, 1) 0%, rgba(247, 242, 232, .98) 52%, rgba(239, 228, 204, .72) 100%);
}

body.ivory .aa-hero::after {
  background: linear-gradient(180deg, transparent, #f8f5ef);
}

body.ivory .aa-hero .text-white,
.aa-hero .text-white {
  color: #15120d !important;
}

body.ivory .aa-hero .text-gray-200,
.aa-hero .text-gray-200 {
  color: #5d554b !important;
}

.aa-atelier-entrance {
  text-align: left;
}

.aa-hero-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .74fr);
  align-items: center;
  gap: clamp(1.25rem, 3.2vw, 3.4rem);
}

.aa-entrance-copy {
  position: relative;
  display: grid;
  justify-items: start;
  max-width: 820px;
}

.aa-entrance-rule {
  width: min(420px, 54vw);
  height: 1px;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(182, 146, 75, .84), transparent);
}

.aa-entrance-kicker {
  margin-bottom: .65rem;
  color: #7a5d22 !important;
  font-family: "Times New Roman", Times, serif;
  font-size: .86rem;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.aa-entrance-title {
  position: relative;
  display: inline-block;
  color: #1f1a14;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(3.7rem, 8.15vw, 7rem);
  font-weight: 300;
  letter-spacing: .075em;
  line-height: .86;
  text-transform: uppercase;
}

.aa-entrance-title::after {
  content: "";
  display: block;
  width: min(520px, 74%);
  height: 1px;
  margin-top: .55rem;
  background: linear-gradient(90deg, rgba(182, 146, 75, .9), rgba(182, 146, 75, .24), transparent);
}

.aa-entrance-subtitle {
  margin-top: -1.9rem;
  color: #29241d !important;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-style: italic;
}

.aa-entrance-text {
  max-width: 620px;
  margin-top: -0.4rem;
  color: #62594e !important;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.18rem;
  line-height: 1.48;
}

.aa-entrance-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .9rem;
  margin-top: -0.25rem;
  flex-wrap: wrap;
}

.aa-entrance-actions span {
  color: #7a7165;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.aa-signature-panel {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.aa-signature-panel::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 4%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(182, 146, 75, .2);
  border-radius: 50%;
}

.aa-signature-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(360px, 70.5vw);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(182, 146, 75, .34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .95), rgba(239, 228, 204, .74)),
    repeating-linear-gradient(90deg, rgba(182, 146, 75, .08) 0 1px, transparent 10px 10px);
  box-shadow: 0 28px 70px rgba(64, 49, 28, .15);
}
.aa-signature-card {
  margin-top: 3cm;
  /* ...existing styles */
}
.aa-signature-card::before,
.aa-signature-card::after {
  content: "";
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(182, 146, 75, .28);
  transform: rotate(45deg);
}

.aa-signature-card::before {
  top: -22%;
  right: -16%;
}

.aa-signature-card::after {
  bottom: -22%;
  left: -16%;
}

.aa-signature-card img {
  width: min(285px, 62%);
  opacity: .66;
  filter: sepia(.16) saturate(1.18) contrast(1.08);
}

.aa-signature-copy {
  position: absolute;
  bottom: 1.65rem;
  left: 1.7rem;
  right: 1.7rem;
  display: grid;
  gap: .45rem;
  text-align: left;
}

.aa-signature-copy span {
  color: #7a5d22;
  font-family: "Times New Roman", Times, serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.aa-signature-copy strong {
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.85rem, 3.3vw, 2.55rem);
  font-weight: 400;
  line-height: .94;
}

.aa-signature-line {
  position: absolute;
  left: 1.7rem;
  right: 1.7rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(182, 146, 75, .9), transparent);
}

.aa-signature-line-top {
  top: 1.65rem;
}

.aa-signature-line-bottom {
  bottom: 5.9rem;
}

.aa-link-button {
  border: 1px solid rgba(17, 17, 17, .18);
  color: #111 !important;
  transition: background .25s ease, border-color .25s ease;
}

.aa-link-button:hover {
  background: rgba(17, 17, 17, .05);
  border-color: rgba(17, 17, 17, .38);
}

.aa-quiet-button {
  border: 1px solid rgba(182, 146, 75, .5);
  background: rgba(255, 253, 248, .58);
  color: #15120d !important;
  text-decoration: none !important;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.aa-quiet-button:hover {
  background: rgba(182, 146, 75, .12);
  border-color: rgba(182, 146, 75, .84);
  transform: translateY(-1px);
}

.aa-link-button,
.aa-link-button:visited,
.aa-link-button:hover,
.aa-link-button:focus {
  color: #111 !important;
}

.aa-product-frame {
  border: 1px solid rgba(216, 193, 151, .18);
  background: #f2ece2 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4), 0 18px 40px rgba(64, 49, 28, .12);
}

/* Story section */
.aa-story-section {
  position: relative;
  background: linear-gradient(180deg, #f8f5ef 0%, #f1eadc 100%);
  border-top: 1px solid rgba(20, 17, 13, .08);
  border-bottom: 1px solid rgba(20, 17, 13, .08);
}

.aa-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.aa-section-kicker {
  margin-bottom: 1.2rem;
  color: #7a5d22 !important;
  font-family: "Times New Roman", Times, serif;
  font-size: .82rem;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.aa-story-title {
  max-width: 720px;
  margin-bottom: 1.5rem;
  color: #1f1a14;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.7rem, 5.6vw, 5.8rem);
  font-weight: 400;
  line-height: .94;
}

.aa-story-copy p:not(.aa-section-kicker) {
  max-width: 650px;
  color: #5f574d !important;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  line-height: 1.65;
}

.aa-story-copy p + p {
  margin-top: 1rem;
}

.aa-story-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2rem;
  color: #211b15 !important;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}

.aa-story-link span {
  color: #7a5d22;
}

.aa-values-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(182, 146, 75, .28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .94), rgba(239, 228, 204, .68)),
    repeating-linear-gradient(0deg, rgba(182, 146, 75, .07) 0 1px, transparent 1px 52px);
  box-shadow: 0 28px 70px rgba(64, 49, 28, .12);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.aa-values-panel::before {
  content: "";
  position: absolute;
  right: -18%;
  top: -18%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(182, 146, 75, .22);
  transform: rotate(45deg);
}

.aa-values-panel > img {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: min(180px, 38%);
  opacity: .12;
}

.aa-values-list {
  position: relative;
  display: grid;
  gap: 1rem;
}

.aa-values-list div {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(182, 146, 75, .22);
}

.aa-values-list div:last-child {
  border-bottom: 0;
}

.aa-values-list span {
  color: #7a5d22;
  font-size: .75rem;
  letter-spacing: .2em;
}

.aa-values-list strong {
  display: block;
  margin-top: .35rem;
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
}

.aa-values-list p {
  max-width: 360px;
  margin-top: .55rem;
  color: #675f55 !important;
  font-size: .95rem;
  line-height: 1.55;
}

.aa-product-frame svg {
  color: #d8c197;
}

.aa-panel {
  border: 1px solid rgba(216, 193, 151, .16);
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}

body.ivory .aa-panel {
  background: rgba(255, 255, 255, .75);
  border-color: rgba(0, 0, 0, .08);
  box-shadow: 0 18px 44px rgba(64, 49, 28, .1);
}

.aa-empty-state {
  max-width: 760px;
  margin: 0 auto;
}

.aa-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(216, 193, 151, .16);
  border-bottom: 1px solid rgba(216, 193, 151, .16);
}

.aa-meta-item {
  padding: 12px 10px;
  border-right: 1px solid rgba(216, 193, 151, .16);
}

.aa-meta-item:last-child {
  border-right: 0;
}

.aa-meta-label {
  display: block;
  margin-bottom: 4px;
  color: #5f4424;
  font-family: "Times New Roman", Times, serif;
  font-size: .78rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
}

.aa-meta-value {
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: .86rem;
}

body.ivory .aa-meta-value {
  color: #1a1a1a;
}

.aa-size-option {
  border-radius: 4px;
  min-width: 4rem;
}

.aa-size-option.active {
  border-color: #d8c197;
  background: #d8c197;
  color: #111;
}

.aa-form-field {
  width: 100%;
  border: 1px solid rgba(216, 193, 151, .2);
  background: rgba(0, 0, 0, .12);
  color: white;
  transition: border-color .2s ease, background .2s ease;
}

.aa-form-field:focus {
  outline: 2px solid rgba(169, 138, 72, .85);
  outline-offset: 3px;
  border-color: #d8c197;
  background: rgba(0, 0, 0, .2);
}

body.ivory .aa-form-field {
  background: rgba(255, 255, 255, .74);
  color: #111;
  border-color: rgba(0, 0, 0, .12);
}

.aa-field-hint,
.aa-checkout-note {
  color: #756b5f !important;
  font-family: "Times New Roman", Times, serif;
  font-size: .9rem;
  font-style: italic;
  line-height: 1.5;
}

.aa-field-hint {
  margin-top: .55rem;
}

.aa-checkout-note {
  margin-top: .8rem;
  text-align: center;
}

.aa-checkout-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(216, 193, 151, .5);
  border-radius: 50%;
  color: #d8c197;
  font-size: 12px;
  font-weight: 700;
}

.aa-cart-item {
  border: 1px solid rgba(216, 193, 151, .14);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
}

body.ivory .aa-cart-item {
  background: rgba(255, 255, 255, .72);
  border-color: rgba(0, 0, 0, .08);
}

.aa-cart-image {
  border: 1px solid rgba(216, 193, 151, .16);
  background: linear-gradient(145deg, #23201c, #0f0f0e);
}

.aa-featured-section {
  background: linear-gradient(180deg, #f8f5ef 0%, #fbf8f1 100%);
  padding-top: 2.25rem !important;
  padding-bottom: 5rem !important;
}

.aa-section-head {
  margin-bottom: 2rem !important;
}

.aa-section-head .aa-section-kicker {
  display: none;
}

.aa-section-head h2,
.aa-shop-title {
  color: #17130e;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.85rem, 5.4vw, 5.8rem);
  font-weight: 400;
  line-height: .92;
}

.aa-section-head span,
.aa-shop-head p:not(.aa-section-kicker) {
  display: block;
  max-width: 680px;
  margin: .45rem auto 0;
  color: #61594f !important;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  line-height: 1.65;
}

.aa-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin: 0;
}

.aa-shop-tools {
  display: grid;
  gap: 1.2rem;
  margin: -1.5rem auto 4rem;
}

.aa-shop-sort {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #756b5f;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.aa-shop-sort form {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.aa-shop-sort label {
  color: #8c7a5e;
}

.aa-shop-sort select {
  border: 1px solid rgba(182, 146, 75, .32);
  background: rgba(255, 253, 248, .8);
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  padding: .6rem .9rem;
}

.aa-category-chip {
  border: 1px solid rgba(182, 146, 75, .32);
  background: rgba(255, 253, 248, .64);
  color: #3f382f !important;
  font-family: "Times New Roman", Times, serif;
  font-size: .95rem;
  letter-spacing: .08em;
  padding: .8rem 1.25rem;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.aa-category-chip:hover,
.aa-category-chip.active {
  background: #efe4cc;
  border-color: rgba(169, 138, 72, .78);
  transform: translateY(-1px);
}

.aa-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.aa-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-top: 3rem;
}

.aa-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(182, 146, 75, .34);
  background: rgba(255, 253, 248, .78);
  color: #211b15 !important;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.aa-pagination a:hover,
.aa-pagination a.active {
  background: #211b15;
  border-color: #211b15;
  color: #fffdf8 !important;
}

.aa-product-card {
  color: inherit;
  text-decoration: none !important;
}

.aa-product-card,
.aa-product-card:hover,
.aa-product-card:focus,
.aa-product-card:visited,
.aa-product-card *,
.aa-product-card:hover *,
.aa-product-card:focus * {
  text-decoration: none !important;
}

.aa-product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  margin-bottom: 1.1rem;
  contain: layout paint;
}

.aa-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(32, 24, 12, .16));
  pointer-events: none;
}

.aa-card-hover {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  border: 1px solid rgba(255, 253, 248, .68);
  background: rgba(33, 27, 21, .78);
  color: #fffdf8;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  padding: .65rem .9rem;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease;
}

.aa-product-card:hover .aa-card-hover {
  opacity: 1;
  transform: translate(-50%, 0);
}

.aa-product-badges {
  position: absolute;
  z-index: 2;
  left: .85rem;
  top: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.aa-product-badge {
  border: 1px solid rgba(169, 138, 72, .34);
  background: rgba(255, 253, 248, .86);
  color: #8a6b2c;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: .45rem .55rem;
  text-transform: uppercase;
}

.aa-product-badge.warning {
  color: #9a6b11;
}

.aa-product-badge.danger {
  color: #9f2f2f;
  border-color: rgba(159, 47, 47, .24);
}

.aa-product-info {
  text-align: center;
}

.aa-product-category,
.aa-product-price,
.aa-field-label,
.aa-product-kicker {
  color: #5f4424 !important;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.aa-product-name {
  margin: .35rem 0;
  color: #17130e;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
}

.aa-product-price {
  color: #5c5349 !important;
  letter-spacing: .08em;
}

.aa-back-link {
  color: #756b5f !important;
  text-decoration: none;
}

.aa-back-link:hover {
  color: #7a5d22 !important;
}

.aa-detail-layout {
  display: grid;
  grid-template-columns: minmax(235px, 285px) minmax(270px, 350px);
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
  justify-content: start;
}

.aa-product-showcase {
  border: 1px solid rgba(182, 146, 75, .28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, .88), rgba(244, 236, 220, .64));
  box-shadow: 0 22px 58px rgba(64, 49, 28, .1);
  padding: clamp(.9rem, 2vw, 1.35rem);
}

.aa-product-detail-shell {
  max-width: 760px;
}

.aa-detail-image {
  overflow: hidden;
  aspect-ratio: auto;
  align-self: center;
  height: 72%;
  min-height: 100px;
  border-radius: 8px;
  border-color: rgba(182, 146, 75, .2);
  box-shadow: none;
}

.aa-detail-image > div {
  height: 100%;
  padding: .55rem;
  background: rgba(255, 253, 248, .42);
}

.aa-detail-image img {
  border-radius: 5px;
  object-fit: cover;
}

.aa-product-return-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: .85rem;
  padding: .58rem .15rem;
  border: 1px solid rgba(182, 146, 75, .38);
  border-width: 1px 0 0;
  background: transparent;
  color: #3a2c1e !important;
  font-family: "Times New Roman", Times, serif;
  font-size: .98rem;
  font-style: italic;
  letter-spacing: .02em;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.aa-product-return-link:hover {
  border-color: rgba(133, 96, 47, .72);
  background: transparent;
  color: #17130e !important;
  transform: translateY(-1px);
}

.aa-product-side-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-top: .35rem;
}

.aa-product-side-logo img {
  width: min(142px, 62%);
  height: auto;
  opacity: .48;
  filter: sepia(.18) saturate(1.1) contrast(1.05);
}

.aa-detail-panel {
  position: relative;
  min-height: 285px;
  overflow: visible;
  border-left: 1px solid rgba(182, 146, 75, .18);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .72), rgba(255, 253, 248, .46));
}

.aa-detail-panel::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 54px;
  height: 1px;
  background: rgba(95, 68, 36, .34);
}

.aa-detail-panel h1 {
  margin: .35rem 0 .6rem;
  color: #17130e;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  font-weight: 400;
  line-height: .98;
}

.aa-detail-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-bottom: .95rem;
}

.aa-detail-price-row p {
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
}

.aa-stock-badge {
  border: 1px solid rgba(77, 118, 72, .28);
  background: rgba(245, 250, 241, .72);
  color: #4c7648;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  padding: .42rem .55rem;
  text-transform: uppercase;
}

.aa-stock-badge.warning {
  border-color: rgba(169, 138, 72, .34);
  background: rgba(251, 243, 225, .78);
  color: #5f4424;
}

.aa-stock-badge.danger {
  border-color: rgba(159, 47, 47, .24);
  background: rgba(255, 238, 236, .78);
  color: #9f2f2f;
}

.aa-detail-description p {
  margin-bottom: 1rem;
  color: #5f574d !important;
  font-family: "Times New Roman", Times, serif;
  font-size: .84rem;
  line-height: 1.4;
}

.aa-field-label {
  display: block;
  margin-bottom: 1rem;
  color: #211b15 !important;
  font-family: "Times New Roman", Times, serif;
  font-size: .88rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
}

.aa-size-option {
  border: 1px solid rgba(182, 146, 75, .28) !important;
  background: rgba(255, 253, 248, .82);
  color: #211b15 !important;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Times New Roman", Times, serif;
  font-size: .92rem;
  min-width: 3.4rem;
  height: 2.55rem;
  cursor: pointer;
}

.aa-size-option:focus-within {
  outline: 2px solid #7a5d22;
  outline-offset: 3px;
}

.aa-size-option:hover,
.aa-size-option.active {
  border-color: rgba(122, 93, 34, .84) !important;
  background: #efe4cc !important;
  color: #17130e !important;
}

.aa-size-option.is-disabled {
  opacity: .38;
  cursor: not-allowed;
  text-decoration: line-through;
}

.aa-size-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.aa-size-fieldset {
  min-width: 0;
  border: 0;
  padding: 0;
}

.aa-size-head .aa-field-label {
  margin-bottom: 0;
}

.aa-size-guide-toggle {
  border-bottom: 1px solid rgba(169, 138, 72, .38);
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: .82rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: none;
}

.aa-size-guide-panel {
  margin-top: .75rem;
  border: 1px solid rgba(182, 146, 75, .22);
  background: rgba(255, 253, 248, .68);
  color: #5f574d;
  font-family: "Times New Roman", Times, serif;
  padding: .7rem .8rem;
  font-size: .8rem;
  line-height: 1.45;
}

.aa-micro-note {
  margin-bottom: 1rem;
  color: #756b5f !important;
  font-size: .72rem;
  text-align: center;
}

.aa-detail-benefits {
  display: grid;
  gap: .55rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(182, 146, 75, .2);
}

.aa-detail-benefits div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: .75rem;
}

.aa-detail-benefits span {
  color: #5f4424;
  font-size: .82rem;
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
}

.aa-detail-benefits p {
  color: #211b15 !important;
  font-family: "Times New Roman", Times, serif;
  font-size: .86rem;
  line-height: 1.42;
}

.aa-mobile-buy-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(182, 146, 75, .32);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 18px 44px rgba(64, 49, 28, .18);
  padding: .75rem .85rem;
}

.aa-mobile-buy-bar div {
  display: grid;
  min-width: 0;
}

.aa-mobile-buy-bar span {
  overflow: hidden;
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: .95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aa-mobile-buy-bar strong {
  color: #8c7a5e;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.aa-mobile-buy-bar button {
  border: 1px solid #211b15;
  background: #211b15;
  color: #fffdf8;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  padding: .75rem 1rem;
  text-transform: uppercase;
}

.aa-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-top: 1.4rem;
}

.aa-trust-chip {
  border: 1px solid rgba(182, 146, 75, .26);
  background: rgba(255, 253, 248, .76);
  color: #68583f;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .65rem .85rem;
  text-transform: uppercase;
}

.aa-cart-empty {
  position: relative;
  overflow: hidden;
}

.aa-cart-busy {
  opacity: .7;
  pointer-events: none;
}

.aa-cart-empty h2 {
  color: #17130e;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

.aa-cart-empty p {
  color: #61594f !important;
  margin-bottom: 2rem;
}

body.ivory .aa-cart-image {
  background: linear-gradient(145deg, #fffaf0, #efe4cc);
  border-color: rgba(182, 146, 75, .24);
}

.aa-cart-product-name {
  color: #17130e !important;
  text-decoration: none;
}

.aa-cart-product-name:hover {
  color: #7a5d22 !important;
}

.aa-cart-meta {
  color: #8c7a5e !important;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  margin-top: .55rem;
  text-transform: uppercase;
}

.aa-cart-price {
  color: #211b15 !important;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.35rem;
  margin-top: .75rem;
}

.aa-cart-price.large {
  font-size: 1.65rem;
}

.aa-cart-line-actions {
  border-top: 1px solid rgba(182, 146, 75, .2);
}

.qty-display {
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.25rem;
}

body.ivory .aa-qty-button {
  border-color: rgba(182, 146, 75, .34);
  background: rgba(255, 253, 248, .8);
  color: #8a6b2c;
}

body.ivory .aa-qty-button:hover {
  border-color: rgba(169, 138, 72, .8);
  background: #efe4cc;
  color: #211b15;
}

.aa-summary-card h2,
.aa-checkout-title h2 {
  color: #17130e;
  font-family: "Times New Roman", Times, serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.aa-summary-lines,
.aa-summary-products {
  border-bottom: 1px solid rgba(182, 146, 75, .2);
}

.aa-summary-lines div,
.aa-summary-products div {
  color: #61594f;
}

.aa-summary-products p {
  color: #17130e !important;
}

.aa-summary-products span {
  display: block;
  margin-top: .25rem;
  color: #8c7a5e;
}

.aa-summary-products strong {
  color: #211b15;
  font-weight: 400;
  white-space: nowrap;
}

.aa-summary-total {
  color: #17130e;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.aa-summary-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(182, 146, 75, .2);
  color: #756b5f !important;
  font-size: .78rem;
  line-height: 1.7;
  text-align: center;
}

.aa-secondary-action {
  color: #6b6258 !important;
}

.aa-secondary-action:hover {
  color: #7a5d22 !important;
}

.aa-contact-section {
  background:
    linear-gradient(180deg, #fbf8f1 0%, #f1eadc 100%),
    repeating-linear-gradient(90deg, rgba(182, 146, 75, .06) 0 1px, transparent 1px 56px);
  border-top: 1px solid rgba(20, 17, 13, .08);
}

.aa-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, .74fr);
  gap: clamp(1.5rem, 4.5vw, 4rem);
  align-items: start;
}

.aa-contact-copy h2 {
  max-width: 560px;
  color: #17130e;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  font-weight: 400;
  line-height: .9;
}

.aa-contact-copy > p {
  max-width: 560px;
  margin-top: 1rem;
  color: #5f574d !important;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem;
  line-height: 1.55;
}

.aa-contact-options {
  display: grid;
  gap: .65rem;
  max-width: 480px;
  margin-top: 1.5rem;
}

.aa-contact-options a {
  display: grid;
  gap: .25rem;
  border: 1px solid rgba(182, 146, 75, .24);
  background: rgba(255, 253, 248, .68);
  color: #211b15 !important;
  padding: .82rem 1rem;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.aa-contact-options a:hover {
  background: rgba(239, 228, 204, .75);
  border-color: rgba(169, 138, 72, .64);
  transform: translateY(-1px);
}

.aa-contact-options span,
.aa-newsletter-mini label,
.aa-contact-form label {
  color: #8c7a5e;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.aa-contact-email {
  margin-top: 1.35rem !important;
  color: #5f574d !important;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.05rem !important;
  font-style: italic;
}

.aa-contact-email a {
  color: #211b15 !important;
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid rgba(182, 146, 75, .45);
}

.aa-newsletter-mini {
  max-width: 480px;
  margin-top: 1.4rem;
}

.aa-newsletter-mini label {
  display: inline-block;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.aa-newsletter-mini div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .7rem;
  margin-top: .7rem;
}

.aa-newsletter-mini input,
.aa-contact-form input,
.aa-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(182, 146, 75, .25);
  background: rgba(255, 253, 248, .78);
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: .95rem;
  padding: .72rem .85rem;
  transition: border-color .2s ease, background .2s ease;
}

.aa-newsletter-mini input:focus,
.aa-contact-form input:focus,
.aa-contact-form textarea:focus {
  outline: 2px solid rgba(169, 138, 72, .85);
  outline-offset: 3px;
  background: #fffdf8;
  border-color: rgba(169, 138, 72, .78);
}

.aa-newsletter-mini button {
  border: 1px solid rgba(33, 27, 21, .95);
  background: #211b15;
  color: #fffdf8;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  padding: 0 1.25rem;
  text-transform: uppercase;
}

.aa-contact-form {
  display: grid;
  gap: .75rem;
  max-width: 680px;
  margin-left: auto;
  padding: clamp(1rem, 2.2vw, 1.55rem);
}

.aa-contact-form textarea {
  min-height: 128px;
}

.aa-contact-form button {
  padding: .9rem 1.15rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.aa-form-status {
  min-height: 1.4rem;
  color: #5f574d !important;
  font-size: .92rem;
}

.aa-form-status.success {
  color: #4c7648 !important;
}

.aa-form-status.error {
  color: #9f2f2f !important;
}

.aa-policy-card {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: #5f574d;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.08rem;
  line-height: 1.7;
}

.aa-policy-card a {
  color: #211b15 !important;
  border-bottom: 1px solid rgba(182, 146, 75, .45);
  text-decoration: none;
}

.aa-toast {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 100;
  max-width: min(360px, calc(100vw - 2rem));
  border: 1px solid rgba(182, 146, 75, .35);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 18px 44px rgba(64, 49, 28, .16);
  color: #211b15;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
  line-height: 1.45;
  padding: .9rem 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}

.aa-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.aa-toast.success {
  border-color: rgba(77, 118, 72, .28);
}

.aa-toast.error {
  border-color: rgba(159, 47, 47, .28);
  color: #8f2929;
}

.aa-cart-count-pulse {
  animation: aaCartPulse .42s ease both;
}

.aa-cart-busy {
  opacity: .62;
  pointer-events: none;
  transform: scale(.995);
  transition: opacity .18s ease, transform .18s ease;
}

.aa-qty-updated {
  animation: aaQtyFlash .45s ease both;
}

@keyframes aaCartPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}

@keyframes aaQtyFlash {
  0%, 100% {
    color: #211b15;
  }
  50% {
    color: #7a5d22;
  }
}

.aa-qty-button {
  border: 1px solid rgba(216, 193, 151, .28);
  color: #d8c197;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.aa-qty-button:hover {
  border-color: #d8c197;
  background: rgba(216, 193, 151, .08);
  color: white;
}

@media (max-width: 640px) {
  .aa-site-header-inner {
    min-height: 60px;
    grid-template-columns: 1fr auto;
  }

  .aa-trust-strip {
    display: none;
  }

  .aa-logo {
    height: 36px;
  }

  .aa-wordmark {
    font-size: 14px;
    letter-spacing: .14em;
  }

  .aa-cart-link {
    min-height: 36px;
    width: 36px;
  }

  .aa-cart-label {
    display: none;
  }

  .aa-hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 1.8rem;
  }

  .aa-hero::before {
    display: none;
  }

  .aa-atelier-entrance {
    text-align: center;
  }

  .aa-hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .aa-entrance-copy {
    justify-items: center;
  }

  .aa-entrance-title {
    font-size: clamp(2.85rem, 16vw, 4.4rem);
    line-height: .86;
  }

  .aa-entrance-rule {
    margin-bottom: .8rem;
  }

  .aa-entrance-kicker,
  .aa-entrance-subtitle,
  .aa-entrance-text,
  .aa-entrance-actions {
    margin-top: .5rem;
  }

  .aa-entrance-actions {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
  }

  .aa-entrance-actions span {
    line-height: 1.7;
  }

  .aa-signature-panel {
    justify-content: center;
    order: -1;
  }

  .aa-signature-panel::before {
    display: none;
  }

  .aa-signature-card {
    width: min(78vw, 310px);
    aspect-ratio: 1;
  }

  .aa-signature-copy {
    bottom: 1.35rem;
    left: 1.35rem;
    right: 1.35rem;
  }

  .aa-signature-line {
    left: 1.35rem;
    right: 1.35rem;
  }

  .aa-signature-line-bottom {
    bottom: 5.4rem;
  }

  .aa-meta-grid {
    grid-template-columns: 1fr;
  }

  .aa-product-grid {
    grid-template-columns: 1fr;
  }

  .aa-detail-layout {
    grid-template-columns: 1fr;
  }

  .aa-contact-grid {
    grid-template-columns: 1fr;
  }

  .aa-newsletter-mini div {
    grid-template-columns: 1fr;
  }

  .aa-newsletter-mini button {
    min-height: 48px;
  }

  .aa-detail-benefits div {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .aa-category-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .4rem;
  }

  .aa-shop-sort {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .aa-category-chip {
    white-space: nowrap;
  }

  .aa-story-grid {
    grid-template-columns: 1fr;
  }

  .aa-story-title {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .aa-meta-item {
    border-right: 0;
    border-bottom: 1px solid rgba(216, 193, 151, .16);
  }

  .aa-meta-item:last-child {
    border-bottom: 0;
  }

  .aa-mobile-buy-bar {
    display: flex;
  }

  .aa-product-detail-page {
    padding-bottom: 6.5rem;
  }
}

body.ivory .gradient-text {
  background: linear-gradient(135deg, #211b15 0%, #6d6257 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1100px) {
  .aa-detail-layout {
    grid-template-columns: minmax(250px, 340px) minmax(300px, 400px);
    gap: 1.4rem;
  }

  .aa-detail-panel h1 {
    font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  }
}

@media (max-width: 820px) {
  .aa-detail-layout {
    grid-template-columns: 1fr;
  }

  .aa-detail-panel {
    position: static !important;
    max-height: none;
    min-height: 0;
    overflow: visible;
    border-left: 0;
  }

  .aa-detail-image {
    max-height: none;
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .aa-detail-image > div {
    height: 100%;
  }

  .aa-product-showcase {
    padding: .8rem;
  }

  .aa-summary-card {
    position: static !important;
  }
}

@media (max-width: 640px) {
  .aa-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .aa-cart-item {
    padding: 1rem !important;
  }

  .aa-cart-line-actions,
  .aa-summary-total {
    text-align: left;
  }

  .aa-checkout-title {
    align-items: flex-start;
  }

  .aa-checkout-title h2,
  .aa-summary-card h2 {
    font-size: 1.8rem;
  }

  .aa-form-field {
    min-height: 48px;
  }
}

/* Animations */
@keyframes fadeInUp { 
  from {
    opacity: 0;
    transform: translateY(30px);
  } 
  to {
    opacity: 1;
    transform: translateY(0);
  } 
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-up { 
  animation: fadeInUp .8s ease forwards;
}

.animate-slide-in {
  animation: slideIn 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.7s ease-out forwards;
}

/* Animation delays */
.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }
.delay-400 { animation-delay: 0.4s; opacity: 0; }
.delay-500 { animation-delay: 0.5s; opacity: 0; }
.delay-600 { animation-delay: 0.6s; opacity: 0; }

/* Product cards */
.product-card { 
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover { 
  transform: translateY(-8px);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-image {
  transition: transform 0.5s ease;
}

/* Size buttons */
.size-btn.active {
  border-color: rgba(122, 93, 34, .84) !important;
  background-color: #efe4cc !important;
  color: #17130e !important;
}

body.ivory .size-btn.active {
  border-color: rgba(122, 93, 34, .84) !important;
  background-color: #efe4cc !important;
  color: #17130e !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* View transitions */
@view-transition { 
  navigation: auto; 
}
