/** Shopify CDN: Minification failed

Line 200:1 Expected identifier but found "{"
Line 200:2 Unexpected "{"
Line 200:17 Expected ":"
Line 200:21 Unexpected "{"
Line 607:1 Expected identifier but found "{"
Line 607:2 Unexpected "{"
Line 607:17 Expected ":"
Line 607:21 Unexpected "{"
Line 1338:1 Expected identifier but found "{"
Line 1338:2 Unexpected "{"
... and 31 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0) */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    padding: 4rem 0;
  }

  .error-404__container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
  }

  .error-404__icon {
    color: var(--color-border-dark);
    margin-bottom: 2rem;
  }

  .error-404__title {
    font-family: var(--font-family-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0 0 1rem 0;
  }

  .error-404__message {
    font-family: var(--font-family-primary);
    font-size: 1.1rem;
    color: var(--color-foreground-light);
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
  }

  .error-404__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

  .error-404__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-family-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .error-404__btn--primary {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  .error-404__btn--primary:hover {
    background: var(--color-accent);
  }

  .error-404__btn--secondary {
    background: transparent;
    color: var(--color-foreground);
    border: 1px solid var(--color-foreground);
  }

  .error-404__btn--secondary:hover {
    background: var(--color-foreground);
    color: var(--color-background);
  }

  .error-404__search {
    margin-bottom: 2.5rem;
  }

  .error-404__search-label {
    font-size: 0.875rem;
    color: var(--color-foreground-light);
    margin: 0 0 1rem 0;
  }

  .error-404__search-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease;
  }

  .error-404__search-form:focus-within {
    border-color: var(--color-foreground);
  }

  .error-404__search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 0.95rem;
    font-family: var(--font-family-primary);
    background: transparent;
    color: var(--color-foreground);
    outline: none;
  }

  .error-404__search-input::placeholder {
    color: var(--color-foreground-lighter);
  }

  .error-404__search-btn {
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: var(--color-foreground);
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .error-404__search-btn:hover {
    color: var(--color-accent);
  }

  .error-404__links-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-foreground-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    font-family: var(--font-family-accent);
  }

  .error-404__links-list {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .error-404__links-list a {
    color: var(--color-foreground);
    text-decoration: none;
    font-size: 0.9rem;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
  }

  .error-404__links-list a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
  }

  @media (max-width: 480px) {
    .error-404__title {
      font-size: 2.25rem;
    }

    .error-404__actions {
      flex-direction: column;
      align-items: center;
    }

    .error-404__btn {
      width: 100%;
    }
  }
/* END_SECTION:404 */

/* START_SECTION:about (INDEX:1) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Hero */
.about-hero {
  margin-bottom: 4rem;
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-foreground);
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-foreground, #666);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-hero-image {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Sections */
.about-section {
  margin-bottom: 4rem;
}

.about-section:last-child {
  margin-bottom: 0;
}

.about-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-foreground);
}

.about-section-description {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Story */
.about-story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: var(--color-foreground);
}

.about-story-text h3:first-child {
  margin-top: 0;
}

.about-story-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
}

.about-story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-story-img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Values */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary, var(--color-accent));
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-primary, var(--color-accent));
  color: white;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-foreground);
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-foreground, #666);
  margin: 0;
}

/* About Team */
.about-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member-image {
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem auto;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.team-member-role {
  font-size: 1rem;
  color: var(--color-primary, var(--color-accent));
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-member-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-foreground, #666);
  margin-bottom: 1rem;
}

.team-member-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-background-hover, #f5f5f5);
  color: var(--color-foreground, #666);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.team-member-social:hover {
  background: var(--color-primary, var(--color-accent));
  color: white;
  transform: scale(1.1);
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 3rem 2rem;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary, var(--color-accent));
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  font-weight: 500;
}

/* About CTA */
.about-cta {
  background: var(--color-primary, var(--color-accent));
  color: white;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}

.about-cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.about-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn--primary {
  background: white;
  color: var(--color-primary, var(--color-accent));
}

.btn--primary:hover {
  background: var(--color-background-hover, #f5f5f5);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn--secondary:hover {
  background: white;
  color: var(--color-primary, var(--color-accent));
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-width {
    padding: 0 15px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-section-title {
    font-size: 2rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-team {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1rem;
  }

  .about-cta {
    padding: 2rem 1rem;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2rem;
  }

  .about-section-title {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
/* END_SECTION:about */

/* START_SECTION:account (INDEX:2) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.account-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Account Header */
.account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.account-header__info {
  flex: 1;
}

.account-title {
  font-family: var(--font-family-secondary, inherit);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--color-foreground);
}

.account-email {
  font-family: var(--font-family-primary, inherit);
  font-size: 1rem;
  color: var(--color-foreground);
  opacity: 0.7;
  margin: 0;
}

.account-logout {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-family-primary, inherit);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--color-foreground, #111);
  color: var(--color-background, #fff);
  border: 1px solid var(--color-foreground, #111);
}

.btn--primary:hover {
  opacity: 0.85;
}

.btn--outline {
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-border, #e5e5e5);
}

.btn--outline:hover {
  background: var(--color-foreground);
  color: var(--color-background);
}

/* Account Content */
.account-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Account Sections */
.account-section__title {
  font-family: var(--font-family-accent, var(--font-family-secondary, inherit));
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5rem 0;
  color: var(--color-foreground);
}

/* Orders Table */
.orders-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-family-primary, inherit);
}

.orders-table thead th {
  text-align: left;
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-foreground);
  opacity: 0.6;
  border-bottom: 2px solid var(--color-border, #e5e5e5);
}

.orders-table tbody td {
  padding: 1rem;
  font-size: 0.95rem;
  color: var(--color-foreground);
  border-bottom: 1px solid var(--color-border, #e5e5e5);
  vertical-align: middle;
}

.orders-table tbody tr:hover {
  background: var(--color-foreground);
  background: rgba(0, 0, 0, 0.02);
}

.order-link {
  color: var(--color-foreground);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.order-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}

.status-badge--paid,
.status-badge--fulfilled {
  background: rgba(40, 167, 69, 0.1);
  color: #1a7f37;
}

.status-badge--pending,
.status-badge--authorized {
  background: rgba(255, 193, 7, 0.15);
  color: #946300;
}

.status-badge--unfulfilled,
.status-badge--partial {
  background: rgba(255, 152, 0, 0.12);
  color: #b45309;
}

.status-badge--refunded,
.status-badge--voided {
  background: rgba(108, 117, 125, 0.1);
  color: var(--color-foreground-light);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  border: 1px dashed var(--color-border, #e5e5e5);
  border-radius: 12px;
}

.empty-state__message {
  font-family: var(--font-family-primary, inherit);
  font-size: 1.05rem;
  color: var(--color-foreground);
  opacity: 0.6;
  margin: 0 0 1.5rem 0;
}

/* Address Card */
.address-card {
  padding: 1.5rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  margin-bottom: 1rem;
  background: var(--color-background);
}

.address-card__summary {
  font-family: var(--font-family-primary, inherit);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-foreground);
  margin: 0;
}

.address-manage-link {
  margin-top: 0.5rem;
}

/* Responsive: stack table on mobile */
@media (max-width: 768px) {
  .account-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .account-title {
    font-size: 2rem;
  }

  .orders-table thead {
    display: none;
  }

  .orders-table tbody tr {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border, #e5e5e5);
  }

  .orders-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 0.9rem;
  }

  .orders-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    margin-right: 1rem;
  }

  .account-page {
    padding: 0 15px;
  }
}
/* END_SECTION:account */

/* START_SECTION:activate-account (INDEX:3) */
.section-activate-account {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.activate-page-width {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.activate-header {
  margin-bottom: 3rem;
  text-align: center;
}

.activate-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
  font-family: var(--font-family-primary, inherit);
}

.activate-subtitle {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin: 0;
  line-height: 1.6;
  font-family: var(--font-family-secondary, inherit);
}

/* Container */
.activate-container {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.activate-form-wrapper {
  padding: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
  font-family: var(--font-family-secondary, inherit);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--color-background);
  color: var(--color-foreground);
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary, var(--color-accent));
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/* Buttons */
.form-actions {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  width: 100%;
  font-family: var(--font-family-accent, inherit);
}

.btn--primary {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

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

/* Footer */
.form-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.activate-decline-link {
  background: none;
  border: none;
  font-size: 0.95rem;
  color: var(--color-foreground, #666);
  text-decoration: underline;
  cursor: pointer;
  font-family: var(--font-family-secondary, inherit);
  transition: color 0.2s ease;
}

.activate-decline-link:hover {
  color: var(--color-error, #ff4444);
}

/* Error Messages */
.form-errors {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-error, #ff4444);
  color: white;
}

.error-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.error-content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.error-content ul {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  padding-left: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .activate-page-width {
    padding: 0 15px;
  }

  .activate-title {
    font-size: 2rem;
  }

  .activate-form-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .activate-form-wrapper {
    padding: 1rem;
  }
}
/* END_SECTION:activate-account */

/* START_SECTION:addresses (INDEX:4) */
.section-addresses {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.addresses-page-width {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Back Link */
.addresses-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-primary, var(--color-accent));
  text-decoration: none;
  margin-bottom: 2rem;
  font-family: var(--font-family-secondary, inherit);
  transition: color 0.2s ease;
}

.addresses-back-link:hover {
  color: var(--color-primary-hover, var(--color-accent-hover));
  text-decoration: underline;
}

/* Header */
.addresses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.addresses-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-foreground);
  font-family: var(--font-family-primary, inherit);
}

.addresses-add-btn {
  width: auto;
  padding: 0.75rem 1.5rem;
  min-height: auto;
  font-family: var(--font-family-accent, inherit);
}

/* Cards */
.addresses-card {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.addresses-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
  font-family: var(--font-family-primary, inherit);
}

/* Default Badge */
.addresses-default-badge {
  display: inline-block;
  background: var(--color-primary, var(--color-accent));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-family: var(--font-family-accent, inherit);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Address Grid */
.addresses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.addresses-formatted {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-foreground);
  margin: 0 0 1.5rem 0;
  font-family: var(--font-family-secondary, inherit);
}

/* Card Actions */
.addresses-card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.addresses-default-form {
  display: inline;
  margin: 0;
  padding: 0;
}

/* Form Container */
.addresses-form-container {
  margin-bottom: 2rem;
}

/* Form Styles (matching login.liquid) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
  font-family: var(--font-family-secondary, inherit);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--color-background);
  color: var(--color-foreground);
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}

select.form-input {
  appearance: auto;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary, var(--color-accent));
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  width: 100%;
  font-family: var(--font-family-accent, inherit);
}

.btn--primary {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

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

.btn--secondary {
  background: var(--color-background-hover, var(--color-background-hover));
  color: var(--color-foreground);
  border: 1px solid var(--color-border, #e5e5e5);
}

.btn--secondary:hover {
  background: var(--color-border, #e5e5e5);
}

.btn--danger {
  background: var(--color-error, #ff4444);
  color: white;
}

.btn--danger:hover {
  opacity: 0.9;
}

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

.btn--outline:hover {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  min-height: auto;
  width: auto;
}

.address-form-actions {
  display: flex;
  gap: 1rem;
}

.address-form-actions .btn {
  width: auto;
}

/* Empty State */
.addresses-empty {
  text-align: center;
  padding: 3rem;
  color: var(--color-foreground, #666);
  font-family: var(--font-family-secondary, inherit);
}

/* Responsive */
@media (max-width: 768px) {
  .addresses-grid {
    grid-template-columns: 1fr;
  }

  .addresses-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .addresses-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .addresses-card {
    padding: 1.5rem;
  }

  .address-form-actions {
    flex-direction: column;
  }

  .address-form-actions .btn {
    width: 100%;
  }
}
/* END_SECTION:addresses */

/* START_SECTION:cart (INDEX:7) */
/* Cache bust: 2024-01-15 */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  background-color: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 15px;
  margin-bottom: 2rem;
}

/* Cart Header - Luxury Fragrance Theme */
.cart-header {
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.cart-header::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.3), transparent);
}

.cart-header__content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2rem !important;
  margin-bottom: 2rem !important;
  width: 100% !important;
}

.cart-header__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 72px !important;
  height: 72px !important;
  background: linear-gradient(135deg, #8B4513, #D2691E, #CD853F) !important;
  border-radius: 50% !important;
  color: #FFF8DC !important;
  box-shadow: 
    0 8px 32px rgba(139, 69, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  flex: 0 0 auto !important;
}

.cart-header__icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.cart-header__icon:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 
    0 12px 40px rgba(139, 69, 19, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cart-header__icon:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.cart-header__text {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.75rem !important;
  flex: 0 0 auto !important;
}

.cart-title {
  font-size: 3rem;
  font-weight: 300;
  margin: 0;
  color: #2C1810;
  font-family: var(--font-family-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  line-height: 1.1;
}

.cart-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #8B4513, transparent);
}

.cart-item-count {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #FFF8DC, #F5F5DC);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(139, 69, 19, 0.2);
  box-shadow: 
    0 4px 16px rgba(139, 69, 19, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.cart-item-count::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
  transition: left 0.6s ease;
}

.cart-item-count:hover::before {
  left: 100%;
}

.cart-item-count__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8B4513, #A0522D);
  color: #FFF8DC;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 
    0 2px 8px rgba(139, 69, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-family: var(--font-family-secondary);
}

.cart-item-count__label {
  font-size: 1.1rem;
  font-weight: 400;
  color: #5D4037;
  font-family: var(--font-family-secondary);
  letter-spacing: 0.5px;
}

.cart-header__divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8B4513, #D2691E, #8B4513, transparent);
  margin: 0 auto;
  border-radius: 1px;
  position: relative;
}

.cart-header__divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #8B4513;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #FFF8DC;
}

/* Cart Items */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.cart-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--color-border-hover, #d0d0d0);
}

.cart-item__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.cart-item__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.cart-item__title a {
  color: var(--color-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cart-item__title a:hover {
  color: var(--color-primary, var(--color-accent));
}

.cart-item__variant,
.cart-item__selling-plan {
  font-size: 0.9rem;
  color: var(--color-foreground, #666);
  margin: 0;
}

.cart-item__properties {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-item__property {
  font-size: 0.85rem;
  margin: 0;
}

.cart-item__property-name {
  font-weight: 500;
}

.cart-item__price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-item__price-original {
  font-size: 0.9rem;
  color: var(--color-foreground, #999);
  text-decoration: line-through;
}

.cart-item__price-final {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-foreground);
}

/* Quantity Input */
.cart-item__quantity {
  display: flex;
  align-items: center;
}

.quantity-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-background);
}

.quantity-input__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-background);
  color: var(--color-foreground);
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-input__button:hover {
  background: var(--color-background-hover, #f5f5f5);
}

.quantity-input__button:active {
  transform: scale(0.95);
}

.quantity-input__field {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  background: var(--color-background);
  color: var(--color-foreground);
}

.quantity-input__field:focus {
  outline: none;
  background: var(--color-background-focus, var(--color-background-hover));
}

/* Cart Item Total */
.cart-item__total {
  display: flex;
  align-items: center;
  min-width: 100px;
  justify-content: flex-end;
}

.cart-item__total-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-foreground);
}

/* Remove Button */
.cart-item__remove {
  display: flex;
  align-items: center;
}

.cart-item__remove-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-background);
  color: var(--color-foreground, #999);
  text-decoration: none;
  transition: all 0.2s ease;
}

.cart-item__remove-link:hover {
  background: var(--color-error, #ff4444);
  color: white;
  transform: scale(1.1);
}

/* Cart Footer */
.cart-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.cart-summary__row--total {
  border-top: 2px solid var(--color-border, #e5e5e5);
  padding-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-summary__row--discount {
  color: var(--color-success, var(--color-success));
}

.cart-summary__label {
  font-weight: 500;
}

.cart-summary__value {
  font-weight: 600;
}

.cart-summary__note {
  font-size: 0.9rem;
  color: var(--color-foreground, #666);
  margin: 0;
  font-style: italic;
}

/* Cart Actions */
.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 200px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn--primary {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

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

.btn--secondary {
  background: var(--color-background);
  color: var(--color-foreground);
  border: 1px solid var(--color-border, #e5e5e5);
}

.btn--secondary:hover {
  background: var(--color-background-hover, #f5f5f5);
  border-color: var(--color-border-hover, #d0d0d0);
}

/* Empty Cart */
.cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.cart-empty__content {
  max-width: 400px;
}

.cart-empty__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-foreground);
}

.cart-empty__text {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Utility Classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-width {
    padding: 1.5rem 1rem;
    margin-top: 15px;
    margin-bottom: 1rem;
    border-radius: 8px;
  }

  .cart-header__content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .cart-header__text {
    align-items: center;
    order: 2;
  }

  .cart-header__icon {
    width: 64px;
    height: 64px;
    order: 1;
  }

  .cart-title {
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 1.5px;
  }

  .cart-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .cart-item-count {
    padding: 0.6rem 1.2rem;
    order: 3;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    padding: 1rem;
  }

  .cart-item__image {
    grid-row: 1 / 3;
  }

  .cart-item__img {
    height: 80px;
  }

  .cart-item__details {
    grid-column: 2;
    grid-row: 1;
  }

  .cart-item__quantity {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .cart-item__total {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }

  .cart-item__remove {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
  }

  .cart-footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cart-actions {
    min-width: auto;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cart-item__image {
    grid-row: 1;
    justify-self: center;
    max-width: 120px;
  }

  .cart-item__details {
    grid-column: 1;
    grid-row: 2;
  }

  .cart-item__quantity {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .cart-item__total {
    grid-column: 1;
    grid-row: 4;
    justify-self: center;
  }

  .cart-item__remove {
    grid-column: 1;
    grid-row: 5;
    justify-self: center;
  }
}
/* END_SECTION:cart */

/* START_SECTION:checkout (INDEX:8) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Checkout Header */
.checkout-header {
  margin-bottom: 3rem;
  text-align: center;
}

.checkout-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.checkout-subtitle {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin: 0;
}

/* Checkout Container */
.checkout-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

/* Checkout Main */
.checkout-main {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
}

.checkout-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.checkout-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.checkout-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
}

/* Checkout Features */
.checkout-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.checkout-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.checkout-feature:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--color-border-hover, #d0d0d0);
}

.checkout-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary, var(--color-accent));
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.checkout-feature__content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--color-foreground);
}

.checkout-feature__content p {
  font-size: 0.95rem;
  color: var(--color-foreground, #666);
  margin: 0;
  line-height: 1.5;
}

.checkout-description {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--color-background);
  color: var(--color-foreground);
  transition: all 0.2s ease;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary, var(--color-accent));
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-actions {
  margin-top: 1rem;
}

/* Checkout Actions */
.checkout-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border, #e5e5e5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn--primary {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

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

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  min-height: 56px;
}

.checkout-submit {
  width: 100%;
}

/* Checkout Sidebar */
.checkout-sidebar {
  position: sticky;
  top: 2rem;
}

.order-summary {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
}

.order-summary__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
}

/* Order Items */
.order-items {
  margin-bottom: 2rem;
}

.order-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.order-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.order-item__image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.order-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.order-item__title {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
  color: var(--color-foreground);
}

.order-item__variant,
.order-item__quantity {
  font-size: 0.85rem;
  color: var(--color-foreground, #666);
  margin: 0;
}

.order-item__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-foreground);
  align-self: flex-start;
}

/* Order Summary Totals */
.order-summary__totals {
  margin-bottom: 2rem;
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.order-summary__row--total {
  border-top: 2px solid var(--color-border, #e5e5e5);
  padding-top: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.order-summary__row--discount {
  color: var(--color-success, var(--color-success));
}

.order-summary__label {
  font-weight: 500;
}

.order-summary__value {
  font-weight: 600;
}

/* Security Badge */
.order-summary__security {
  text-align: center;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--color-success, var(--color-success));
  color: white;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Empty Checkout */
.checkout-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}

.checkout-empty__content {
  max-width: 400px;
}

.checkout-empty__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-foreground);
}

.checkout-empty__text {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .checkout-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checkout-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-width {
    padding: 0 15px;
  }

  .checkout-title {
    font-size: 2rem;
  }

  .checkout-main {
    padding: 1.5rem;
  }

  .order-summary {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-container {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .checkout-main {
    padding: 1rem;
  }

  .order-summary {
    padding: 1rem;
  }

  .checkout-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .checkout-section__title {
    font-size: 1.3rem;
  }
}
/* END_SECTION:checkout */

/* START_SECTION:collection (INDEX:9) */
.collection-page {
    min-height: 100vh;
    background-color: var(--color-background-hover);
  }

  .collection-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .collection-page__header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
  }

  .collection-page__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-foreground-light);
    margin-bottom: 1rem;
  }

  .collection-page__breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
  }

  .collection-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 1rem 0;
  }

  .collection-page__description {
    font-size: 1.125rem;
    color: var(--color-foreground-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .collection-page__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .collection-page__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .collection-page__count {
    font-size: 1rem;
    color: var(--color-foreground-light);
    font-weight: 500;
  }


  .collection-page__content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* Compact Collection Search Styles */
  .collection-search-compact {
    position: relative;
  }

  .collection-search-compact__form {
    position: relative;
  }

  .collection-search-compact__input-wrapper {
    display: flex;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease;
    width: 280px;
  }

  .collection-search-compact__input-wrapper:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.25);
  }

  .collection-search-compact__input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: none;
    font-size: 0.875rem;
    background: transparent;
    outline: none;
  }

  .collection-search-compact__input::placeholder {
    color: var(--color-foreground-light);
  }

  .collection-search-compact__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background:rgb(0, 0, 0);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .collection-search-compact__button:hover {
    background: var(--color-accent-hover);
  }

  .collection-search-compact__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    background: var(--color-foreground-light);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .collection-search-compact__clear:hover {
    background: #5a6268;
  }

  /* Collection Sort Styles */
  .collection-sort {
    position: relative;
  }

  .collection-sort__select {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #495057;
    cursor: pointer;
    min-width: 160px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
  }

  .collection-sort__select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.25);
  }

  .collection-sort__select:hover {
    border-color: #adb5bd;
  }


  .collection-page__filters {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }

  .filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }

  .filters-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
  }

  .filters-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    padding: 0.25rem;
  }


  .filter-group {
    margin-bottom: 2rem;
  }

  .filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin: 0 0 1rem 0;
  }

  .price-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .price-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.875rem;
    text-align: center;
  }

  .price-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.25);
  }

  .price-separator {
    font-size: 0.875rem;
    color: var(--color-foreground-light);
    font-weight: 500;
  }

  .price-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--color-border);
    outline: none;
    -webkit-appearance: none;
  }

  .price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    cursor: pointer;
  }

  .price-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(0, 0, 0);
    cursor: pointer;
    border: none;
  }

  .price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--color-foreground-light);
  }

  .filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #495057;
  }

  .filter-option input[type="checkbox"] {
    display: none;
  }

  .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
  }

  .filter-option input[type="checkbox"]:checked + .checkmark {
    background-color:rgb(0, 0, 0);
    border-color:rgb(0, 0, 0);
  }

  .filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }


  .clear-filters-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-foreground-light);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .clear-filters-btn:hover {
    background-color: #5a6268;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    transition: grid-template-columns 0.3s ease;
  }

  /* Repositioning animation for products */
  .product-card.repositioning {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }


  .product-card {
    background: white;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
    position: relative;
    opacity: 1;
    transform: scale(1);
    display: flex;
    flex-direction: column;
  }

  .product-card:hover {
    transform: translateY(-4px) scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  /* Filtering animation states */
  .product-card.filtering-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
  }

  .product-card.filtering-in {
    opacity: 0;
    transform: scale(0.95);
    animation: filterIn 0.4s ease forwards;
  }

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


  .product-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }

  .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .product-card__image a {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: auto;
  }

  .primary-image {
    opacity: 1;
  }

  .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }

  /* Only swap images when a secondary image exists */
  .product-card:hover .has-secondary .primary-image {
    opacity: 0;
  }

  .product-card:hover .has-secondary .secondary-image {
    opacity: 1;
  }


  .product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .product-badge.sale {
    background-color: var(--color-error);
    color: white;
  }

  .product-badge.sold-out {
    background-color: var(--color-error);
    color: white;
  }

  .product-card__wishlist-icon {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
  }

  .product-card__wishlist-icon:hover {
    background-color: #ff6b6b;
    transform: scale(1.1);
  }

  .product-card__wishlist-icon:hover svg {
    color: white;
  }

  .product-card__content {
    padding: 0.75rem 1.5rem 0;
  }

  .product-card__details {
  }

  .product-card__vendor {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-foreground-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family-accent);
    font-weight: 500;
  }

  .product-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-family-secondary);
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card__title a {
    color: #212529;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .product-card__title a:hover {
    color: var(--color-accent);
  }

  .product-card__scent {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
  }

  .scent-label {
    font-size: 0.75rem;
    color: var(--color-foreground-light);
    font-weight: 500;
    font-family: var(--font-family-accent);
    letter-spacing: 0.3px;
  }

  .scent-value {
    font-size: 0.75rem;
    color: #495057;
    font-family: var(--font-family-primary);
    font-weight: 400;
  }

  .product-card__vendor-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .product-card__price {
    text-align: right;
    padding-top: 0.5rem;
  }

  .price-regular {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-family-primary);
    letter-spacing: 0.02em;
  }

  .price-compare {
    font-size: 0.875rem;
    color: #000000;
    text-decoration: line-through;
    margin-right: 0.375rem;
    font-family: var(--font-family-primary);
    font-weight: 400;
  }

  .price-sale {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-family-primary);
    letter-spacing: 0.02em;
  }

  .product-card__actions-bottom {
    display: flex;
    gap: 0.375rem;
    align-items: flex-end;
    padding: 0.75rem 1rem 1rem 1rem;
    margin-top: auto;
  }

  .product-card__btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 28px;
    flex: 1;
    justify-content: center;
    min-width: 0;
    font-family: var(--font-family-accent);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .product-card__btn svg {
    width: 10px;
    height: 10px;
  }

  .product-card__btn--cart {
    background-color: var(--color-success);
    color: white;
    font-weight: 600;
  }

  .product-card__btn--cart:hover {
    background-color: #218838;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  }

  .product-card__btn--cart:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(40, 167, 69, 0.3);
  }

  .product-card__btn--sold-out {
    background-color: #000000;
    color: white;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.8;
  }

  .product-card__btn--sold-out:hover {
    background-color: #000000;
    transform: none;
    box-shadow: none;
  }

  .no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .no-products h3 {
    font-size: 1.5rem;
    color: #212529;
    margin: 0 0 1rem 0;
  }

  .no-products p {
    color: var(--color-foreground-light);
    margin: 0 0 2rem 0;
  }

  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }

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

  .mobile-filters-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-foreground);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 50;
    transition: all 0.3s ease;
    font-family: var(--font-family-accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .mobile-filters-toggle:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
  }

  @media (max-width: 1024px) {
    .collection-page__content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .collection-page__controls {
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
    }

    .collection-search-compact__input-wrapper {
      width: 100%;
    }

    .collection-sort__select {
      min-width: 140px;
    }

    .collection-page__filters {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      z-index: 1000;
      transition: left 0.3s ease;
      border-radius: 0;
      max-height: none;
    }

    .collection-page__filters.active {
      left: 0;
    }

    .filters-close {
      display: block;
    }

    .mobile-filters-toggle {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  }

  @media (max-width: 768px) {
    .collection-page__container {
      padding: 0 1rem;
    }

    .collection-page__header {
      padding: 1.5rem 0;
    }

    .collection-page__title {
      font-size: 2rem;
    }

    .collection-page__meta {
      gap: 0.75rem;
    }

    .collection-page__count {
      display: none;
    }

    .collection-page__controls {
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
      width: 100%;
    }

    .collection-search-compact {
      flex: 1;
      min-width: 0;
    }

    .collection-search-compact__input-wrapper {
      width: 100%;
    }

    .collection-search-compact__input {
      padding: 0.5rem;
      font-size: 0.8rem;
    }

    .collection-sort {
      flex-shrink: 0;
    }

    .collection-sort__select {
      min-width: 0;
      width: auto;
      font-size: 0.8rem;
      padding: 0.5rem 0.5rem;
    }


    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .product-card__content {
      padding: 1rem;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:10) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact (INDEX:11) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contact Header */
.contact-header {
  margin-bottom: 3rem;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin: 0;
  line-height: 1.6;
}

/* Contact Container */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

/* Contact Form */
.contact-form-section {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.contact-form-description {
  font-size: 1rem;
  color: var(--color-foreground, #666);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--color-background);
  color: var(--color-foreground);
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary, var(--color-accent));
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 2rem;
}

/* Success/Error Messages */
.contact-form-success,
.contact-form-errors {
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-form-success {
  background: var(--color-success, var(--color-success));
  color: white;
}

.contact-form-errors {
  background: var(--color-error, #ff4444);
  color: white;
}

.success-icon,
.error-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.contact-form-success h3,
.contact-form-errors h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form-success p,
.contact-form-errors ul {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form-errors ul {
  padding-left: 1rem;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info,
.business-hours,
.social-links {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-title,
.business-hours-title,
.social-links-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
}

/* Contact Info Items */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary, var(--color-accent));
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--color-foreground);
}

.contact-info-content p {
  font-size: 0.95rem;
  color: var(--color-foreground, #666);
  margin: 0;
  line-height: 1.5;
}

.contact-info-content a {
  color: var(--color-primary, var(--color-accent));
  text-decoration: none;
}

.contact-info-content a:hover {
  text-decoration: underline;
}

/* Business Hours */
.business-hours-content {
  font-size: 0.95rem;
  color: var(--color-foreground, #666);
  line-height: 1.6;
}

/* Social Links */
.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-foreground);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--color-background-hover, #f5f5f5);
  border-color: var(--color-primary, var(--color-accent));
  transform: translateY(-1px);
}

.social-link span {
  font-weight: 500;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
}

.btn--primary {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

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

.contact-submit {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-width {
    padding: 0 15px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .contact-info,
  .business-hours,
  .social-links {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 1rem;
  }

  .contact-info,
  .business-hours,
  .social-links {
    padding: 1rem;
  }
}
/* END_SECTION:contact */

/* START_SECTION:custom-section (INDEX:12) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:customer-testimonial (INDEX:13) */
.customer-testimonial {
    background-color: var(--color-background);
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .customer-testimonial__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

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

  .customer-testimonial__text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground-light);
    margin: 0;
  }

  /* Responsive Design */
  @media (max-width: 480px) {
    .customer-testimonial__container {
      padding: 0 1rem;
    }

    .customer-testimonial__text {
      font-size: 0.75rem;
    }
  }
/* END_SECTION:customer-testimonial */

/* START_SECTION:decorative-text (INDEX:14) */
.decorative-text {
    padding: 2rem 0;
    background-color: var(--color-background);
    overflow: hidden;
  }

  .decorative-text__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .decorative-text__content {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
  }

  .decorative-text__item {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .decorative-text {
      padding: 1.5rem 0;
    }

    .decorative-text__content {
      gap: 1.5rem;
    }

    .decorative-text__item {
      font-size: 0.75rem;
    }
  }

  @media (max-width: 480px) {
    .decorative-text__container {
      padding: 0 1rem;
    }

    .decorative-text__content {
      gap: 1rem;
    }
  }
/* END_SECTION:decorative-text */

/* START_SECTION:faq (INDEX:15) */
.faq-page {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
  }

  .faq-page__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .faq-page__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .faq-page__title {
    font-family: var(--font-family-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0 0 1rem 0;
  }

  .faq-page__subtitle {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    color: var(--color-foreground-light);
    line-height: 1.6;
    margin: 0;
  }

  .faq-page__subtitle a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .faq-page__subtitle a:hover {
    color: var(--color-accent-hover);
  }

  .faq-page__category {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }

  .faq-page__category-title {
    font-family: var(--font-family-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-accent);
  }

  .faq-page__item {
    border-bottom: 1px solid var(--color-border);
  }

  .faq-page__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-family-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
    transition: color 0.2s ease;
  }

  .faq-page__question::-webkit-details-marker {
    display: none;
  }

  .faq-page__question:hover {
    color: var(--color-accent);
  }

  .faq-page__chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  details[open] .faq-page__chevron {
    transform: rotate(180deg);
  }

  .faq-page__answer {
    padding: 0 0 1.5rem 0;
    font-family: var(--font-family-primary);
    font-size: 0.95rem;
    color: var(--color-foreground-light);
    line-height: 1.7;
  }

  .faq-page__cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--color-background-hover);
    border-radius: 12px;
  }

  .faq-page__cta-title {
    font-family: var(--font-family-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0 0 0.75rem 0;
  }

  .faq-page__cta-text {
    font-family: var(--font-family-primary);
    font-size: 0.95rem;
    color: var(--color-foreground-light);
    margin: 0 0 1.5rem 0;
  }

  .faq-page__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--color-foreground);
    color: var(--color-background);
    font-family: var(--font-family-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .faq-page__cta-btn:hover {
    background: var(--color-accent);
  }

  @media (max-width: 768px) {
    .faq-page__title {
      font-size: 2rem;
    }

    .faq-page__container {
      padding: 0 1.5rem;
    }

    .faq-page__cta {
      padding: 2rem 1.5rem;
    }
  }
/* END_SECTION:faq */

/* START_SECTION:featured-categories (INDEX:16) */
.featured-categories {
    padding: 4rem 0;
    background-color: var(--color-background);
  }

  .featured-categories__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .featured-categories__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .featured-categories__subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-foreground-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
  }

  .featured-categories__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0;
  }

  .featured-categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }

  .featured-category {
    position: relative;
    background-color: var(--color-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .featured-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .featured-category__image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
  }

  .featured-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .featured-category__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background-hover);
    color: var(--color-foreground-light);
  }

  .featured-category:hover .featured-category__image img {
    transform: scale(1.05);
  }

  .featured-category__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .featured-category__badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
    margin-bottom: 0.5rem;
  }

  .featured-category__subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
  }

  .featured-category__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
  }

  .featured-category__description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
  }

  .featured-category__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--color-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
  }

  .featured-category__button:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .featured-categories {
      padding: 3rem 0;
    }

    .featured-categories__grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .featured-categories__title {
      font-size: 2rem;
    }

    .featured-category__content {
      padding: 1.5rem 1rem 1rem;
    }

    .featured-category__title {
      font-size: 1.25rem;
    }
  }

  @media (max-width: 480px) {
    .featured-categories__container {
      padding: 0 1rem;
    }

    .featured-categories__grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .featured-categories__title {
      font-size: 1.75rem;
    }
  }
/* END_SECTION:featured-categories */

/* START_SECTION:footer (INDEX:17) */
/* Footer Styles */
  .footer {
    background-color: #1a1a1a;
    border-top: none;
    margin-top: 4rem;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
  }

  .footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Footer Top Section */
  .footer__top {
    padding: 3rem 0 2rem;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

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

  /* Brand Section */
  .footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer__brand-name {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
  }

  .footer__logo img {
    height: 40px;
    width: auto;
  }

  .footer__description {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
  }

  /* Social Media */
  .footer__social {
    display: flex;
    gap: 1rem;
  }

  .footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
  }

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

  /* Section Titles */
  .footer__section-title {
    margin: 0 0 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
  }

  /* Links */
  .footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer__link-item {
    margin: 0;
  }

  .footer__link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
  }

  .footer__link:hover {
    color: var(--color-accent);
  }

  /* Newsletter */
  .footer__newsletter-text {
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .footer__newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .footer__newsletter-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: border-color 0.2s ease;
  }

  .footer__newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
  }

  .footer__newsletter-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-accent);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .footer__newsletter-button:hover {
    background-color: var(--color-accent-hover);
  }

  /* Footer Bottom Section */
  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer__copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
  }

  .footer__legal {
    display: flex;
    gap: 1.5rem;
  }

  .footer__legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }

  .footer__legal-link:hover {
    color: var(--color-accent);
  }

  /* Payment Icons */
  .footer__payment {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }

  .footer__payment-label {
    color: var(--color-foreground-light);
    font-size: 0.875rem;
    font-weight: 500;
  }

  .footer__payment-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .footer__payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 25px;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.25rem;
  }

  .footer__payment-icon svg {
    max-width: 100%;
    max-height: 100%;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .footer__top {
      padding: 2rem 0 1.5rem;
    }

    .footer__grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer__bottom-content {
      flex-direction: column;
      text-align: center;
    }

    .footer__legal {
      justify-content: center;
    }

    .footer__payment {
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer__social {
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .footer__container {
      padding: 0 1rem;
    }

    .footer__legal {
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer__payment-icons {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  /* Newsletter Messages */
  .footer__newsletter-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    text-align: center;
  }
  
  .footer__newsletter-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }
  
  .footer__newsletter-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:18) */
/* Header Styles */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .header__container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
  }

  /* Mobile Menu Toggle */
  .header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
  }

  .header__hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    position: relative;
  }

  .header__hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-foreground);
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .header__hamburger span:nth-child(1) {
    transform: translateY(0);
  }

  .header__hamburger span:nth-child(2) {
    transform: translateY(8px);
  }

  .header__hamburger span:nth-child(3) {
    transform: translateY(16px);
  }

  .header__mobile-toggle.active .header__hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .header__mobile-toggle.active .header__hamburger span:nth-child(2) {
    opacity: 0;
  }

  .header__mobile-toggle.active .header__hamburger span:nth-child(3) {
    transform: translateY(8px) rotate(-45deg);
  }

  /* Brand/Logo */
  .header__brand {
    display: flex;
    align-items: center;
  }

  .header__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-family-secondary);
    letter-spacing: -0.01em;
  }

  .header__title a {
    text-decoration: none;
    color: var(--color-foreground);
  }

  .header__logo img {
    height: auto;
    width: auto;
    max-height: 60px;
  }

  /* Navigation */
  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }

  .header__menu-item {
    position: relative;
  }

  .header__menu-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    text-decoration: none;
    color: var(--color-foreground);
    font-family: var(--font-family-accent);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
  }

  .header__menu-link:hover {
    color: var(--color-foreground-light, #555);
  }

  .header__dropdown-icon {
    transition: transform 0.2s ease;
  }

  .header__menu-item:hover .header__dropdown-icon {
    transform: rotate(180deg);
  }

  /* Dropdown Menu */
  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    min-width: 200px;
    z-index: 10;
  }

  .header__menu-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
  }

  .header__dropdown-item {
    margin: 0;
  }

  .header__dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--color-foreground);
    font-family: var(--font-family-primary);
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
  }

  .header__dropdown-link:hover {
    background-color: var(--color-background-hover);
  }


  /* Header Actions */
  .header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .header__action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    text-decoration: none;
    color: var(--color-foreground);
    border-radius: 6px;
    transition: background-color 0.2s ease;
  }

  .header__action:hover {
    background-color: var(--color-background-hover);
  }

  .header__action-text {
    font-family: var(--font-family-accent);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .header__cart-icon {
    position: relative;
  }

  .header__cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-error);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-primary);
    font-size: 0.75rem;
    font-weight: 600;
  }

  /* Wishlist icon */
  .header__action--wishlist {
    background: none;
    border: none;
    cursor: pointer;
  }

  .header__wishlist-icon {
    position: relative;
  }

  .header__wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-error);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-primary);
    font-size: 0.75rem;
    font-weight: 600;
  }

  /* Wishlist Drawer */
  .wishlist-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: var(--color-background);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  }

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

  .wishlist-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .wishlist-drawer__title {
    font-family: var(--font-family-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-foreground);
  }

  .wishlist-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground);
    padding: 0.25rem;
  }

  .wishlist-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
  }

  .wishlist-drawer__item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
  }

  .wishlist-drawer__item-image {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .wishlist-drawer__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wishlist-drawer__item-info {
    flex: 1;
    min-width: 0;
  }

  .wishlist-drawer__item-title {
    font-family: var(--font-family-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
  }

  .wishlist-drawer__item-title:hover {
    color: var(--color-accent);
  }

  .wishlist-drawer__item-price {
    font-family: var(--font-family-primary);
    font-size: 0.85rem;
    color: var(--color-foreground-light);
  }

  .wishlist-drawer__item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-foreground-lighter);
    padding: 0.25rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
  }

  .wishlist-drawer__item-remove:hover {
    color: var(--color-error);
  }

  .wishlist-drawer__empty {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--color-foreground-lighter);
    flex: 1;
  }

  .wishlist-drawer__empty.active {
    display: flex;
  }

  .wishlist-drawer__empty p {
    font-size: 0.95rem;
    margin: 0;
  }

  .wishlist-drawer__shop-link {
    font-family: var(--font-family-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-background);
    background: var(--color-foreground);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .wishlist-drawer__shop-link:hover {
    background: var(--color-accent);
  }

  .wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Wishlist active state on product cards */
  .product-card__wishlist-icon.active svg {
    fill: var(--color-error);
    stroke: var(--color-error);
  }

  /* Mobile Menu Panel */
  .header__mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 280px;
    height: calc(100vh - 80px);
    background: var(--color-background);
    z-index: 100;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-right: 1px solid var(--color-border);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }

  .header__mobile-menu.active {
    transform: translateX(0);
  }

  .header__mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 1rem 0;
  }

  .header__mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
  }

  .header__mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--color-foreground);
    font-family: var(--font-family-accent);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background-color 0.2s ease;
  }

  .header__mobile-menu-link:hover {
    background-color: var(--color-background-hover);
  }

  .header__mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0.5rem 0;
  }

  .header__mobile-submenu-link {
    display: block;
    padding: 0.5rem 1.5rem 0.5rem 2.5rem;
    text-decoration: none;
    color: var(--color-foreground-light);
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
  }

  .header__mobile-submenu-link:hover {
    background-color: var(--color-background-hover);
  }

  /* Mobile Menu Overlay */
  .header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
  }

  .header__mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .header__search-input {
      width: 250px;
    }
  }

  @media (max-width: 768px) {
    .header__container {
      grid-template-columns: auto 1fr auto;
      gap: 1rem;
    }

    .header__mobile-toggle {
      display: block;
    }

    .header__nav {
      display: none;
    }

    .header__mobile-menu {
      display: block;
    }

    .header__search {
      display: none;
    }

    .header__action-text {
      display: none;
    }

    .header__actions {
      gap: 0.5rem;
    }
  }

  @media (max-width: 480px) {
    .header__container {
      padding: 0 1rem;
    }

    .header__title {
      font-size: 1.25rem;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:19) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero (INDEX:20) */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #1a1a1a;
    overflow: hidden;
  }

  .hero__slides {
    position: absolute;
    inset: 0;
  }

  .hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
  }

  .hero__slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero__background {
    position: absolute;
    inset: 0;
  }

  .hero__background--placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  }

  .hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    z-index: 1;
  }

  .hero__container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    z-index: 2;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 550px;
  }

  .hero__subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
    font-family: var(--font-family-accent);
  }

  .hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    font-family: var(--font-family-secondary);
  }

  .hero__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
  }

  .hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: var(--font-family-accent);
  }

  .hero__button--primary {
    background-color: #ffffff;
    color: #1a1a1a;
  }

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

  .hero__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
  }

  .hero__button--secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
  }

  /* Sound toggle */
  .hero__sound-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .hero__sound-toggle:hover {
    background: rgba(0, 0, 0, 0.6);
  }

  /* Carousel navigation */
  .hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .hero__nav:hover {
    background: rgba(0, 0, 0, 0.5);
  }

  .hero__nav--prev { left: 1.5rem; }
  .hero__nav--next { right: 1.5rem; }

  .hero__indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
  }

  .hero__indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .hero__indicator.active {
    background-color: #fff;
    transform: scale(1.2);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero { min-height: 70vh; }

    .hero__overlay {
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .hero__container { text-align: center; }
    .hero__content { max-width: 100%; align-items: center; }
    .hero__title { font-size: 2.5rem; }
    .hero__buttons { justify-content: center; }
    .hero__button { padding: 0.875rem 1.5rem; }
    .hero__nav { width: 36px; height: 36px; }
    .hero__nav--prev { left: 0.75rem; }
    .hero__nav--next { right: 0.75rem; }
    .hero__sound-toggle { bottom: 1.25rem; right: 1.25rem; width: 38px; height: 38px; }
  }

  @media (max-width: 480px) {
    .hero__container { padding: 0 1rem; }
    .hero__title { font-size: 2rem; }
    .hero__buttons { flex-direction: column; align-items: center; }
    .hero__button { width: 100%; max-width: 300px; }
  }
/* END_SECTION:hero */

/* START_SECTION:login (INDEX:21) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.page-width {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Login Header */
.login-header {
  margin-bottom: 3rem;
  text-align: center;
}

.login-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.login-subtitle {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin: 0;
  line-height: 1.6;
}

/* Login Container */
.login-container {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Login Tabs */
.login-tabs {
  display: flex;
  background: var(--color-background-hover, var(--color-background-hover));
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.login-tab {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--color-foreground, #666);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}

.login-tab:hover {
  background: var(--color-background, #ffffff);
  color: var(--color-foreground);
}

.login-tab.active {
  background: var(--color-background, #ffffff);
  color: var(--color-primary, var(--color-accent));
  border-bottom-color: var(--color-primary, var(--color-accent));
}

/* Login Content */
.login-content {
  position: relative;
}

.login-form-container {
  display: none;
  padding: 2rem;
}

.login-form-container.active {
  display: block;
}

.login-form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.login-form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.login-form-description {
  font-size: 0.95rem;
  color: var(--color-foreground, #666);
  margin: 0;
  line-height: 1.5;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--color-background);
  color: var(--color-foreground);
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary, var(--color-accent));
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/* Password Input */
.password-input-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-foreground, #666);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.password-toggle:hover {
  color: var(--color-primary, var(--color-accent));
}

/* Form Options */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-checkbox input {
  margin: 0;
  width: 16px;
  height: 16px;
}

.form-checkbox__text {
  font-size: 0.95rem;
  color: var(--color-foreground);
}

.forgot-password-link {
  font-size: 0.95rem;
  color: var(--color-primary, var(--color-accent));
  text-decoration: none;
  transition: color 0.2s ease;
}

.forgot-password-link:hover {
  color: var(--color-primary-hover, var(--color-accent-hover));
  text-decoration: underline;
}

/* Form Actions */
.form-actions {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  width: 100%;
}

.btn--primary {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

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

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.back-to-login {
  font-size: 0.95rem;
  color: var(--color-primary, var(--color-accent));
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-to-login:hover {
  color: var(--color-primary-hover, var(--color-accent-hover));
  text-decoration: underline;
}

/* Success/Error Messages */
.form-success,
.form-errors {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-success {
  background: var(--color-success, var(--color-success));
  color: white;
}

.form-errors {
  background: var(--color-error, #ff4444);
  color: white;
}

.success-icon,
.error-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.success-content h3,
.error-content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.success-content p,
.error-content ul {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.error-content ul {
  padding-left: 1rem;
}

/* Social Login */
.social-login {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border, #e5e5e5);
}

.social-login-divider {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.social-login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border, #e5e5e5);
}

.social-login-divider span {
  background: var(--color-background);
  padding: 0 1rem;
  font-size: 0.9rem;
  color: var(--color-foreground, #666);
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  background: var(--color-background);
  color: var(--color-foreground);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-login-btn:hover {
  background: var(--color-background-hover, #f5f5f5);
  border-color: var(--color-border-hover, #d0d0d0);
  transform: translateY(-1px);
}

.google-btn:hover {
  border-color: #4285F4;
}

.facebook-btn:hover {
  border-color: #1877F2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-width {
    padding: 0 15px;
  }

  .login-title {
    font-size: 2rem;
  }

  .login-form-container {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .login-tab {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .login-form-container {
    padding: 1rem;
  }

  .login-tab {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}
/* END_SECTION:login */

/* START_SECTION:order (INDEX:22) */
.section-order {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.section-order .page-width {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Back Link */
.order-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-foreground, #333);
  text-decoration: none;
  font-family: var(--font-family-primary, sans-serif);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: color 0.2s ease;
}

.order-back-link:hover {
  color: var(--color-primary, var(--color-accent));
}

/* Order Header */
.order-header {
  margin-bottom: 2rem;
}

.order-header__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.order-title {
  font-family: var(--font-family-secondary, serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-foreground, #111);
  margin: 0;
}

.order-date {
  font-family: var(--font-family-primary, sans-serif);
  font-size: 0.95rem;
  color: var(--color-foreground, #666);
  margin: 0;
}

/* Badges */
.order-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.order-badge {
  display: inline-block;
  font-family: var(--font-family-accent, sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  line-height: 1;
}

.order-badge--paid {
  background: #d4edda;
  color: #155724;
}

.order-badge--pending,
.order-badge--authorized {
  background: #fff3cd;
  color: #856404;
}

.order-badge--refunded,
.order-badge--partially_refunded {
  background: #f8d7da;
  color: #721c24;
}

.order-badge--voided {
  background: #e2e3e5;
  color: #383d41;
}

.order-badge--fulfilled {
  background: #d4edda;
  color: #155724;
}

.order-badge--partial {
  background: #fff3cd;
  color: #856404;
}

.order-badge--unfulfilled {
  background: #e2e3e5;
  color: #383d41;
}

/* Cancelled Notice */
.order-cancelled-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: #f8d7da;
  color: #721c24;
  border-radius: 8px;
  font-family: var(--font-family-primary, sans-serif);
  font-size: 0.95rem;
  line-height: 1.5;
}

.order-cancelled-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Line Items Table (Desktop) */
.order-line-items {
  margin-bottom: 2rem;
}

.order-line-items-mobile {
  display: none;
  margin-bottom: 2rem;
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-family-primary, sans-serif);
}

.order-table__heading {
  text-align: left;
  font-family: var(--font-family-accent, sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-foreground, #666);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--color-border, #e5e5e5);
}

.order-table__heading--right {
  text-align: right;
}

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

.order-table__row {
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.order-table__cell {
  padding: 1rem;
  vertical-align: middle;
  font-size: 0.95rem;
  color: var(--color-foreground, #333);
}

.order-table__cell--image {
  width: 50px;
  padding-right: 0;
}

.order-line-item__image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--color-border, #e5e5e5);
}

.order-line-item__placeholder {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-background-hover, var(--color-background-hover));
  border-radius: 6px;
  border: 1px solid var(--color-border, #e5e5e5);
  color: var(--color-foreground, #999);
}

.order-line-item__title {
  font-family: var(--font-family-secondary, serif);
  font-weight: 600;
  color: var(--color-foreground, #111);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

.order-line-item__title:hover {
  color: var(--color-primary, var(--color-accent));
}

.order-line-item__variant {
  display: block;
  font-size: 0.85rem;
  color: var(--color-foreground, #666);
  margin-top: 0.2rem;
}

.order-line-item__sku {
  display: block;
  font-size: 0.8rem;
  color: var(--color-foreground, #999);
  margin-top: 0.15rem;
}

.order-table__cell--sku {
  font-size: 0.85rem;
  color: var(--color-foreground, #666);
}

.order-table__cell--price {
  text-align: right;
}

.order-table__cell--quantity {
  text-align: center;
}

.order-table__cell--total {
  text-align: right;
  font-weight: 600;
}

/* Order Summary */
.order-summary {
  max-width: 360px;
  margin-left: auto;
  margin-bottom: 2.5rem;
  font-family: var(--font-family-primary, sans-serif);
}

.order-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--color-foreground, #333);
  border-bottom: 1px solid var(--color-border, #f0f0f0);
}

.order-summary__row--discount {
  color: #155724;
}

.order-summary__row--total {
  border-bottom: none;
  border-top: 2px solid var(--color-border, #e5e5e5);
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-family-secondary, serif);
}

/* Addresses */
.order-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.order-address-card {
  background: var(--color-background, #fff);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 1.5rem;
}

.order-address-card__title {
  font-family: var(--font-family-accent, sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-foreground, #666);
  margin: 0 0 1rem 0;
}

.order-address-card__content {
  font-family: var(--font-family-primary, sans-serif);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-foreground, #333);
}

/* Mobile Card Items */
.order-card-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border, #e5e5e5);
}

.order-card-item:last-child {
  border-bottom: none;
}

.order-card-item__image {
  flex-shrink: 0;
}

.order-card-item__image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--color-border, #e5e5e5);
}

.order-card-item__details {
  flex: 1;
  min-width: 0;
}

.order-card-item__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-foreground, #333);
}

/* Responsive */
@media (max-width: 768px) {
  .order-title {
    font-size: 1.5rem;
  }

  .order-header__title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .order-line-items {
    display: none;
  }

  .order-line-items-mobile {
    display: block;
  }

  .order-addresses {
    grid-template-columns: 1fr;
  }

  .order-summary {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .section-order .page-width {
    padding: 0 15px;
  }

  .order-address-card {
    padding: 1rem;
  }
}
/* END_SECTION:order */

/* START_SECTION:predictive-search (INDEX:25) */
.predictive-search-results {
    max-height: 400px;
    overflow-y: auto;
  }

  .predictive-search__section {
    margin-bottom: 1.5rem;
  }

  .predictive-search__section:last-child {
    margin-bottom: 0;
  }

  .predictive-search__section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-foreground, #333);
    margin: 0 0 0.75rem 0;
    padding: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .predictive-search__products,
  .predictive-search__articles,
  .predictive-search__pages,
  .predictive-search__queries {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .predictive-search__product,
  .predictive-search__article,
  .predictive-search__page,
  .predictive-search__query {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border, #f0f0f0);
    text-decoration: none;
    color: var(--color-foreground);
    transition: background-color 0.2s ease;
  }

  .predictive-search__product:hover,
  .predictive-search__article:hover,
  .predictive-search__page:hover,
  .predictive-search__query:hover {
    background-color: var(--color-background-hover, var(--color-background-hover));
  }

  .predictive-search__product:last-child,
  .predictive-search__article:last-child,
  .predictive-search__page:last-child,
  .predictive-search__query:last-child {
    border-bottom: none;
  }

  .predictive-search__product-image,
  .predictive-search__article-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--color-background-hover, var(--color-background-hover));
  }

  .predictive-search__product-img,
  .predictive-search__article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .predictive-search__product-placeholder,
  .predictive-search__article-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-foreground, #ccc);
  }

  .predictive-search__product-content,
  .predictive-search__article-content,
  .predictive-search__page-content {
    flex: 1;
    min-width: 0;
  }

  .predictive-search__product-title,
  .predictive-search__article-title,
  .predictive-search__page-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.25rem 0;
    color: var(--color-foreground);
    line-height: 1.3;
  }

  .predictive-search__product-title a,
  .predictive-search__article-title a,
  .predictive-search__page-title a {
    color: inherit;
    text-decoration: none;
  }

  .predictive-search__product-title a:hover,
  .predictive-search__article-title a:hover,
  .predictive-search__page-title a:hover {
    color: var(--color-primary, var(--color-accent));
  }

  .predictive-search__product-vendor {
    font-size: 0.75rem;
    color: var(--color-foreground, #666);
    margin-bottom: 0.25rem;
  }

  .predictive-search__product-price {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }

  .price-regular {
    color: var( var(--color-accent));rgb(0, 0, 0)
    font-weight: 600;
  }

  .price-compare {
    color: var(--color-foreground, #666);
    text-decoration: line-through;
    margin-right: 0.5rem;
  }

  .price-sale {
    color: var(--color-error, #ff4444);
    font-weight: 600;
  }

  .predictive-search__product-availability {
    font-size: 0.7rem;
    color: var(--color-error, #ff4444);
    font-weight: 500;
  }

  .predictive-search__article-excerpt,
  .predictive-search__page-excerpt {
    font-size: 0.8rem;
    color: var(--color-foreground, #666);
    line-height: 1.3;
  }

  .predictive-search__query-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-foreground, #666);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
  }

  .predictive-search__query-link:hover {
    color: var(--color-primary, var(--color-accent));
  }
/* END_SECTION:predictive-search */

/* START_SECTION:privacy (INDEX:26) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Privacy Header */
.privacy-header {
  margin-bottom: 3rem;
  text-align: center;
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.privacy-subtitle {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.privacy-last-updated {
  font-size: 0.95rem;
  color: var(--color-foreground, #888);
  margin: 0;
  font-style: italic;
}

/* Privacy Container */
.privacy-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Privacy Sidebar */
.privacy-sidebar {
  position: sticky;
  top: 2rem;
}

.privacy-toc {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
}

.privacy-toc-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
}

.privacy-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-toc-list li {
  margin-bottom: 0.75rem;
}

.privacy-toc-list li:last-child {
  margin-bottom: 0;
}

.privacy-toc-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-foreground, #666);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.privacy-toc-link:hover {
  background: var(--color-background-hover, #f5f5f5);
  color: var(--color-primary, var(--color-accent));
}

.privacy-toc-link:active {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

/* Privacy Content */
.privacy-content {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
}

.privacy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 2rem;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border, #e5e5e5);
}

.privacy-section-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-foreground);
}

.privacy-section-content p {
  margin-bottom: 1.5rem;
}

.privacy-section-content p:last-child {
  margin-bottom: 0;
}

.privacy-section-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: var(--color-foreground);
}

.privacy-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.privacy-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-contact-info {
  background: var(--color-background-hover, var(--color-background-hover));
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.privacy-contact-info p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.privacy-contact-info p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .privacy-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .privacy-sidebar {
    position: static;
    order: -1;
  }

  .privacy-toc {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-width {
    padding: 0 15px;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-content {
    padding: 1.5rem;
  }

  .privacy-toc {
    padding: 1rem;
  }

  .privacy-toc-title {
    font-size: 1.1rem;
  }

  .privacy-section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .privacy-content {
    padding: 1rem;
  }

  .privacy-toc {
    padding: 1rem;
  }

  .privacy-section {
    margin-bottom: 2rem;
  }
}
/* END_SECTION:privacy */

/* START_SECTION:product (INDEX:27) */
/* Fragrance Product Page Styles */
  .fragrance-product-page {
    padding: 2rem 0;
    min-height: 100vh;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
  }

  /* Blurred Background Image - Center more blurred */
  .fragrance-product-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--background-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(6px) brightness(0.9);
    z-index: -2;
    transform: scale(1.1);
    opacity: 1;
    display: block;
  }

  /* Additional layer for radial blur effect */
  .fragrance-product-page {
    position: relative;
  }

  .fragrance-product-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
      rgba(255, 255, 255, 0.1) 0%, 
      rgba(255, 255, 255, 0.3) 30%, 
      rgba(255, 255, 255, 0.6) 60%, 
      rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
    pointer-events: none;
  }

  /* Ensure background image shows even with gender themes */
  .fragrance-product-page[style*="--background-image"]::before {
    display: block !important;
    background-image: var(--background-image) !important;
  }

  /* Force background to show */
  .fragrance-product-page[style*="--background-image"] {
    background: none !important;
  }


  /* Fallback background when no image is available */
  .fragrance-product-page:not([style*="--background-image"]) {
    background: linear-gradient(135deg, var(--color-background-hover) 0%, var(--color-border) 100%);
  }

  /* Women's Product Theme - Soft, Elegant */
  .fragrance-product-page--women::after {
    background: radial-gradient(ellipse at center, 
      rgba(255, 255, 255, 0.05) 0%, 
      rgba(255, 255, 255, 0.1) 30%, 
      rgba(255, 255, 255, 0.2) 60%, 
      rgba(255, 255, 255, 0.3) 100%);
  }

  .fragrance-product-page--women .fragrance-product__container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(255, 182, 193, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 182, 193, 0.1);
  }

  .fragrance-product-page--women .fragrance-product__notes {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8d5ff 100%);
    border: 2px solid rgba(139, 69, 19, 0.2);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  }

  .fragrance-product-page--women .fragrance-product__note {
    background: linear-gradient(135deg, #ffffff 0%, #f8f4ff 100%);
    border: 2px solid rgba(139, 69, 19, 0.15);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.08);
  }

  .fragrance-product-page--women .fragrance-product__note-title {
    color: #8b4513;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(139, 69, 19, 0.1);
  }

  .fragrance-product-page--women .fragrance-product__note-content {
    color: #654321;
    font-weight: 500;
  }

  .fragrance-product-page--women .fragrance-product__similar {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8d5ff 100%);
    border: 2px solid rgba(139, 69, 19, 0.2);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  }

  .fragrance-product-page--women .fragrance-product__similar-title {
    color: #8b4513;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(139, 69, 19, 0.1);
  }

  .fragrance-product-page--women .fragrance-product__similar-link {
    color: #654321;
    font-weight: 500;
  }

  .fragrance-product-page--women .fragrance-product__similar-link:hover {
    color: #8b4513;
    font-weight: 600;
  }

  /* Men's Product Theme - Bold, Sophisticated */
  .fragrance-product-page--men::after {
    background: radial-gradient(ellipse at center, 
      rgba(255, 255, 255, 0.05) 0%, 
      rgba(255, 255, 255, 0.1) 30%, 
      rgba(255, 255, 255, 0.2) 60%, 
      rgba(255, 255, 255, 0.3) 100%);
  }

  .fragrance-product-page--men .fragrance-product__container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(30, 41, 59, 0.15);
  }

  .fragrance-product-page--men .fragrance-product__notes {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    border: 2px solid rgba(30, 41, 59, 0.35);
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
  }

  .fragrance-product-page--men .fragrance-product__note {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    border: 2px solid rgba(30, 41, 59, 0.25);
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.15);
  }

  .fragrance-product-page--men .fragrance-product__note-title {
    color: #1e293b;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(30, 41, 59, 0.1);
  }

  .fragrance-product-page--men .fragrance-product__note-content {
    color: #334155;
    font-weight: 500;
  }

  .fragrance-product-page--men .fragrance-product__similar {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    border: 2px solid rgba(30, 41, 59, 0.35);
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
  }

  .fragrance-product-page--men .fragrance-product__similar-title {
    color: #1e293b;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(30, 41, 59, 0.1);
  }

  .fragrance-product-page--men .fragrance-product__similar-link {
    color: #334155;
    font-weight: 500;
  }

  .fragrance-product-page--men .fragrance-product__similar-link:hover {
    color: #1e293b;
    font-weight: 600;
  }

  /* Additional Women's Theme Elements */

  .fragrance-product-page--women .fragrance-product__scent {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8d5ff 100%);
    border: 2px solid rgba(139, 69, 19, 0.2);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  }

  .fragrance-product-page--women .fragrance-product__scent-label {
    color: #8b4513;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(139, 69, 19, 0.1);
  }

  .fragrance-product-page--women .fragrance-product__details {
    background: linear-gradient(135deg, #f8f4ff 0%, #e8d5ff 100%);
    border: 2px solid rgba(139, 69, 19, 0.2);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
  }

  .fragrance-product-page--women .fragrance-product__detail-label {
    color: #8b4513;
    font-weight: 700;
  }

  .fragrance-product-page--women .fragrance-product__detail-value {
    color: #654321;
    font-weight: 600;
  }

  /* Additional Men's Theme Elements */

  .fragrance-product-page--men .fragrance-product__scent-profile {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    border: 2px solid rgba(30, 41, 59, 0.35);
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
  }

  .fragrance-product-page--men .fragrance-product__scent-profile-title {
    color: #1e293b;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(30, 41, 59, 0.1);
  }

  .fragrance-product__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  /* Glass Mode (Default) for Main Product */
  .fragrance-product__container.glass-mode {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* White Mode for Main Product */
  .fragrance-product__container.white-mode {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* Glass Mode Toggle Button */
  .glass-mode-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .glass-mode-toggle:hover {
    background: rgba(255, 255, 255, 1);
    color: #333;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
  }

  .glass-mode-toggle.active {
    background: rgba(255, 255, 255, 1);
    color: var(--color-accent);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.2);
  }

  .glass-mode-toggle svg {
    width: 16px;
    height: 16px;
  }

  /* Fragrance Product Media Styles */
  .fragrance-product__media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .fragrance-product__gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .fragrance-product__main-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-background-hover);
  }

  .fragrance-product__slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .fragrance-product__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .fragrance-product__slide.active {
    opacity: 1;
  }

  .fragrance-product__featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fragrance-product__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-foreground-light);
  }

  /* Navigation Arrows */
  .fragrance-product__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .fragrance-product__nav:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .fragrance-product__nav--prev {
    left: 16px;
  }

  .fragrance-product__nav--next {
    right: 16px;
  }

  .fragrance-product__nav svg {
    width: 20px;
    height: 20px;
  }

  /* Thumbnail Indicators */
  .fragrance-product__thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    overflow-x: auto;
    padding: 0.5rem 0;
  }

  .fragrance-product__thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
  }

  .fragrance-product__thumbnail:hover {
    border-color: var(--color-accent);
    transform: scale(1.05);
  }

  .fragrance-product__thumbnail.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.2);
  }

  .fragrance-product__thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Fragrance Product Info Styles */
  .fragrance-product__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .fragrance-product__header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .fragrance-product__vendor-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .fragrance-product__vendor-logo {
    height: auto;
    width: auto;
    min-width: 100px;
    max-height: 50px;
    object-fit: contain;
  }

  .fragrance-product__vendor {
    font-family: var(--font-family-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent, #8B7355);
  }

  .fragrance-product__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: var(--color-foreground);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-foreground) 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .fragrance-product__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex: 1;
  }

  .fragrance-product__price-regular {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-foreground);
  }

  .fragrance-product__price-compare {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    text-decoration: line-through;
    opacity: 0.9;
  }

  .fragrance-product__price-sale {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-error);
  }

  .fragrance-product__description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-foreground-light);
  }

  /* Accordion Styling */
  .fragrance-product__accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
  }

  .fragrance-product__accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
  }

  .fragrance-product__accordion-item:last-child {
    margin-bottom: 0;
  }

  .fragrance-product__accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    background-color: var(--color-background-hover);
  }

  .fragrance-product__accordion-header:hover {
    background-color: var(--color-border);
  }

  .fragrance-product__accordion-header.active {
    background-color: #768aa1;
    color: white;
  }

  .fragrance-product__accordion-icon {
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .fragrance-product__accordion-header.active .fragrance-product__accordion-icon {
    transform: rotate(180deg);
  }

  .fragrance-product__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
  }

  .fragrance-product__accordion-content.active {
    max-height: 1000px;
  }

  .fragrance-product__accordion-body {
    padding: 1.5rem;
  }

  .fragrance-product__accordion-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-foreground-light);
    margin-bottom: 1rem;
  }

  .fragrance-product__accordion-body ul,
  .fragrance-product__accordion-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
  }

  .fragrance-product__accordion-body li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-foreground-light);
    margin-bottom: 0.5rem;
  }

  .fragrance-product__olfactory-notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .fragrance-product__note-category {
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-background-hover) 0%, var(--color-border) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Scent Profile Card Styling */
  .fragrance-product__scent-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .fragrance-product__scent-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .fragrance-product__scent-card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
    margin: 0 0 1.25rem 0;
  }

  .fragrance-product__scent-card-details {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .fragrance-product__scent-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .fragrance-product__scent-detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .fragrance-product__scent-detail-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
  }

  .fragrance-product__scent-detail-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .fragrance-product__brand-image {
    flex-shrink: 0;
  }

  .fragrance-product__brand-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--color-background-hover);
    padding: 6px;
  }

  .fragrance-product__brand-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: var(--color-background-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-foreground-light);
  }

  .fragrance-product__brand-info {
    flex: 1;
  }

  .fragrance-product__brand-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 0.1rem;
  }

  .fragrance-product__brand-location {
    font-size: 0.8rem;
    color: var(--color-foreground-light);
    font-style: italic;
  }


  /* Fragrance Notes Styling */
  .fragrance-product__notes {
    background-color: var(--color-background-hover);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .fragrance-product__notes-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-align: center;
  }

  .fragrance-product__notes-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .fragrance-product__note {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .fragrance-product__note:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .fragrance-product__note-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-foreground-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
  }

  .fragrance-product__note--top .fragrance-product__note-label {
    border-bottom-color: #ffc107;
    color: #e0a800;
  }

  .fragrance-product__note--middle .fragrance-product__note-label {
    border-bottom-color: var(--color-success);
    color: var(--color-success-hover);
  }

  .fragrance-product__note--base .fragrance-product__note-label {
    border-bottom-color: #6f42c1;
    color: #5a32a3;
  }

  .fragrance-product__note-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-foreground);
    font-weight: 500;
  }

  /* Fragrance Product Form Styles */
  .fragrance-product__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Hide Shopify's auto-injected metafield displays */
  .fragrance-product__form-element > div:not([class]) {
    display: none;
  }

  .fragrance-product__variants {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .fragrance-product__option {
    border: none;
    padding: 0;
    margin: 0;
  }

  .fragrance-product__option-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
  }

  .fragrance-product__option-values {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .fragrance-product__option-value {
    position: relative;
    cursor: pointer;
  }

  .fragrance-product__option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .fragrance-product__option-text {
    display: block;
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    background-color: white;
    transition: all 0.2s ease;
    font-size: 0.875rem;
  }

  .fragrance-product__option-input:checked + .fragrance-product__option-text {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: white;
  }

  .fragrance-product__option-value:hover .fragrance-product__option-text {
    border-color: var(--color-accent);
  }

  .fragrance-product__quantity-price-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-background-hover) 0%, var(--color-border) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    margin-top: 15px;
  }

  .fragrance-product__quantity-price-row--sale {
    border: 2px solid var(--color-error);
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
  }

  .fragrance-product__sale-label {
    position: absolute;
    top: -8px;
    right: 12px;
    background: linear-gradient(135deg, var(--color-error) 0%, var(--color-error-hover) 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    z-index: 1;
  }

  .fragrance-product__quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }

  .fragrance-product__quantity-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .fragrance-product__quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    width: fit-content;
    background-color: white;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .fragrance-product__quantity-controls:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(139, 115, 85, 0.15);
  }

  .fragrance-product__quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-foreground);
    transition: all 0.2s ease;
    position: relative;
  }

  .fragrance-product__quantity-btn:hover {
    background-color: var(--color-background-hover);
    color: var(--color-primary);
  }

  .fragrance-product__quantity-btn:active {
    transform: scale(0.95);
  }

  .fragrance-product__quantity-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
  }

  .fragrance-product__quantity-input {
    width: 60px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background-color: transparent;
    color: var(--color-foreground);
  }

  .fragrance-product__quantity-input:focus {
    outline: none;
  }

  .fragrance-product__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .fragrance-product__add-to-cart {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-hover) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }

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

  .fragrance-product__add-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  }

  .fragrance-product__add-to-cart:hover:not(:disabled)::before {
    left: 100%;
  }

  .fragrance-product__add-to-cart:active:not(:disabled) {
    transform: translateY(0);
  }

  .fragrance-product__add-to-cart:disabled {
    background: linear-gradient(135deg, var(--color-foreground-light) 0%, #545b62 100%);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
  }

  .fragrance-product__add-to-cart svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }

  .fragrance-product__buy-now {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    color: white;
    border: 2px solid #212529;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(33, 37, 41, 0.3);
  }

  .fragrance-product__buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .fragrance-product__buy-now:hover:not(:disabled) {
    background: linear-gradient(135deg, #000000 0%, #212529 100%);
    border-color: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }

  .fragrance-product__buy-now:hover:not(:disabled)::before {
    left: 100%;
  }

  .fragrance-product__buy-now:active:not(:disabled) {
    transform: translateY(0);
  }

  .fragrance-product__buy-now:disabled {
    background: linear-gradient(135deg, var(--color-foreground-light) 0%, #545b62 100%);
    color: white;
    border-color: var(--color-foreground-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .fragrance-product__buy-now svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }

  .fragrance-product__stock {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }

  .fragrance-product__stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border-left: 4px solid;
  }

  .fragrance-product__stock-status--out {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--color-error);
    border-left-color: var(--color-error);
  }

  .fragrance-product__stock-status--low {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--color-warning);
    border-left-color: var(--color-warning);
  }

  .fragrance-product__stock-status svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* Fragrance Product Shipping */
  .fragrance-product__shipping {
    margin-top: 1.5rem;
    padding: 0;
  }

  .fragrance-product__shipping-list {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
  }

  .fragrance-product__shipping-item {
    flex: 1;
    padding: 0.75rem 0.5rem;
    color: var(--color-foreground-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    background-color: transparent;
    transition: transform 0.2s ease;
  }

  .fragrance-product__shipping-item:hover {
    transform: translateY(-1px);
  }

  .fragrance-product__shipping-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
  }

  /* Responsive Design */
  /* =============================================
     MOBILE PRODUCT PAGE — Clean modern layout
     ============================================= */

  .fragrance-product__sticky-bar {
    display: none;
  }

  @media (max-width: 768px) {

    /* Kill the wrapper styling — plain white bg, no blur, no pseudo-elements */
    .fragrance-product-page {
      padding: 0 0 72px 0;
      min-height: auto;
      background: #fff;
    }

    .fragrance-product-page::before,
    .fragrance-product-page::after {
      display: none;
    }

    /* Flatten container into a single column, full width */
    .fragrance-product__container {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0;
      margin: 0;
      max-width: 100%;
      width: 100%;
      border-radius: 0;
      box-shadow: none;
      background: #fff;
    }

    /* display: contents lets us reorder children from different wrappers */
    .fragrance-product__info,
    .fragrance-product__media {
      display: contents;
    }

    .glass-mode-toggle { display: none; }

    .fragrance-product__container.glass-mode,
    .fragrance-product__container.white-mode {
      padding: 0;
      background: #fff;
      box-shadow: none;
      border-radius: 0;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    /* === ORDER === */
    .fragrance-product__header   { order: 1; }
    .fragrance-product__gallery  { order: 2; }
    .fragrance-product__scent-card { order: 3; }
    .fragrance-product__form     { order: 4; }
    .fragrance-product__notes    { order: 5; }
    .fragrance-product__similar  { order: 6; }
    .fragrance-product__accordion { order: 7; }

    /* === 1. HEADER — Brand + Title === */
    .fragrance-product__header {
      padding: 1rem 1.25rem 0.75rem;
    }

    .fragrance-product__vendor {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
    }

    .fragrance-product__vendor-logo {
      min-width: 80px;
      max-height: 32px;
    }

    .fragrance-product__title {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1.15;
      background: none;
      -webkit-text-fill-color: var(--color-foreground);
      color: var(--color-foreground);
    }

    /* === 2. IMAGE GALLERY === */
    .fragrance-product__gallery {
      border-radius: 0;
    }

    .fragrance-product__thumbnails {
      padding: 0.75rem 1.25rem;
      gap: 0.5rem;
    }

    .fragrance-product__thumbnail {
      width: 56px;
      height: 56px;
      border-radius: 6px;
    }

    .fragrance-product__nav {
      width: 36px;
      height: 36px;
    }
    .fragrance-product__nav--prev { left: 8px; }
    .fragrance-product__nav--next { right: 8px; }
    .fragrance-product__nav svg { width: 16px; height: 16px; }

    /* === 3. SCENT CARD === */
    .fragrance-product__scent-card {
      padding: 1rem 1.25rem;
      margin: 0;
      border-radius: 0;
      border: none;
      border-top: 1px solid var(--color-border);
      background: #fff;
      box-shadow: none;
    }

    .fragrance-product__scent-card-title {
      font-size: 0.7rem;
      margin-bottom: 0.5rem;
    }

    .fragrance-product__scent-card-description {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .fragrance-product__scent-card-details {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 0.75rem;
    }

    .fragrance-product__scent-detail-item {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }

    .fragrance-product__scent-detail-label {
      font-size: 0.7rem;
    }

    .fragrance-product__scent-detail-value {
      font-size: 0.85rem;
    }

    .fragrance-product__description-content {
      font-size: 0.9rem;
      line-height: 1.65;
      margin-top: 0.75rem;
    }

    /* === 4. FORM — Quantity, Price, Buttons === */
    .fragrance-product__form {
      padding: 1.25rem;
      border-top: 1px solid var(--color-border);
    }

    .fragrance-product__quantity-price-row {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 10px;
      background: var(--color-background-hover);
      position: relative;
      overflow: visible;
    }

    .fragrance-product__quantity-price-row--sale {
      border-color: transparent;
      background: #fff5f5;
    }

    .fragrance-product__sale-label {
      top: -10px;
      right: 12px;
      font-size: 0.65rem;
      padding: 0.2rem 0.6rem;
    }

    .fragrance-product__quantity-controls {
      height: 44px;
    }

    .fragrance-product__quantity-btn {
      width: 44px;
      height: 44px;
    }

    .fragrance-product__quantity-input {
      width: 48px;
      height: 44px;
      font-size: 1rem;
    }

    .fragrance-product__quantity-label {
      font-size: 0.75rem;
    }

    .fragrance-product__price {
      align-items: flex-end;
    }

    .fragrance-product__price-regular,
    .fragrance-product__price-sale {
      font-size: 1.5rem;
    }

    .fragrance-product__price-compare {
      font-size: 0.85rem;
      margin-bottom: 0.125rem;
    }

    .fragrance-product__actions {
      flex-direction: column;
      gap: 0.625rem;
    }

    .fragrance-product__add-to-cart,
    .fragrance-product__buy-now {
      width: 100%;
      justify-content: center;
      padding: 1rem;
      font-size: 0.85rem;
      border-radius: 10px;
    }

    .fragrance-product__option-values {
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .fragrance-product__stock {
      margin-top: 0.5rem;
    }

    .fragrance-product__shipping {
      margin-top: 0.75rem;
    }

    .fragrance-product__shipping-list {
      flex-direction: column;
      gap: 0.375rem;
    }

    .fragrance-product__shipping-item {
      flex: none;
      font-size: 0.8rem;
      padding: 0.5rem 0;
      border: none;
      background: none;
    }

    /* === 5. FRAGRANCE NOTES === */
    .fragrance-product__notes {
      padding: 1.25rem;
      border-top: 6px solid var(--color-background-hover);
    }

    .fragrance-product__notes-title {
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }

    .fragrance-product__notes-grid {
      gap: 0.625rem;
    }

    .fragrance-product__note {
      padding: 0.875rem;
      border-radius: 8px;
    }

    /* === 6. SIMILAR === */
    .fragrance-product__similar {
      padding: 1rem 1.25rem;
      border-top: 1px solid var(--color-border);
    }

    /* === 7. ACCORDION — Clean minimal style for mobile === */
    .fragrance-product__accordion {
      padding: 0 1.25rem 1.5rem;
      border-top: 6px solid var(--color-background-hover);
    }

    .fragrance-product__accordion-item {
      border: none;
      border-radius: 0;
      border-bottom: 1px solid var(--color-border);
      margin-bottom: 0;
      overflow: visible;
    }

    .fragrance-product__accordion-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .fragrance-product__accordion-header {
      padding: 1rem 0;
      font-size: 0.95rem;
      background: none;
      background-color: transparent;
      color: var(--color-foreground);
    }

    .fragrance-product__accordion-header:hover {
      background-color: transparent;
    }

    .fragrance-product__accordion-header.active {
      background-color: transparent;
      color: var(--color-foreground);
    }

    .fragrance-product__accordion-header.active .fragrance-product__accordion-icon {
      color: var(--color-foreground);
    }

    .fragrance-product__accordion-content {
      background-color: transparent;
    }

    .fragrance-product__accordion-body {
      padding: 0 0 1.25rem;
    }

    .fragrance-product__accordion-body p {
      font-size: 0.9rem;
      line-height: 1.7;
      margin-bottom: 0.75rem;
    }

    .fragrance-product__accordion-body ul,
    .fragrance-product__accordion-body ol {
      padding-left: 1.25rem;
      margin: 0.5rem 0 0.75rem;
    }

    .fragrance-product__accordion-body li {
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 0.375rem;
    }


    /* === STICKY ADD TO CART BAR === */
    .fragrance-product__sticky-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 99;
      background: #fff;
      border-top: 1px solid var(--color-border);
      padding: 0.75rem 1.25rem;
      gap: 0.75rem;
      align-items: center;
      box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
    }

    .fragrance-product__sticky-bar__info {
      flex: 1;
      min-width: 0;
    }

    .fragrance-product__sticky-bar__title {
      font-family: var(--font-family-primary);
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--color-foreground);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .fragrance-product__sticky-bar__price {
      font-family: var(--font-family-primary);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--color-foreground);
    }

    .fragrance-product__sticky-bar__btn {
      flex-shrink: 0;
      background: var(--color-foreground);
      color: #fff;
      border: none;
      padding: 0.875rem 1.75rem;
      border-radius: 10px;
      font-family: var(--font-family-accent);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
    }
  }

  /* Similar Fragrances Table Styles - Left Side Compact Version */
  .fragrance-product__similar {
    background-color: var(--color-background-hover);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .fragrance-product__similar-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-foreground);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .fragrance-product__similar-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background-color: white;
  }

  .fragrance-product__similar-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
  }

  .fragrance-product__similar-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
  }

  .fragrance-product__similar-table tr:last-child td {
    border-bottom: none;
  }

  .fragrance-product__similar-table tr:hover {
    background-color: var(--color-background-hover);
  }

  .fragrance-product__similar-link {
    text-decoration: none;
    color: var(--color-foreground);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }

  .fragrance-product__similar-link:hover {
    color: var(--color-primary, var(--color-accent));
  }

  .fragrance-product__similar-link strong {
    font-size: 0.9rem;
    font-weight: 600;
  }

  .fragrance-product__similar-brand {
    font-size: 0.75rem;
    color: var(--color-foreground-light);
    font-weight: 400;
  }

  /* Related Products Carousel Styles */
  .related-products-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    clear: both;
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .related-products-loading {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
  }

  .related-products-section {
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .related-products-container {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
  }

  .related-products-title {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    color: rgba(0, 0, 0, 0.7);
    font-family: var(--font-body-family, inherit);
    line-height: 1.4;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
  }

  .related-products-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
    width: 100%;
  }

  .related-products-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .related-products-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem 0;
    flex: 1;
  }

  .related-product-item {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
  }

  .related-product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
  }

  .related-product-link {
    text-decoration: none;
    color: var(--color-foreground);
    display: block;
  }

  .related-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(248, 249, 250, 0.6);
  }

  .related-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .related-product-item:hover .related-product-img {
    transform: scale(1.08);
  }

  .related-product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-foreground-light);
  }

  .related-product-info {
    padding: 2rem;
    background: transparent;
  }

  .related-product-name {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    color: var(--color-foreground);
    font-family: var(--font-body-family, inherit);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.01em;
  }

  .related-product-vendor {
    font-size: 0.75rem;
    color: #999;
    margin: 0 0 0.5rem 0;
    font-weight: 400;
    text-transform: uppercase;
  }

  .related-product-scent {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.1em;
  }

  .related-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .related-product-price-regular {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
    letter-spacing: 0.02em;
  }

  .related-product-price-compare {
    font-size: 0.95rem;
    color: var(--color-foreground, #999);
    text-decoration: line-through;
  }

  .related-product-price-sale {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-error, var(--color-error));
    letter-spacing: 0.02em;
  }

  /* Related product ATC button — hidden on desktop */
  .related-product-atc,
  .related-product-sold-out {
    display: none;
  }

  /* Carousel Navigation */
  .related-products-nav {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .related-products-nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 1);
    color: #333;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.7);
  }

  .related-products-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }


  .related-products-nav svg {
    width: 20px;
    height: 20px;
  }

  /* Responsive Design for New Sections */
  @media (max-width: 768px) {
    .fragrance-product__similar {
      padding: 1.25rem;
      margin-top: 1.5rem;
    }

    .fragrance-product__similar-title {
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }

    .fragrance-product__similar-table td {
      padding: 0.5rem;
      font-size: 0.8rem;
    }

    .fragrance-product__similar-link strong {
      font-size: 0.85rem;
    }

    .fragrance-product__similar-brand {
      font-size: 0.7rem;
    }

    .related-products-section {
      padding: 1.5rem 0;
      margin-top: 0;
      border-radius: 0;
      border-top: 6px solid var(--color-background-hover);
    }

    .related-products-container {
      padding: 0;
    }

    .related-products-title {
      font-size: 1rem;
      margin-bottom: 1rem;
      padding: 0 1.25rem;
    }

    .related-products-carousel {
      padding: 0;
      overflow: visible;
    }

    .related-products-wrapper {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .related-products-track {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      padding: 0.5rem 1rem 1rem;
      gap: 0.75rem;
      flex: 1;
      min-width: 0;
    }

    .related-products-track::-webkit-scrollbar {
      display: none;
    }

    .related-product-item {
      flex: 0 0 180px;
      scroll-snap-align: start;
      border-radius: 10px;
      background: #fff;
      border: 1px solid var(--color-border);
      backdrop-filter: none;
      display: flex;
      flex-direction: column;
    }

    .related-product-link {
      flex: 1;
    }

    .related-product-info {
      padding: 0.75rem;
    }

    .related-product-name {
      font-size: 0.85rem;
      margin-bottom: 0.25rem;
    }

    .related-product-vendor {
      font-size: 0.65rem;
      margin-bottom: 0.25rem;
    }

    /* Nav arrows — outside the cards, on the edges */
    .related-products-nav {
      position: relative;
      top: auto;
      transform: none;
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      z-index: 5;
      background: var(--color-background);
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--color-border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .related-products-nav svg {
      width: 14px;
      height: 14px;
    }

    .related-products-prev {
      margin-left: 0.375rem;
    }

    .related-products-next {
      margin-right: 0.375rem;
    }

    /* Add to Cart button on related product cards */
    .related-product-atc {
      display: block;
      width: 100%;
      padding: 0.625rem;
      background: var(--color-foreground);
      color: #fff;
      border: none;
      border-top: 1px solid var(--color-border);
      border-radius: 0 0 10px 10px;
      font-family: var(--font-family-accent);
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .related-product-atc:hover {
      background: var(--color-accent);
    }

    .related-product-atc:disabled {
      opacity: 0.6;
      cursor: wait;
    }

    .related-product-sold-out {
      display: block;
      width: 100%;
      padding: 0.625rem;
      text-align: center;
      font-family: var(--font-family-accent);
      font-size: 0.65rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-foreground-lighter);
      border-top: 1px solid var(--color-border);
    }
  }
  /* Zoom hint on gallery images */
  .fragrance-product__slide {
    cursor: zoom-in;
  }

  .fragrance-product__zoom-hint {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 3;
  }

  .fragrance-product__slide:hover .fragrance-product__zoom-hint {
    opacity: 1;
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
  }

  .lightbox.active {
    display: flex;
  }

  .lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem;
    transition: color 0.2s ease;
  }

  .lightbox__close:hover {
    color: #fff;
  }

  .lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    z-index: 10;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.2s ease;
  }

  .lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .lightbox__nav--prev {
    left: 1.5rem;
  }

  .lightbox__nav--next {
    right: 1.5rem;
  }

  .lightbox__content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    pointer-events: none;
  }

  .lightbox__watermark {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-family-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
  }

  .lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-family-primary);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
  }

  @media (max-width: 768px) {
    .lightbox__nav--prev { left: 0.5rem; }
    .lightbox__nav--next { right: 0.5rem; }
    .lightbox__nav { padding: 0.75rem; }
    .lightbox__content { max-width: 95vw; }
    .lightbox__watermark { font-size: 0.7rem; bottom: 1rem; }
  }
/* END_SECTION:product */

/* START_SECTION:promotional-banner (INDEX:28) */
.promotional-banner {
    background-color: #1a1a1a;
    padding: 3rem 0;
  }

  .promotional-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .promotional-banner__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .promotional-banner__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .promotional-banner__subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
  }

  .promotional-banner__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
  }

  .promotional-banner__button {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }

  .promotional-banner__button:hover {
    color: var(--color-accent);
  }

  .promotional-banner__countdown {
    display: flex;
    align-items: center;
  }

  .countdown {
    display: flex;
    gap: 1.5rem;
  }

  .countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .countdown__number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
  }

  .countdown__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .promotional-banner {
      padding: 2rem 0;
    }

    .promotional-banner__content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }

    .promotional-banner__title {
      font-size: 1.5rem;
    }

    .countdown {
      gap: 1rem;
    }

    .countdown__number {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .promotional-banner__container {
      padding: 0 1rem;
    }

    .countdown {
      gap: 0.75rem;
    }

    .countdown__number {
      font-size: 1.25rem;
    }

    .countdown__label {
      font-size: 0.625rem;
    }
  }
/* END_SECTION:promotional-banner */

/* START_SECTION:related-products (INDEX:29) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 60px);
  padding-bottom: var(--section-padding-bottom, 60px);
  background-color: var(--color-background);
}

.related-products__header {
  text-align: center;
  margin-bottom: 3rem;
}

.related-products__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-foreground);
  font-family: var(--font-heading-family);
  line-height: 1.2;
}

.related-products__subtitle {
  font-size: 1.125rem;
  color: var(--color-foreground, #666);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.related-products__carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.related-products__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem 0;
}

.related-products__item {
  flex: 0 0 300px;
  background-color: var(--color-background);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.related-products__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.related-products__link {
  text-decoration: none;
  color: var(--color-foreground);
  display: block;
}

.related-products__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--color-background-hover, var(--color-background-hover));
}

.related-products__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.related-products__item:hover .related-products__img {
  transform: scale(1.08);
}

.related-products__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-foreground, #999);
  background-color: var(--color-background-hover, var(--color-background-hover));
}

.related-products__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.related-products__badge--sold-out {
  background-color: var(--color-error, var(--color-error));
  color: white;
}

.related-products__badge--sale {
  background-color: var(--color-success, var(--color-success));
  color: white;
}

.related-products__info {
  padding: 1.5rem;
}

.related-products__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  color: var(--color-foreground);
  font-family: var(--font-body-family);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-products__vendor {
  font-size: 0.875rem;
  color: var(--color-foreground, #666);
  margin: 0 0 0.75rem 0;
  font-weight: 500;
}

.related-products__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.related-products__price-regular {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-foreground);
}

.related-products__price-compare {
  font-size: 0.95rem;
  color: var(--color-foreground, #999);
  text-decoration: line-through;
}

.related-products__price-sale {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-error, var(--color-error));
}

.related-products__actions {
  padding: 0 1.5rem 1.5rem;
}

.related-products__form {
  margin: 0;
}

.related-products__quick-add {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.related-products__quick-add:hover {
  background-color: var(--color-primary, var(--color-accent));
  color: white;
  border-color: var(--color-primary, var(--color-accent));
  transform: translateY(-1px);
}

/* Carousel Navigation */
.related-products__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.related-products__nav:hover {
  background-color: var(--color-primary, var(--color-accent));
  color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.related-products__nav--prev {
  left: -24px;
}

.related-products__nav--next {
  right: -24px;
}

.related-products__nav svg {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .related-products__item {
    flex: 0 0 280px;
  }
  
  .related-products__track {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .related-products__header {
    margin-bottom: 2rem;
  }
  
  .related-products__title {
    font-size: 1.875rem;
  }
  
  .related-products__subtitle {
    font-size: 1rem;
  }
  
  .related-products__item {
    flex: 0 0 260px;
  }
  
  .related-products__track {
    gap: 1.25rem;
  }
  
  .related-products__info {
    padding: 1.25rem;
  }
  
  .related-products__actions {
    padding: 0 1.25rem 1.25rem;
  }
  
  .related-products__nav {
    width: 40px;
    height: 40px;
  }
  
  .related-products__nav--prev {
    left: -20px;
  }
  
  .related-products__nav--next {
    right: -20px;
  }
  
  .related-products__nav svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .related-products__item {
    flex: 0 0 240px;
  }
  
  .related-products__track {
    gap: 1rem;
  }
  
  .related-products__info {
    padding: 1rem;
  }
  
  .related-products__actions {
    padding: 0 1rem 1rem;
  }
  
  .related-products__name {
    font-size: 1rem;
  }
  
  .related-products__price-regular,
  .related-products__price-sale {
    font-size: 1rem;
  }
}
/* END_SECTION:related-products */

/* START_SECTION:reset-password (INDEX:30) */
.section-reset-password {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.reset-page-width {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.reset-header {
  margin-bottom: 3rem;
  text-align: center;
}

.reset-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
  font-family: var(--font-family-primary, inherit);
}

.reset-subtitle {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin: 0;
  line-height: 1.6;
  font-family: var(--font-family-secondary, inherit);
}

/* Container */
.reset-container {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reset-form-wrapper {
  padding: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
  font-family: var(--font-family-secondary, inherit);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--color-background);
  color: var(--color-foreground);
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary, var(--color-accent));
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/* Buttons */
.form-actions {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 48px;
  width: 100%;
  font-family: var(--font-family-accent, inherit);
}

.btn--primary {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

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

/* Error Messages */
.form-errors {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-error, #ff4444);
  color: white;
}

.error-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.error-content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.error-content ul {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  padding-left: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .reset-page-width {
    padding: 0 15px;
  }

  .reset-title {
    font-size: 2rem;
  }

  .reset-form-wrapper {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .reset-form-wrapper {
    padding: 1rem;
  }
}
/* END_SECTION:reset-password */

/* START_SECTION:search (INDEX:31) */
/* Search Page Layout */
  .search-page {
    min-height: 100vh;
    background-color: var(--color-background, #ffffff);
  }

  /* Search Header */
  .search-header {
    background: linear-gradient(135deg, var(--color-background-hover) 0%, var(--color-border) 100%);
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border, #e5e5e5);
  }

  .search-header__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }

  .search-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground, #333);
    margin: 0 0 2rem 0;
  }

  /* Search Form */
  .search-form {
    margin-bottom: 1.5rem;
  }

  .search-form__wrapper {
    display: flex;
    background: var(--color-background);
    border: 2px solid var(--color-border, #e5e5e5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s ease;
  }

  .search-form__wrapper:focus-within {
    border-color: var(--color-primary, var(--color-accent));
  }

  .search-form__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
  }

  .search-form__input::placeholder {
    color: var(--color-foreground, #666);
  }

  .search-form__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary, var(--color-accent));
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .search-form__button:hover {
    background: var(--color-primary-hover, var(--color-accent-hover));
  }

  /* Search Results Info */
  .search-results-info {
    margin-top: 1rem;
  }

  .search-results-count {
    font-size: 1.1rem;
    color: var(--color-foreground, #666);
    margin: 0;
  }

  .search-no-results {
    font-size: 1.1rem;
    color: var(--color-error, #ff4444);
    margin: 0;
  }

  /* Search Content Layout */
  .search-content {
    padding: 2rem 0;
  }

  .search-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
  }

  /* Search Filters */
  .search-filters {
    background: var(--color-background);
    border: 1px solid var(--color-border, #e5e5e5);
    border-radius: 12px;
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }

  .search-filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border, #e5e5e5);
  }

  .search-filters__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-foreground);
  }

  .search-filters__close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-foreground, #666);
  }

  .search-filter {
    margin-bottom: 1.5rem;
  }

  .search-filter__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: var(--color-foreground);
  }

  .search-filter__options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .search-filter__option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.25rem 0;
  }

  .search-filter__option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary, var(--color-accent));
  }

  .search-filter__label {
    font-size: 0.9rem;
    color: var(--color-foreground, #666);
  }

  .search-filter__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .search-filter__price-input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--color-border, #e5e5e5);
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .search-filter__price-separator {
    color: var(--color-foreground, #666);
  }

  .search-filters__actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border, #e5e5e5);
  }

  .search-filter__clear {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-background-hover, var(--color-background-hover));
    border: 1px solid var(--color-border, #e5e5e5);
    border-radius: 6px;
    color: var(--color-foreground, #666);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .search-filter__clear:hover {
    background: var(--color-error, #ff4444);
    color: white;
    border-color: var(--color-error, #ff4444);
  }

  /* Search Results */
  .search-results {
    min-height: 400px;
  }

  .search-results__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border, #e5e5e5);
  }

  .search-results__controls {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .search-results__filters-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--color-primary, var(--color-accent));
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .search-results__filters-toggle:hover {
    background: var(--color-primary-hover, var(--color-accent-hover));
  }

  .search-results__sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .search-results__sort label {
    font-size: 0.9rem;
    color: var(--color-foreground, #666);
  }

  .search-results__sort-select {
    padding: 0.5rem;
    border: 1px solid var(--color-border, #e5e5e5);
    border-radius: 6px;
    background: var(--color-background);
    color: var(--color-foreground);
    font-size: 0.9rem;
  }

  /* Search Results Grid */
  .search-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  /* Search Result Cards */
  .search-result-card {
    background: var(--color-background);
    border: 1px solid var(--color-border, #e5e5e5);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }

  .search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary, var(--color-accent));
  }

  .search-result-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-background-hover, var(--color-background-hover));
  }

  .search-result-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .search-result-card:hover .search-result-card__img {
    transform: scale(1.05);
  }

  .search-result-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-foreground, #ccc);
  }

  .search-result-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .search-result-card__badge--sold-out {
    background: var(--color-error, #ff4444);
    color: white;
  }

  .search-result-card__badge--sale {
    background: var(--color-success, var(--color-success));
    color: white;
  }

  .search-result-card__badge--article {
    background: var(--color-primary, var(--color-accent));
    color: white;
  }

  .search-result-card__badge--page {
    background: var(--color-foreground, #666);
    color: white;
  }

  .search-result-card__content {
    padding: 1.5rem;
  }

  .search-result-card__title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
  }

  .search-result-card__title a {
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .search-result-card__title a:hover {
    color: var(--color-primary, var(--color-accent));
  }

  .search-result-card__vendor {
    font-size: 0.9rem;
    color: var(--color-foreground, #666);
    margin-bottom: 0.5rem;
  }

  .search-result-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-foreground, #666);
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }

  .search-result-card__price {
    margin-bottom: 1rem;
  }

  .price-regular {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
  }

  .price-compare {
    font-size: 0.9rem;
    color: var(--color-foreground, #666);
    text-decoration: line-through;
    margin-right: 0.5rem;
  }

  .price-sale {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-error, #ff4444);
  }

  .search-result-card__meta {
    margin-bottom: 1rem;
  }

  .search-result-card__date {
    font-size: 0.8rem;
    color: var(--color-foreground, #999);
  }

  .search-result-card__actions {
    margin-top: auto;
  }

  .search-result-card__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary, var(--color-accent));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    width: 100%;
  }

  .search-result-card__button:hover {
    background: var(--color-primary-hover, var(--color-accent-hover));
    transform: translateY(-1px);
  }

  /* Pagination */
  .search-results__pagination {
    margin-top: 3rem;
    text-align: center;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .search-layout {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .search-filters {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      max-width: 400px;
      height: 100vh;
      z-index: 1000;
      transition: left 0.3s ease;
      border-radius: 0;
      border-left: none;
      border-top: none;
      border-bottom: none;
    }

    .search-filters.active {
      left: 0;
    }

    .search-filters__close {
      display: block;
    }

    .search-results__filters-toggle {
      display: flex;
    }
  }

  @media (max-width: 768px) {
    .search-header {
      padding: 2rem 0;
    }

    .search-header__title {
      font-size: 2rem;
    }

    .search-form__wrapper {
      flex-direction: column;
    }

    .search-form__input {
      padding: 1rem;
    }

    .search-form__button {
      padding: 1rem;
      justify-content: center;
    }

    .search-results__grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .search-results__header {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }

    .search-results__controls {
      justify-content: space-between;
    }
  }

  @media (max-width: 480px) {
    .search-header__title {
      font-size: 1.75rem;
    }

    .search-result-card__content {
      padding: 1rem;
    }
  }
/* END_SECTION:search */

/* START_SECTION:shop-by-brand (INDEX:32) */
.shop-by-brand {
    padding: 4rem 0;
    background-color: var(--color-background);
  }

  .shop-by-brand__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .shop-by-brand__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .shop-by-brand__subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-foreground-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 0.75rem 0;
    font-family: var(--font-family-accent);
  }

  .shop-by-brand__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin: 0;
    font-family: var(--font-family-secondary);
  }

  .shop-by-brand__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .shop-by-brand__item {
    display: block;
    text-decoration: none;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .shop-by-brand__item:hover {
    border-color: var(--color-foreground);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .shop-by-brand__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-background-hover);
  }

  .shop-by-brand__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .shop-by-brand__item:hover .shop-by-brand__image img {
    transform: scale(1.05);
  }

  .shop-by-brand__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background-hover);
  }

  .shop-by-brand__placeholder span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground-light);
    font-family: var(--font-family-secondary);
  }

  .shop-by-brand__content {
    padding: 1rem;
    text-align: center;
  }

  .shop-by-brand__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin: 0 0 0.25rem 0;
    font-family: var(--font-family-accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .shop-by-brand__count {
    font-size: 0.75rem;
    color: var(--color-foreground-light);
    margin: 0;
    font-family: var(--font-family-primary);
  }

  .shop-by-brand__empty {
    text-align: center;
    color: var(--color-foreground-light);
    padding: 2rem;
  }

  @media (max-width: 768px) {
    .shop-by-brand {
      padding: 3rem 0;
    }

    .shop-by-brand__grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 1rem;
    }

    .shop-by-brand__title {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .shop-by-brand__container {
      padding: 0 1rem;
    }

    .shop-by-brand__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
/* END_SECTION:shop-by-brand */

/* START_SECTION:terms (INDEX:33) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 40px);
  padding-bottom: var(--section-padding-bottom, 40px);
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Terms Header */
.terms-header {
  margin-bottom: 3rem;
  text-align: center;
}

.terms-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.terms-subtitle {
  font-size: 1.1rem;
  color: var(--color-foreground, #666);
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.terms-last-updated {
  font-size: 0.95rem;
  color: var(--color-foreground, #888);
  margin: 0;
  font-style: italic;
}

/* Terms Container */
.terms-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Terms Sidebar */
.terms-sidebar {
  position: sticky;
  top: 2rem;
}

.terms-toc {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
}

.terms-toc-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
}

.terms-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-toc-list li {
  margin-bottom: 0.75rem;
}

.terms-toc-list li:last-child {
  margin-bottom: 0;
}

.terms-toc-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-foreground, #666);
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.terms-toc-link:hover {
  background: var(--color-background-hover, #f5f5f5);
  color: var(--color-primary, var(--color-accent));
}

.terms-toc-link:active {
  background: var(--color-primary, var(--color-accent));
  color: white;
}

/* Terms Content */
.terms-content {
  background: var(--color-background);
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 12px;
  padding: 2rem;
}

.terms-section {
  margin-bottom: 3rem;
  scroll-margin-top: 2rem;
}

.terms-section:last-child {
  margin-bottom: 0;
}

.terms-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-foreground);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border, #e5e5e5);
}

.terms-section-content {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-foreground);
}

.terms-section-content p {
  margin-bottom: 1.5rem;
}

.terms-section-content p:last-child {
  margin-bottom: 0;
}

.terms-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.terms-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.terms-list li:last-child {
  margin-bottom: 0;
}

.terms-contact-info {
  background: var(--color-background-hover, var(--color-background-hover));
  border: 1px solid var(--color-border, #e5e5e5);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.terms-contact-info p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.terms-contact-info p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .terms-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .terms-sidebar {
    position: static;
    order: -1;
  }

  .terms-toc {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-width {
    padding: 0 15px;
  }

  .terms-title {
    font-size: 2rem;
  }

  .terms-content {
    padding: 1.5rem;
  }

  .terms-toc {
    padding: 1rem;
  }

  .terms-toc-title {
    font-size: 1.1rem;
  }

  .terms-section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .terms-content {
    padding: 1rem;
  }

  .terms-toc {
    padding: 1rem;
  }

  .terms-section {
    margin-bottom: 2rem;
  }
}
/* END_SECTION:terms */

/* START_SECTION:you-might-be-interested (INDEX:34) */
.{{ section_class }} {
  padding-top: var(--section-padding-top, 60px);
  padding-bottom: var(--section-padding-bottom, 60px);
  background-color: var(--color-background);
}

.you-might-be-interested__header {
  text-align: center;
  margin-bottom: 3rem;
}

.you-might-be-interested__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-foreground);
  font-family: var(--font-heading-family);
  line-height: 1.2;
}

.you-might-be-interested__carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.you-might-be-interested__track {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 1rem 0;
}

.you-might-be-interested__item {
  flex: 0 0 300px;
  background-color: var(--color-background);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.you-might-be-interested__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.you-might-be-interested__link {
  text-decoration: none;
  color: var(--color-foreground);
  display: block;
}

.you-might-be-interested__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--color-background-hover, var(--color-background-hover));
}

.you-might-be-interested__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.you-might-be-interested__item:hover .you-might-be-interested__img {
  transform: scale(1.08);
}

.you-might-be-interested__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-foreground, #999);
  background-color: var(--color-background-hover, var(--color-background-hover));
}

.you-might-be-interested__info {
  padding: 1.5rem;
}

.you-might-be-interested__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  color: var(--color-foreground);
  font-family: var(--font-body-family);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.you-might-be-interested__count {
  font-size: 0.875rem;
  color: var(--color-foreground, #666);
  margin: 0;
  font-weight: 500;
}

/* Carousel Navigation */
.you-might-be-interested__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.you-might-be-interested__nav:hover {
  background-color: var(--color-primary, var(--color-accent));
  color: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.you-might-be-interested__nav--prev {
  left: -24px;
}

.you-might-be-interested__nav--next {
  right: -24px;
}

.you-might-be-interested__nav svg {
  width: 20px;
  height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .you-might-be-interested__item {
    flex: 0 0 280px;
  }
  
  .you-might-be-interested__track {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .you-might-be-interested__header {
    margin-bottom: 2rem;
  }
  
  .you-might-be-interested__title {
    font-size: 1.875rem;
  }
  
  .you-might-be-interested__item {
    flex: 0 0 260px;
  }
  
  .you-might-be-interested__track {
    gap: 1.25rem;
  }
  
  .you-might-be-interested__info {
    padding: 1.25rem;
  }
  
  .you-might-be-interested__nav {
    width: 40px;
    height: 40px;
  }
  
  .you-might-be-interested__nav--prev {
    left: -20px;
  }
  
  .you-might-be-interested__nav--next {
    right: -20px;
  }
  
  .you-might-be-interested__nav svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .you-might-be-interested__item {
    flex: 0 0 240px;
  }
  
  .you-might-be-interested__track {
    gap: 1rem;
  }
  
  .you-might-be-interested__info {
    padding: 1rem;
  }
  
  .you-might-be-interested__name {
    font-size: 1rem;
  }
}
/* END_SECTION:you-might-be-interested */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:35) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:36) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:38) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */