/** Shopify CDN: Minification failed

Line 4053:2 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:article (INDEX:1) */
.article-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 4rem 2rem 6rem;
  }

  .article-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .article-breadcrumbs {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }

  .article-breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
  }

  .article-breadcrumbs a:hover {
    color: #800020;
  }

  .article-breadcrumbs .divider {
    opacity: 0.5;
  }

  .article-breadcrumbs .current {
    font-weight: 500;
    opacity: 0.9;
  }

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

  .article-title {
    font-size: 2.8rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: inherit;
  }

  .article-meta {
    font-size: 0.95rem;
    opacity: 0.8;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
  }

  .article-author {
    color: inherit;
  }

  .article-meta__separator {
    color: #D4AF37;
  }

  .article-featured-image {
    margin-bottom: 3.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .article-featured-image .featured-img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Rich Text Body Styles */
  .article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
    opacity: 0.9;
    margin-bottom: 5rem;
  }

  .article-content p {
    margin-bottom: 1.8rem;
  }

  .article-content h2,
  .article-content h3,
  .article-content h4 {
    font-family: 'Outfit', sans-serif;
    color: inherit;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .article-content h2 { font-size: 1.8rem; }
  .article-content h3 { font-size: 1.5rem; }

  .article-content a {
    color: #800020;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
  }

  .article-content a:hover {
    color: #D4AF37;
  }

  .article-content ul,
  .article-content ol {
    margin-bottom: 1.8rem;
    padding-left: 2rem;
  }

  .article-content li {
    margin-bottom: 0.6rem;
  }

  .article-content blockquote {
    border-left: 4px solid #800020;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background-color: rgba(128, 0, 32, 0.03);
    font-style: italic;
    border-radius: 0 8px 8px 0;
    font-size: 1.2rem;
  }

  /* Comments section styling */
  .article-comments {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 4rem;
  }

  .comments-title {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2rem;
  }

  .comments-list {
    margin-bottom: 3.5rem;
  }

  .comment-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .comment-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }

  .comment-author {
    color: #800020;
  }

  .comment-date {
    opacity: 0.6;
  }

  .comment-card__body {
    line-height: 1.6;
  }

  .no-comments {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 3.5rem;
  }

  /* Comment Form Styling */
  .comment-form-wrapper {
    background: rgba(128, 0, 32, 0.02);
    border: 1px solid rgba(128, 0, 32, 0.08);
    border-radius: 8px;
    padding: 2.5rem;
  }

  .comment-form-title {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
  }

  .form-success {
    background-color: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #27ae60;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
  }

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

  .field-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .field-label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
  }

  .field-input,
  .field-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.15);
    background-color: transparent;
    color: inherit;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .field-input:focus,
  .field-textarea:focus {
    border-color: #800020;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
  }

  .form-actions {
    text-align: right;
  }

  @media (max-width: 768px) {
    .article-section {
      padding: 3rem 1.5rem 4rem;
    }
    .article-title {
      font-size: 2rem;
    }
    .form-fields-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
    .comment-form-wrapper {
      padding: 1.5rem;
    }
  }
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:2) */
.blog-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 2rem;
  }
  
  .blog-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .blog-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .blog-subheading {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .blog-title {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    color: inherit;
    position: relative;
    display: inline-block;
  }

  .blog-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #800020;
  }

  .blog-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

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

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

  .blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .blog-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .blog-card__image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f5f5f5;
  }

  .blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .blog-card:hover .blog-card__image {
    transform: scale(1.08);
  }

  .blog-card__date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: #800020;
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
  }

  .blog-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .blog-card__title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    color: inherit;
  }

  .blog-card__meta {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 1rem;
    display: block;
  }

  .blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    opacity: 0.8;
    flex-grow: 1;
  }

  .blog-card__more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #800020;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
    align-self: flex-start;
  }

  .blog-card__more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #800020;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .blog-card:hover .blog-card__more::after {
    transform: scaleX(1);
  }

  .blog-pagination {
    margin-top: 4rem;
    text-align: center;
  }

  .blog-pagination .pagination {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
  }

  .blog-pagination a,
  .blog-pagination .current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .blog-pagination a:hover,
  .blog-pagination .current {
    background-color: #800020;
    color: #fff;
    border-color: #800020;
  }

  .blog-empty {
    text-align: center;
    padding: 4rem 0;
    opacity: 0.7;
  }

  @media (max-width: 991px) {
    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .blog-title {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 768px) {
    .blog-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .blog-section {
      padding: 4rem 1.5rem;
    }
    .blog-title {
      font-size: 2rem;
    }
  }
/* END_SECTION:blog */

/* START_SECTION:cart (INDEX:3) */
.cart-page-wrapper {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 4rem 0 6rem 0;
    min-height: 70vh;
    font-family: 'Outfit', sans-serif;
  }
  .cart-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .cart-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  .cart-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
  }

  .cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  @media (max-width: 1024px) {
    .cart-grid { grid-template-columns: 1fr; gap: 2rem; }
  }

  /* Cart items list */
  .cart-items-table {
    width: 100%;
    border-collapse: collapse;
  }
  .cart-items-table th {
    text-align: left;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(128,0,32,0.1);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
  }
  .cart-item-row {
    border-bottom: 1px solid rgba(128,0,32,0.06);
  }
  .cart-item-row:last-child { border-bottom: none; }
  
  .cart-item__image-cell {
    padding: 1.5rem 0;
    width: 80px;
  }
  .cart-item__image-wrap {
    width: 60px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #f5f5f5;
  }
  .cart-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item__details-cell {
    padding: 1.5rem 1rem;
  }
  .cart-item__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
  }
  .cart-item__title:hover { color: var(--primary-color); }
  .cart-item__variant {
    font-size: 0.85rem;
    color: #777;
    margin: 0 0 0.75rem 0;
  }
  .cart-item__remove-btn {
    font-size: 0.82rem;
    color: #a03030;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
  }
  .cart-item__remove-btn:hover { color: var(--primary-color); }

  .cart-item__price-cell, .cart-item__total-cell {
    padding: 1.5rem 0;
    font-size: 1.05rem;
  }
  .cart-item__price { color: #555; }
  .cart-item__total { font-weight: 700; color: var(--primary-color); }
  .text-right { text-align: right; }

  /* Quantity Selector in Cart */
  .cart-item__qty-cell {
    padding: 1.5rem 1rem;
    width: 120px;
  }
  .quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(128,0,32,0.15);
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
  }
  .qty-btn {
    width: 32px; height: 32px;
    border: none; background: transparent;
    cursor: pointer;
    font-size: 1rem;
    color: var(--primary-color);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .qty-btn:hover { background-color: rgba(128,0,32,0.05); }
  .qty-input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(128,0,32,0.15);
    border-right: 1px solid rgba(128,0,32,0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
  }
  .qty-input::-webkit-outer-spin-button,
  .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Summary Card */
  .summary-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(128,0,32,0.08);
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
  }
  .summary-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .subtotal-row {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: none;
    padding-bottom: 1.25rem;
  }
  .shipping-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 1.75rem 0;
    line-height: 1.4;
  }
  
  .btn--full { width: 100%; display: block; }
  .btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin-bottom: 0.75rem;
  }
  .btn--outline:hover {
    background-color: rgba(128,0,32,0.05);
  }

  .summary-trust {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.05);
  }
  .summary-trust svg { color: var(--primary-color); flex-shrink: 0; }

  /* Empty Cart State */
  .cart-empty-container {
    text-align: center;
    padding: 5rem 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(128,0,32,0.08);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
  }
  .empty-cart-icon {
    width: 64px; height: 64px;
    color: #ccc;
    margin-bottom: 1.5rem;
  }
  .cart-empty-container h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
  }
  .cart-empty-container p {
    color: #666;
    margin-bottom: 2rem;
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:4) */
/* ── Collection-page-only: fix overflow-x so position:sticky works ── */
  /* overflow-x:hidden on html/body creates a scroll container that breaks
     position:sticky. We scope this override only to collection pages. */
  html.page--collection,
  html.page--collection body {
    overflow-x: clip;
  }

  .collection-page {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding-bottom: 6rem;
    font-family: 'Outfit', sans-serif;
  }
  .collection-header {
    background: transparent;
    color: var(--color-primary);
    padding: 3rem 2rem 1.5rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .collection-title {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    font-family: 'Outfit', sans-serif;
  }
  .collection-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
  }

  /* Sub Category Bubble Nav */
  .sub-categories {
    margin-bottom: 2rem;
    position: relative;
    z-index: 5;
  }
  .sub-categories__scroller {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem;
    scrollbar-width: none;
  }
  .sub-categories__scroller::-webkit-scrollbar {
    display: none;
  }
  .category-bubble {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.6rem 1.5rem 0.6rem 0.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
  }
  .category-bubble:hover, .category-bubble.is-active {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.1);
  }
  .category-bubble.is-active .category-bubble__label {
    color: var(--color-primary);
    font-weight: 600;
  }
  .category-bubble__image {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
  }
  .category-bubble__placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(128, 0, 32, 0.05);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-bubble__label {
    font-size: 0.95rem;
    font-weight: 500;
  }

  /* Collection Layout */
  .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .collection-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
  }

  /* Sidebar Filters — sticky while page scrolls */
  .collection-sidebar {
    background-color: transparent;
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(128, 0, 32, 0.2) transparent;
  }
  .collection-sidebar::-webkit-scrollbar {
    width: 4px;
  }
  .collection-sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(128, 0, 32, 0.25);
    border-radius: 3px;
  }
  .collection-sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid rgba(0,0,0,0.08);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .filter-title {
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-primary);
  }
  .filter-clear-all {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .filter-group {
    border-bottom: 1.5px solid rgba(0,0,0,0.08);
    padding: 1.2rem 0;
  }
  .filter-group:last-child {
    border-bottom: none;
  }
  .filter-group-summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    color: var(--color-primary);
  }
  .filter-group-summary::-webkit-details-marker {
    display: none;
  }
  .filter-group-summary .arrow {
    width: 6px;
    height: 6px;
    border-bottom: 1.5px solid var(--color-primary);
    border-right: 1.5px solid var(--color-primary);
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-right: 4px;
  }
  .filter-group[open] .filter-group-summary .arrow {
    transform: rotate(-135deg);
  }
  .filter-group-display {
    padding-top: 1rem;
  }
  .filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .filter-item {
    display: flex;
    align-items: center;
  }
  .filter-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    color: #444;
  }
  .filter-label input {
    display: none;
  }
  .custom-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0,0,0,0.25);
    border-radius: 2px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s, background-color 0.2s;
  }
  .filter-label input:checked + .custom-checkbox {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  .filter-label input:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 3px;
    height: 7px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
  }
  .label-text {
    flex-grow: 1;
  }
  .count {
    color: #888;
    font-size: 0.8rem;
  }
  
  /* Price Range */
  .price-range-inputs {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .price-input {
    position: relative;
    flex: 1;
  }
  .currency-symbol {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #888;
  }
  .price-input input {
    width: 100%;
    padding: 0.4rem 0.4rem 0.4rem 20px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    box-sizing: border-box;
    font-size: 0.85rem;
  }
  .to {
    color: #888;
    font-size: 0.85rem;
  }

  /* Apply Filters Button */
  .filter-apply-wrap {
    padding: 1.25rem 0 0.5rem;
  }
  .filter-apply-btn {
    width: 100%;
    padding: 0.7rem 1rem !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.05em;
    border-radius: 3px;
    cursor: pointer;
  }

  /* Price Range Warning */
  .price-range-warning {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding: 0.55rem 0.75rem;
    background-color: #fff5f5;
    border: 1px solid #fca5a5;
    border-radius: 4px;
    color: #b91c1c;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.4;
    animation: shake 0.35s ease;
  }
  .price-range-warning--visible {
    display: flex !important;
  }
  .price-range-warning svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: #b91c1c;
  }
  .price-input--error input {
    border-color: #f87171 !important;
    box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.2) !important;
    background-color: #fff5f5 !important;
  }
  @keyframes shake {
    0%   { transform: translateX(0); }
    20%  { transform: translateX(-5px); }
    40%  { transform: translateX(5px); }
    60%  { transform: translateX(-4px); }
    80%  { transform: translateX(4px); }
    100% { transform: translateX(0); }
  }

  /* Main Toolbar */
  .collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background-color: transparent;
    border-bottom: 1.5px solid rgba(0,0,0,0.08);
    padding: 0 0 1rem 0;
  }
  .toolbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .collection-toolbar .product-count {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    text-transform: none;
    letter-spacing: 0;
  }
  .active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .active-filter-tag {
    background-color: rgba(128, 0, 32, 0.06);
    border: 1px solid rgba(128, 0, 32, 0.12);
    color: var(--color-primary);
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    transition: background-color 0.2s;
  }
  .active-filter-tag:hover {
    background-color: rgba(128, 0, 32, 0.1);
  }
  .remove-icon {
    font-size: 0.9rem;
    font-weight: bold;
  }
  .sort-selector {
    display: flex;
    align-items: center;
  }
  .sort-selector select {
    padding: 0.4rem 2rem 0.4rem 1rem;
    border: 1px solid rgba(128, 0, 32, 0.25);
    border-radius: 2px;
    font-size: 0.9rem;
    background-color: #fff;
    cursor: pointer;
    color: var(--color-primary);
    font-weight: 500;
  }

  /* Product Cards Grid */
  .products-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .products-grid--4-col {
    grid-template-columns: repeat(4, 1fr);
  }
  .product-card {
    background: transparent;
    overflow: hidden;
    position: relative;
  }
  .product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .product-card__image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
  }
  .product-card__image-wrapper.portrait {
    aspect-ratio: 3 / 4;
  }
  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .product-card:hover .product-card__image {
    transform: scale(1.04);
  }
  .badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    z-index: 2;
    letter-spacing: 0.05em;
  }
  .badge--sale {
    background-color: var(--color-primary);
    color: #fff;
  }
  .badge--sold-out {
    background-color: #ffffff;
    color: var(--color-primary);
    border-left: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .product-card__info {
    padding: 1rem 0;
    text-align: center;
  }
  .product-card__title {
    margin: 0 0 0.4rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.4;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card__price {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    color: #444;
  }
  .price__current {
    color: var(--color-primary);
  }
  .price__compare {
    text-decoration: line-through;
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
  }
  .product-card__save {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
  }

  .collection-page .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    text-decoration: none;
    cursor: pointer;
  }
  .collection-page .btn--primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 1px solid var(--color-primary);
  }
  .collection-page .btn--primary:hover {
    background-color: #2B1D1D;
    border-color: #2B1D1D;
    transform: translateY(-2px);
  }

  /* No Products */
  .no-products {
    grid-column: span 4;
    text-align: center;
    padding: 5rem 2rem;
    background-color: #fff;
    border: 1px dashed rgba(0,0,0,0.15);
    border-radius: 2px;
  }
  .no-products p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
  }

  /* ── Pagination ── */
  .pagination {
    grid-column: span 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 3.5rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(128, 0, 32, 0.07);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .pagination a,
  .pagination em.current,
  .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.8rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    color: #2B1D1D;
    letter-spacing: 0.02em;
    transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    font-style: normal;
    white-space: nowrap;
  }
  .pagination a:hover {
    background-color: rgba(128, 0, 32, 0.08);
    color: var(--color-primary);
    transform: translateY(-1px);
  }
  .pagination em.current {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(128, 0, 32, 0.35);
    pointer-events: none;
  }
  /* Previous / Next arrow links */
  .pagination a[rel="prev"],
  .pagination a[rel="next"] {
    background-color: rgba(128, 0, 32, 0.06);
    color: var(--color-primary);
    padding: 0 1.1rem;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
  }
  .pagination a[rel="prev"]:hover,
  .pagination a[rel="next"]:hover {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(128, 0, 32, 0.25);
    transform: translateY(-1px);
  }
  /* Ellipsis spacer */
  .pagination span.deco {
    color: #aaa;
    font-weight: 400;
    pointer-events: none;
    padding: 0 0.2rem;
    min-width: unset;
  }

  @media (max-width: 991px) {
    .collection-layout {
      grid-template-columns: 1fr;
    }
    .collection-sidebar {
      display: none;
    }
    .products-grid--4-col {
      grid-template-columns: repeat(3, 1fr);
    }
    .no-products {
      grid-column: span 3;
    }
    .pagination {
      grid-column: 1 / -1;
      margin-left: auto;
      margin-right: auto;
    }
  }
  @media (max-width: 768px) {
    .products-grid--4-col {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .no-products {
      grid-column: span 2;
    }
    .pagination {
      grid-column: 1 / -1;
      margin-left: auto;
      margin-right: auto;
      padding: 1rem 1rem;
    }
    .pagination a,
    .pagination em.current,
    .pagination span {
      min-width: 34px;
      height: 34px;
      font-size: 0.82rem;
    }
  }
  @media (max-width: 576px) {
    .collection-title {
      font-size: 2rem;
    }
    .products-grid--4-col {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .product-card__info {
      padding: 0.75rem 0;
    }
    .product-card__title {
      font-size: 0.85rem;
    }
    .product-card__price {
      font-size: 0.85rem;
    }
    .product-card__save {
      font-size: 0.75rem;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5) */
.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-us (INDEX:6) */
.contact-page-wrapper {
    background-color: #FDFBF7;
    color: #2B1D1D;
    padding: 5rem 0 7rem 0;
    font-family: 'Outfit', sans-serif;
  }
  .contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .contact-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  .contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 0.5rem;
  }
  .contact-subtitle {
    font-size: 1.1rem;
    color: #666;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
  }
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }

  /* Info Column */
  .contact-info-panel {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(128,0,32,0.08);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  }
  .info-panel-title {
    color: #800020;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  .info-panel-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }
  .info-item:last-child {
    margin-bottom: 0;
  }
  .info-icon {
    width: 1.6rem;
    height: 1.6rem;
    color: #800020;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }
  .info-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2B1D1D;
    margin: 0 0 0.25rem 0;
  }
  .info-details p {
    margin: 0;
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
  }

  /* Form Column */
  .contact-form-panel {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(128,0,32,0.08);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  @media (max-width: 480px) {
    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  .form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #2B1D1D;
  }
  .form-group input, .form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(128,0,32,0.15);
    background-color: #fcfcfc;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .form-group input:focus, .form-group textarea:focus {
    border-color: #800020;
    box-shadow: 0 0 0 3px rgba(128,0,32,0.06);
    background-color: #fff;
  }

  .form-feedback {
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  .form-feedback.success {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.2);
  }
  .form-feedback.error {
    background-color: rgba(192, 57, 43, 0.1);
    color: #c0392b;
    border: 1px solid rgba(192, 57, 43, 0.2);
  }

  .btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
  }
  .btn--primary {
    background-color: #800020;
    color: #fff;
  }
  .btn--primary:hover {
    background-color: #600018;
    transform: translateY(-2px);
  }
  .submit-btn {
    width: 100%;
    margin-top: 0.5rem;
  }
/* END_SECTION:contact-us */

/* START_SECTION:coupon-popup (INDEX:7) */
.coupon-popup-overlay {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  
  .coupon-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .coupon-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 29, 29, 0.4);
    backdrop-filter: blur(4px);
  }

  /* Centered Modal Card */
  .coupon-popup--modal .coupon-popup-card {
    background: #ffffff;
    border: 3px dashed var(--primary-color, #800020);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .coupon-popup-overlay.active .coupon-popup-card {
    transform: scale(1);
  }

  /* Slide-in Corner Card */
  .coupon-popup--slide-in {
    position: fixed;
    top: auto;
    bottom: 24px;
    left: auto;
    right: 24px;
    width: auto;
    height: auto;
    background: transparent;
    pointer-events: none;
  }

  .coupon-popup--slide-in .coupon-popup-card {
    background: #ffffff;
    border: 2px dashed var(--primary-color, #800020);
    padding: 1.75rem;
    border-radius: 8px;
    width: 320px;
    position: relative;
    box-shadow: 0 4px 20px rgba(128, 0, 32, 0.12);
    transform: translateY(100px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
  }

  .coupon-popup-overlay.active.coupon-popup--slide-in .coupon-popup-card {
    transform: translateY(0);
  }

  .coupon-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .coupon-popup-close:hover {
    color: #333;
    background-color: rgba(0,0,0,0.05);
  }

  .coupon-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .coupon-popup-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-color, #800020);
    font-weight: 700;
  }

  .coupon-popup-badge {
    background-color: var(--primary-color, #800020);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-top: 0.25rem;
  }

  .coupon-popup-title {
    margin: 0.5rem 0 0;
    font-size: 1.5rem;
    font-family: serif;
    color: #2b1d1d;
  }

  .coupon-popup-desc {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
  }

  .coupon-popup-code-container {
    display: flex;
    align-items: center;
    border: 1px dashed rgba(128, 0, 32, 0.3);
    background-color: rgba(128, 0, 32, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  .coupon-popup-code {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color, #800020);
    flex-grow: 1;
    padding: 0.5rem 1rem;
    letter-spacing: 0.08em;
    word-break: break-all;
  }

  .coupon-popup-copy-btn {
    border: none;
    border-left: 1px dashed rgba(128, 0, 32, 0.3);
    background: transparent;
    color: var(--primary-color, #800020);
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0 1.25rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    align-self: stretch;
    transition: all 0.2s ease;
  }

  .coupon-popup-copy-btn:hover,
  .coupon-popup-copy-btn.copied {
    background-color: var(--primary-color, #800020);
    color: #ffffff;
  }

  .coupon-popup-terms {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
  }
/* END_SECTION:coupon-popup */

/* START_SECTION:coupons (INDEX:8) */
.coupons-section {
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    background-color: var(--bg-color);
  }
  .page-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
  }
  .section-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-color, #800020);
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  .section-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-family: serif;
  }
  .coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    justify-content: center;
  }
  .coupon-card {
    border: 2px dashed var(--primary-color, #800020);
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .coupon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(128, 0, 32, 0.08);
  }
  .coupon-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .coupon-badge {
    background-color: var(--primary-color, #800020);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
  }
  .coupon-section-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: 1px solid var(--primary-color, #800020);
    color: var(--primary-color, #800020);
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .coupon-section-copy-btn:hover, .coupon-section-copy-btn.copied {
    background-color: var(--primary-color, #800020);
    color: #fff;
  }
  .coupon-code-display {
    display: flex;
  }
  .coupon-code-text {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.1rem;
    background-color: rgba(128, 0, 32, 0.05);
    color: var(--primary-color, #800020);
    border: 1px dashed rgba(128, 0, 32, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    letter-spacing: 0.08em;
    width: 100%;
    text-align: center;
    word-break: break-all;
    box-sizing: border-box;
  }
  .coupon-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .coupon-title {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
  }
  .coupon-desc {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
  }
  .coupon-terms {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
  }
/* END_SECTION:coupons */

/* START_SECTION:custom-section (INDEX:9) */
.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:featured-products (INDEX:10) */
.featured-products {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 2rem;
  }
  .featured-products .container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
  }
  .featured-products .subheading {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold, #D4AF37);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  .featured-products .heading {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 3.5rem;
    color: var(--color-primary, #800020);
    position: relative;
    display: inline-block;
  }
  .featured-products .heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-gold, #D4AF37);
  }
  .featured-products .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    margin-bottom: 4rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
  .featured-products .products-grid::-webkit-scrollbar {
    display: none;
  }
  .featured-products .product-card {
    flex: 0 0 calc(25% - 1.5rem);
    scroll-snap-align: start;
    background: transparent;
    overflow: hidden;
    position: relative;
  }
  .featured-products .product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .featured-products .product-card__image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
  }
  .featured-products .product-card__image-wrapper.square {
    aspect-ratio: 1 / 1;
  }
  .featured-products .product-card__image-wrapper.portrait {
    aspect-ratio: 3 / 4;
  }
  .featured-products .product-card__image-wrapper.adapt img {
    height: auto;
  }
  .featured-products .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .featured-products .product-card:hover .product-card__image {
    transform: scale(1.04);
  }
  .featured-products .placeholder-svg {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: #eee;
  }
  .featured-products .badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    z-index: 2;
    letter-spacing: 0.05em;
  }
  .featured-products .badge--sale {
    background-color: var(--color-primary, #800020);
    color: #fff;
  }
  .featured-products .badge--sold-out {
    background-color: #ffffff;
    color: var(--color-primary, #800020);
    border-left: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .featured-products .product-card__info {
    padding: 1rem 0;
    text-align: center;
  }
  .featured-products .product-card__title {
    margin: 0 0 0.4rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary, #800020);
    line-height: 1.4;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .featured-products .product-card__price {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    color: #444;
  }
  .featured-products .price__current {
    color: var(--color-primary, #800020);
  }
  .featured-products .price__compare {
    text-decoration: line-through;
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
  }
  .featured-products .product-card__save {
    font-size: 0.85rem;
    color: var(--color-primary, #800020);
    font-weight: 600;
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
  }
  .featured-products .section-actions {
    margin-top: 2rem;
  }
  .featured-products .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    text-decoration: none;
    cursor: pointer;
  }
  .featured-products .btn--primary {
    background-color: var(--color-primary, #800020);
    color: #fff;
    border: 1px solid var(--color-primary, #800020);
  }
  .featured-products .btn--primary:hover {
    background-color: #2B1D1D;
    border-color: #2B1D1D;
    transform: translateY(-2px);
  }

  @media (max-width: 991px) {
    .featured-products .product-card {
      flex: 0 0 calc(33.333% - 1rem);
    }
  }
  @media (max-width: 768px) {
    .featured-products .products-grid {
      gap: 1.5rem;
    }
    .featured-products .product-card {
      flex: 0 0 calc(50% - 0.75rem);
    }
    .featured-products .heading {
      font-size: 2rem;
    }
  }
  @media (max-width: 576px) {
    .featured-products .products-grid {
      gap: 1rem;
    }
    .featured-products .product-card {
      flex: 0 0 calc(50% - 0.5rem);
    }
    .featured-products .product-card__info {
      padding: 0.75rem 0;
    }
    .featured-products .product-card__title {
      font-size: 0.85rem;
    }
    .featured-products .product-card__price {
      font-size: 0.85rem;
    }
    .featured-products .product-card__save {
      font-size: 0.75rem;
    }
  }
/* END_SECTION:featured-products */

/* START_SECTION:footer (INDEX:11) */
.site-footer {
    background-color: #2b1d1d;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--color-gold);
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }
  @media (max-width: 600px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.5rem;
  }
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
  }
  .footer-desc {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
  }
  .footer-social-icons {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.5rem;
  }
  .footer-social-icons a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-social-icons a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
  }
  .wholesale-tag {
    background-color: var(--color-gold);
    color: #2b1d1d;
    padding: 0.35rem 0.75rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    width: fit-content;
    border-radius: 2px;
  }
  .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .footer-links-list a:hover {
    color: var(--color-gold);
    padding-left: 5px;
  }
  .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  .footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.4;
  }
  .contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-gold);
    flex-shrink: 0;
  }
  /* Newsletter field */
  .newsletter-field-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .newsletter-input {
    width: 100%;
    padding: 0.65rem 1rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    outline: none;
    font-size: 0.85rem;
    transition: border-color 0.2s;
  }
  .newsletter-input:focus {
    border-color: var(--color-gold);
  }
  .newsletter-submit-btn {
    background-color: var(--color-gold);
    color: #2b1d1d;
    border: none;
    padding: 0.65rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  .newsletter-submit-btn:hover {
    background-color: #ffffff;
  }
  /* Footer bottom */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
  }
  @media (max-width: 600px) {
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1.25rem;
    }
    .footer-payment {
      justify-content: center;
    }
  }
  .footer-copyright a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  }
  .footer-copyright a:hover {
    color: var(--color-gold);
  }
  .footer-payment {
    display: flex;
    gap: 0.5rem;
  }
  .footer-payment svg {
    width: 2.5rem;
    height: auto;
  }
/* END_SECTION:footer */

/* START_SECTION:full-width-video (INDEX:12) */
.full-width-video {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .full-width-video .video-container {
    position: relative;
    width: 100%;
    min-height: var(--min-height);
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
  .video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
  }
  iframe.video-background {
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 ratio */
  }
  .video-placeholder-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .video-placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    background-color: #2B1D1D;
  }
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    opacity: var(--overlay-opacity);
    z-index: 2;
  }
  
  .video-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
  }
  .video-content-wrap--left {
    justify-content: flex-start;
  }
  .video-content-wrap--right {
    justify-content: flex-end;
  }

  .video-card {
    background: #ffffff;
    padding: 3rem;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    text-align: left;
  }

  .video-card .subheading {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a3727b;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .video-card .heading {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    color: #2b1d1d;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
  }

  .video-card .description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #554444;
    margin-bottom: 2.5rem;
  }

  .btn--video-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: #800020;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .btn--video-shop:hover {
    background-color: #D4AF37;
    color: #2b1d1d;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .video-content-wrap {
      justify-content: center;
      padding: 2rem 1rem;
    }
    .video-card {
      padding: 2rem;
      max-width: 100%;
    }
    .video-card .heading {
      font-size: 1.8rem;
    }
    .video-card .description {
      font-size: 0.95rem;
    }
  }
/* END_SECTION:full-width-video */

/* START_SECTION:gallery (INDEX:13) */
.lookbook-gallery {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
  }

  .lookbook-gallery .gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
  }

  .lookbook-gallery .gallery-heading {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    color: var(--accent-color, #800020);
    text-transform: uppercase;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
  }

  .gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
  }

  .gallery-carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
  }

  .gallery-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: var(--grid-gap);
  }

  .gallery-carousel-slide {
    flex: 0 0 calc(33.333% - (var(--grid-gap) * 2 / 3));
    box-sizing: border-box;
    position: relative;
  }

  @media (max-width: 991px) {
    .gallery-carousel-slide {
      flex: 0 0 calc(50% - (var(--grid-gap) / 2));
    }
  }

  @media (max-width: 576px) {
    .gallery-carousel-slide {
      flex: 0 0 100%;
    }
  }

  .gallery-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    background-color: #eaeaea;
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .gallery-image-wrapper--placeholder {
    aspect-ratio: 3 / 4;
  }

  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
  }

  .gallery-carousel-slide:hover .gallery-img {
    transform: scale(1.06);
  }

  .placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Overlay on hover */
  .gallery-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.60) 0%,
      rgba(0, 0, 0, 0.15) 50%,
      transparent 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.75rem 1.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    box-sizing: border-box;
  }

  .gallery-carousel-slide:hover .gallery-slide-overlay {
    opacity: 1;
  }

  /* Explore button */
  .gallery-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.96);
    color: var(--accent-color, #800020);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transform: translateY(12px);
    transition:
      transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      background-color 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
  }

  .gallery-carousel-slide:hover .gallery-explore-btn {
    transform: translateY(0);
  }

  .gallery-explore-btn:hover {
    background-color: var(--accent-color, #800020);
    color: #fff;
    border-color: var(--accent-color, #800020);
    box-shadow: 0 6px 24px rgba(128, 0, 32, 0.35);
  }

  .gallery-explore-btn svg {
    flex-shrink: 0;
    transition: stroke 0.25s ease;
  }

  /* Slider Controls */
  .gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color, #800020);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .gallery-control:hover {
    transform: translateY(-50%) scale(1.08);
    opacity: 0.95;
  }

  .gallery-control--prev {
    left: -20px;
  }

  .gallery-control--next {
    right: -20px;
  }

  @media (max-width: 768px) {
    .gallery-control {
      width: 36px;
      height: 36px;
    }
    .gallery-control--prev {
      left: -10px;
    }
    .gallery-control--next {
      right: -10px;
    }
  }

  /* Dots indicator */
  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .gallery-dot {
    background: #e0e0e0;
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
  }

  .gallery-dot.active {
    background: var(--accent-color, #800020);
    transform: scale(1.2);
  }
/* END_SECTION:gallery */

/* START_SECTION:header (INDEX:14) */
/* ── Announcement Bar ── */
  .announcement-bar {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--color-gold);
  }
  .announcement-bar__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .announcement-link { color: var(--color-gold); font-weight: 600; text-decoration: underline; }
  .announcement-link:hover { color: #fff; }
  .separator { color: rgba(255,255,255,0.3); }

  /* ── Site Header Shell ── */
  .site-header {
    background: rgba(253,251,247,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(128,0,32,0.08);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(0,0,0,0.03);
  }
  .header-inner {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    height: 72px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  /* ── Logo ── */
  .header-logo { display: flex; align-items: center; }
  .logo-link { display: flex; text-decoration: none; }
  .logo-img { height: 52px; width: auto; object-fit: contain; display: block; }

  /* ── Center (Nav + Search) ── */
  .header-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
  }

  /* ── Main Nav ── */
  .nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .nav-item { position: relative; }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .nav-link:hover, .nav-link--active {
    background: rgba(128,0,32,0.06);
    color: var(--color-primary);
  }
  .chevron-icon { width: 0.9rem; height: 0.9rem; transition: transform 0.25s; flex-shrink: 0; }
  .nav-item--has-dropdown:hover .chevron-icon { transform: rotate(180deg); }

  /* ── Mega Dropdown ── */
  .dropdown-mega {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid rgba(128,0,32,0.1);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 300;
  }
  .nav-item--has-dropdown:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .mega-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 1.5rem;
  }
  .mega-col {
    padding: 0 1.25rem;
    border-right: 1px solid rgba(128,0,32,0.07);
  }
  .mega-col:last-child { border-right: none; }
  .mega-col-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    padding-bottom: 0.65rem;
    margin-bottom: 0.65rem;
    border-bottom: 2px solid var(--color-gold);
    letter-spacing: 0.02em;
  }
  .col-icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
  .sub-menu {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .sub-menu a {
    display: block;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: background 0.15s, color 0.15s, padding-left 0.2s;
  }
  .sub-menu a:hover {
    background: rgba(128,0,32,0.06);
    color: var(--color-primary);
    padding-left: 0.85rem;
  }

  /* ── Search Form ── */
  .header-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid rgba(128,0,32,0.15);
    border-radius: 24px;
    padding: 0.35rem 0.75rem;
    gap: 0.4rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    min-width: 220px;
  }
  .header-search-form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(128,0,32,0.08);
  }
  .search-prefix-btn {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .search-prefix-icon { width: 1rem; height: 1rem; color: #999; flex-shrink: 0; transition: color 0.2s, transform 0.2s; }
  .search-prefix-btn:hover .search-prefix-icon {
    color: var(--color-primary);
    transform: scale(1.15);
  }
  .header-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.88rem;
    color: var(--color-foreground);
    width: 100%;
  }
  .header-search-input::placeholder { color: #aaa; }

  /* ── Right Actions ── */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.45rem 0.6rem;
    border-radius: 8px;
    color: var(--color-foreground);
    text-decoration: none;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    border: none;
    background: none;
    position: relative;
    user-select: none;
  }
  .action-btn svg { width: 1.45rem; height: 1.45rem; }
  .action-btn:hover { background: rgba(128,0,32,0.06); color: var(--color-primary); }
  .action-label { font-size: 0.68rem; line-height: 1; }
  .action-icon-wrap { position: relative; display: flex; }
  .cart-badge {
    position: absolute;
    top: -5px; right: -8px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 2px;
    border: 1.5px solid rgba(253,251,247,0.97);
  }
  .wishlist-badge {
    position: absolute;
    top: -5px; right: -8px;
    background: var(--color-gold);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    padding: 2px;
    border: 1.5px solid rgba(253,251,247,0.97);
  }

  /* ── 3-dot Dropdown ── */
  .action-btn--dots { position: relative; }
  .dots-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid rgba(128,0,32,0.1);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 300;
    overflow: hidden;
  }
  .action-btn--dots.open .dots-dropdown,
  .action-btn--dots[aria-expanded="true"] .dots-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dots-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
  }
  .dots-item svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
  .dots-item:hover { background: rgba(128,0,32,0.06); color: var(--color-primary); }
  .dots-item--logout { color: #c0392b; }
  .dots-item--logout:hover { background: rgba(192,57,43,0.07); color: #c0392b; }

  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--color-foreground);
  }
  .mobile-menu-toggle svg {
    width: 1.8rem;
    height: 1.8rem;
    display: block;
  }

  /* ── Mobile Drawer ── */
  .mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s;
  }
  .mobile-drawer[aria-hidden="false"] {
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-drawer__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .mobile-drawer[aria-hidden="false"] .mobile-drawer__overlay {
    opacity: 1;
  }
  .mobile-drawer__content {
    position: absolute;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: #fdfbf7;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(0);
  }
  .mobile-drawer[aria-hidden="false"] .mobile-drawer__content {
    transform: translateX(320px);
  }
  .mobile-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(128, 0, 32, 0.08);
  }
  .mobile-drawer__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.03em;
  }
  .mobile-drawer__close {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-drawer__close svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  .mobile-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
  }
  
  /* Mobile Navigation List */
  .mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .mobile-nav__item {
    border-bottom: 1px solid rgba(128, 0, 32, 0.04);
  }
  .mobile-nav__item:last-child {
    border-bottom: none;
  }
  .mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
  }
  .mobile-nav__link:hover, .mobile-nav__link--active {
    color: var(--color-primary);
  }
  .mobile-nav__link svg.chevron-icon {
    width: 1.1rem;
    height: 1.1rem;
    transition: transform 0.25s;
  }
  .mobile-nav__submenu-trigger[aria-expanded="true"] svg.chevron-icon {
    transform: rotate(180deg);
  }
  
  /* Submenus & Accordion styling */
  .mobile-nav__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(128, 0, 32, 0.02);
    border-radius: 8px;
    padding: 0 0.75rem;
  }
  .mobile-nav__submenu-trigger[aria-expanded="true"] + .mobile-nav__submenu {
    max-height: 1000px;
    padding: 0.5rem 0.75rem;
  }
  .mobile-nav__submenu-section {
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(128, 0, 32, 0.06);
  }
  .mobile-nav__submenu-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .mobile-nav__submenu-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    background: none;
    border: none;
    cursor: pointer;
  }
  .mobile-nav__sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-nav__submenu-trigger[aria-expanded="true"] + .mobile-nav__sub-list {
    max-height: 250px;
    padding-bottom: 0.5rem;
  }
  .mobile-nav__sub-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.88rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-nav__sub-link:hover {
    color: var(--color-primary);
    padding-left: 1rem;
  }
  .mobile-drawer__footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(128, 0, 32, 0.08);
    background: #f8f5f0;
  }
  .mobile-drawer__section-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
  }
  .mobile-drawer__account-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .mobile-drawer__account-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-foreground);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-drawer__account-link:hover {
    color: var(--color-primary);
  }
  .mobile-drawer__account-link svg {
    color: var(--color-primary);
  }
  .mobile-drawer__account-link--logout {
    color: #c0392b;
  }
  .mobile-drawer__account-link--logout svg {
    color: #c0392b;
  }

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .header-inner { grid-template-columns: 150px 1fr auto; gap: 1rem; }
    .dropdown-mega { min-width: 480px; }
  }
  @media (max-width: 768px) {
    .header-inner {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
      height: auto;
      gap: 0.75rem 1rem;
    }
    .mobile-menu-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      grid-column: 1;
      grid-row: 1;
      position: relative;
      z-index: 10;
      cursor: pointer;
    }
    .header-logo {
      grid-column: 2;
      grid-row: 1;
      justify-self: center;
    }
    .logo-img {
      height: 40px;
    }
    .header-actions {
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
      position: relative;
      z-index: 10;
    }
    .header-center {
      grid-column: 1 / -1;
      grid-row: 2;
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
    }
    .main-nav { display: none; }
    .dropdown-mega { display: none; }
    .header-search-form { min-width: auto; width: 100%; }
    .action-label { display: none; }
    .header-inner { width: 100%; box-sizing: border-box; }
  }
  @media (max-width: 480px) {
    .announcement-bar {
      font-size: 0.75rem;
      padding: 0.4rem 0.5rem;
    }
    .announcement-bar__content {
      flex-direction: column;
      gap: 0.2rem;
    }
    .announcement-bar__content .separator {
      display: none;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:15) */
.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-carousel (INDEX:16) */
.hero-carousel {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 520;
    min-height: 220px;
    max-height: 600px;
    overflow: hidden;
    background-color: #faf9f6;
  }

  .hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
  }

  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .slide-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
  }

  .slide-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a101d 0%, #1f0409 100%);
    z-index: 1;
  }

  /* Traditional Indian motif pattern effect in fallback */
  .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 0), radial-gradient(var(--color-gold) 1px, transparent 0);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
  }

  .hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    pointer-events: none;
  }

  .slide-content-wrapper {
    position: relative;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
    width: 100%;
    z-index: 3;
    display: flex;
  }

  .slide-content-wrapper.align-left {
    justify-content: flex-start;
  }

  .slide-content-wrapper.align-center {
    justify-content: center;
    text-align: center;
  }

  .slide-content-wrapper.align-right {
    justify-content: flex-end;
    text-align: right;
  }

  .slide-content {
    max-width: 650px;
    color: #ffffff;
  }

  .slide-subheading {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
  }

  .slide-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: #ffffff;
    font-family: serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .slide-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 2.2rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .slide-actions {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
  }

  .slide-btn-secondary {
    color: #ffffff !important;
    border-color: #ffffff !important;
  }

  .slide-btn-secondary:hover {
    background-color: #ffffff !important;
    color: var(--color-primary) !important;
  }

  /* Controls & Navigation */
  .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(43, 29, 29, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
  }

  .carousel-control:hover {
    background: var(--color-primary);
    border-color: var(--color-gold);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
  }

  .carousel-control--prev {
    left: 20px;
  }

  .carousel-control--next {
    right: 20px;
  }

  .carousel-control svg {
    width: 20px;
    height: 20px;
  }

  .carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }

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

  .carousel-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
  }

  @media (max-width: 1200px) {
    .hero-carousel {
      aspect-ratio: 16 / 5.2;
      height: auto;
    }
  }

  @media (max-width: 768px) {
    .hero-carousel {
      aspect-ratio: 16 / 7;
      height: auto;
      min-height: 200px;
    }
    .slide-content-wrapper.align-right {
      justify-content: center;
      text-align: center;
    }
    .slide-content-wrapper.align-left {
      justify-content: center;
      text-align: center;
    }
    .slide-content {
      padding: 1rem 0.5rem;
    }
    .slide-subheading {
      font-size: 0.85rem;
      margin-bottom: 0.5rem;
    }
    .slide-title {
      font-size: clamp(1.6rem, 6vw, 2.2rem);
      margin-bottom: 0.8rem;
    }
    .slide-description {
      font-size: 0.95rem;
      margin-bottom: 1.2rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .slide-actions {
      justify-content: center;
      margin-top: 1.2rem;
      gap: 0.6rem;
    }
    .slide-actions .btn {
      padding: 0.65rem 1.2rem;
      font-size: 0.85rem;
    }
    .carousel-control {
      display: none;
    }
    .carousel-dots {
      bottom: 15px;
    }
  }

  @media (max-width: 480px) {
    .hero-carousel {
      aspect-ratio: 16 / 8.5;
      height: auto;
      min-height: 160px;
    }
  }
/* END_SECTION:hero-carousel */

/* START_SECTION:hero-intro (INDEX:17) */
.hero-intro {
    padding: 5rem 0 4rem;
    background-color: var(--color-background);
    text-align: center;
    border-bottom: 1px solid rgba(128, 0, 32, 0.05);
  }

  .hero-intro__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .intro-subheading {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
  }

  .intro-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.25;
    color: var(--color-primary);
    font-family: serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .intro-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
  }

  .intro-actions {
    display: inline-flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  @media (max-width: 600px) {
    .hero-intro {
      padding: 3.5rem 0 3rem;
    }
    .intro-actions {
      flex-direction: column;
      width: 100%;
      align-items: stretch;
    }
    .intro-actions .btn {
      width: 100%;
    }
  }
/* END_SECTION:hero-intro */

/* START_SECTION:journal (INDEX:18) */
.journal {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 2rem;
  }
  .journal .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .journal .subheading {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
  }
  .journal .heading {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 3.5rem;
    color: inherit;
    position: relative;
    display: inline-block;
  }
  .journal .heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #800020;
  }
  
  .journal-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
  }

  .journal-carousel-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
  }

  .journal-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2.5rem;
  }

  .journal-carousel-slide {
    flex: 0 0 calc(33.333% - (2.5rem * 2 / 3));
    box-sizing: border-box;
    position: relative;
  }

  .journal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
  }

  .journal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .journal-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .journal-card__image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f5f5f5;
  }

  .journal-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .journal-card:hover .journal-card__image {
    transform: scale(1.08);
  }

  .journal-card__date {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: #800020;
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 500;
  }

  .journal-card__content {
    padding: 2rem;
  }

  .journal-card__title {
    font-size: 1.3rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    font-family: 'Outfit', sans-serif;
    color: inherit;
  }

  .journal-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    opacity: 0.8;
  }

  .journal-card__more {
    font-size: 0.9rem;
    font-weight: 600;
    color: #800020;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }
  
  .journal-card__more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #800020;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .journal-card:hover .journal-card__more::after {
    transform: scaleX(1);
  }

  @media (max-width: 991px) {
    .journal-carousel-slide {
      flex: 0 0 calc(50% - (2.5rem / 2));
    }
  }

  @media (max-width: 768px) {
    .journal-carousel-slide {
      flex: 0 0 100%;
    }
    .journal .heading {
      font-size: 2rem;
    }
  }

  /* Slider Controls */
  .journal-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #800020;
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .journal-control:hover {
    transform: translateY(-50%) scale(1.08);
    opacity: 0.95;
  }

  .journal-control--prev {
    left: -20px;
  }

  .journal-control--next {
    right: -20px;
  }

  @media (max-width: 1280px) {
    .journal-control--prev {
      left: -10px;
    }
    .journal-control--next {
      right: -10px;
    }
  }

  @media (max-width: 768px) {
    .journal-control {
      width: 36px;
      height: 36px;
    }
    .journal-control--prev {
      left: -5px;
    }
    .journal-control--next {
      right: -5px;
    }
  }

  /* Dots indicator */
  .journal-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
  }

  .journal-dot {
    background: #e0e0e0;
    border: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
  }

  .journal-dot.active {
    background: #800020;
    transform: scale(1.2);
  }
/* END_SECTION:journal */

/* START_SECTION:main-account (INDEX:19) */
/* Custom Google Font load matching the theme's premium styling */
  @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

  .customer-account-wrapper {
    background-color: var(--color-background);
    color: var(--color-foreground);
    padding: 3rem 1.5rem 6rem 1.5rem;
    min-height: 80vh;
    font-family: 'Outfit', sans-serif;
  }

  .account-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  /* Premium Banner Styles */
  .account-banner {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a0012 100%);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(128, 0, 32, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
  }

  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }

  .banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }

  .banner-user-info {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .avatar-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .avatar-circle:hover {
    transform: scale(1.05);
  }

  .avatar-circle span {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
  }

  .welcome-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .welcome-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-gold);
    font-weight: 700;
  }

  .welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
  }

  .welcome-desc {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    line-height: 1.5;
    margin-top: 0.5rem;
  }

  .btn-logout-top-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .btn-logout-top-premium:hover {
    background-color: #ffffff;
    color: var(--color-primary);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  /* Metrics Grid */
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .metric-card {
    background-color: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.05);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(128, 0, 32, 0.05);
    border-color: rgba(212, 175, 55, 0.25);
  }

  .metric-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(128, 0, 32, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
  }

  .metric-card:hover .metric-icon {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
  }

  .metric-details {
    display: flex;
    flex-direction: column;
  }

  .metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-foreground);
    line-height: 1.2;
  }

  .metric-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.15rem;
  }

  /* Layout Columns */
  .account-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: start;
  }

  /* Panels (Unified Card Look) */
  .premium-profile-panel, .premium-orders-panel {
    background-color: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.05);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 10px 40px rgba(128, 0, 32, 0.02);
  }

  .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
  }

  .profile-badge {
    font-size: 0.72rem;
    background-color: rgba(212, 175, 55, 0.12);
    color: #947118;
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .orders-count-badge {
    font-size: 0.82rem;
    color: #777;
    background-color: #f7f7f7;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
  }

  .panel-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.2), transparent);
    margin: 2rem 0;
  }

  /* Profile list items */
  .panel-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .profile-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .detail-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #888;
    font-weight: 700;
  }

  .detail-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-foreground);
  }

  .panel-action-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    padding-bottom: 2px;
    transition: all 0.2s ease;
  }

  .panel-action-link:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
  }

  .address-formatted {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }

  .empty-address-msg {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
  }

  .btn--outline-gold {
    border: 1px solid var(--color-gold);
    background-color: transparent;
    color: var(--color-primary);
    padding: 0.75rem;
    font-size: 0.85rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .btn--outline-gold:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
  }

  /* Table styling */
  .orders-table-container {
    overflow-x: auto;
    margin: 0.5rem -1rem;
    padding: 0 1rem;
  }

  .premium-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
  }

  .premium-orders-table th {
    padding: 1rem 1.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #777;
    font-weight: 700;
    border-bottom: 2px solid rgba(128, 0, 32, 0.06);
  }

  .order-table-row {
    border-bottom: 1px solid rgba(128, 0, 32, 0.04);
    transition: background-color 0.25s ease;
  }

  .order-table-row:hover {
    background-color: rgba(128, 0, 32, 0.015);
  }

  .order-table-row:last-child {
    border-bottom: none;
  }

  .premium-orders-table td {
    padding: 1.25rem 1.25rem;
    vertical-align: middle;
  }

  .order-link-styled {
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.25s ease;
  }

  .order-link-styled:hover {
    color: var(--color-gold);
  }

  .amount-column {
    font-weight: 700;
    color: var(--color-primary);
  }

  /* Badges redesigned */
  .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.8rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
  }

  .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }

  /* Paid Statuses */
  .status-payment--paid, .status-fulfillment--fulfilled {
    background-color: #ecfdf5;
    color: #047857;
  }
  .status-payment--paid .status-dot, .status-fulfillment--fulfilled .status-dot {
    background-color: #10b981;
  }

  /* Pending Statuses */
  .status-payment--pending, .status-fulfillment--partial {
    background-color: #fffbeb;
    color: #b45309;
  }
  .status-payment--pending .status-dot, .status-fulfillment--partial .status-dot {
    background-color: #f59e0b;
  }

  /* Unfulfilled Statuses */
  .status-payment--unpaid, .status-fulfillment--unfulfilled {
    background-color: #fef2f2;
    color: #b91c1c;
  }
  .status-payment--unpaid .status-dot, .status-fulfillment--unfulfilled .status-dot {
    background-color: #ef4444;
  }

  /* Refunded or others */
  .status-payment--refunded {
    background-color: #eff6ff;
    color: #1d4ed8;
  }
  .status-payment--refunded .status-dot {
    background-color: #3b82f6;
  }

  .status-payment--voided {
    background-color: #f3f4f6;
    color: #4b5563;
  }
  .status-payment--voided .status-dot {
    background-color: #9ca3af;
  }

  /* Pagination styles */
  .premium-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(128, 0, 32, 0.05);
  }

  .pagination-current {
    font-size: 0.88rem;
    color: #666;
    font-weight: 500;
  }

  .btn--pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.08);
    color: var(--color-primary);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .btn--pagination-arrow:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.08);
  }

  /* Empty state styles */
  .premium-orders-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
    gap: 0.5rem;
  }

  .empty-state-visual {
    width: 90px;
    height: 90px;
    background-color: rgba(128, 0, 32, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(128, 0, 32, 0.2);
    border: 1.5px dashed rgba(212, 175, 55, 0.25);
    margin-bottom: 1.5rem;
  }

  .premium-orders-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
  }

  .premium-orders-empty p {
    font-size: 0.98rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 360px;
    line-height: 1.6;
  }

  .btn--shop-now {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 0.9rem 2.25rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(128, 0, 32, 0.15);
  }

  .btn--shop-now:hover {
    background-color: var(--color-gold);
    color: var(--color-background);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.25);
  }

  .btn--shop-now svg {
    transition: transform 0.25s ease;
  }

  .btn--shop-now:hover svg {
    transform: translateX(4px);
  }

  /* Responsive styling */
  @media (max-width: 991px) {
    .account-banner {
      padding: 3rem 2rem;
    }
    .welcome-title {
      font-size: 2.1rem;
    }
    .metrics-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .account-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  @media (max-width: 767px) {
    .customer-account-wrapper {
      padding: 2rem 1rem 4rem 1rem;
    }
    .account-banner {
      padding: 2.25rem 1.5rem;
      text-align: center;
    }
    .banner-content {
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .banner-user-info {
      flex-direction: column;
      gap: 1.25rem;
    }
    .welcome-desc {
      margin: 0.5rem auto 0 auto;
    }
    .metrics-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .btn-logout-top-premium {
      width: 100%;
      justify-content: center;
    }

    /* Stack tables on mobile */
    .premium-orders-table thead {
      display: none;
    }
    .premium-orders-table, .premium-orders-table tbody, .order-table-row, .premium-orders-table td {
      display: block;
      width: 100%;
    }
    .order-table-row {
      border-bottom: 2px solid rgba(128, 0, 32, 0.06);
      padding: 1.25rem 0;
    }
    .order-table-row:last-child {
      border-bottom: none;
    }
    .premium-orders-table td {
      text-align: right;
      padding: 0.5rem 0.5rem;
      border-bottom: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .premium-orders-table td::before {
      content: attr(data-label);
      font-weight: 700;
      color: #888;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .premium-orders-table td.text-right {
      text-align: right;
    }
    .premium-orders-table td.amount-column {
      font-size: 1.05rem;
    }
  }

  /* Premium Coupons Panel */
  .premium-coupons-panel {
    background-color: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.05);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 10px 40px rgba(128, 0, 32, 0.02);
  }

  .coupons-panel-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
  }

  .premium-coupon-card {
    border: 1px dashed rgba(128, 0, 32, 0.3);
    background-color: rgba(128, 0, 32, 0.01);
    border-radius: 12px;
    padding: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
  }

  .premium-coupon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.05);
    border-color: var(--color-primary);
  }

  /* Exclusive Coupon Styling */
  .premium-coupon-card.coupon-card--exclusive {
    border: 1px dashed var(--color-gold, #d4af37);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.08);
  }

  .premium-coupon-card.coupon-card--exclusive:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold, #d4af37);
  }

  .coupon-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
  }

  .coupon-badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    text-transform: uppercase;
    background-color: rgba(128, 0, 32, 0.06);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
  }

  .coupon-card--exclusive .coupon-badge-label {
    color: #947118;
    background-color: rgba(212, 175, 55, 0.15);
  }

  .coupon-mini-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: transparent;
    border: 1px solid rgba(128, 0, 32, 0.2);
    color: var(--color-primary);
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .coupon-card--exclusive .coupon-mini-copy-btn {
    border-color: rgba(212, 175, 55, 0.4);
    color: #947118;
  }

  .coupon-mini-copy-btn:hover,
  .coupon-mini-copy-btn.copied {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
  }

  .coupon-card--exclusive .coupon-mini-copy-btn:hover,
  .coupon-card--exclusive .coupon-mini-copy-btn.copied {
    background-color: var(--color-gold, #d4af37);
    color: var(--color-primary);
    border-color: var(--color-gold, #d4af37);
  }

  .coupon-code-box {
    margin-bottom: 0.75rem;
  }

  .coupon-code-txt {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1rem;
    color: var(--color-primary);
    background-color: rgba(128, 0, 32, 0.04);
    border: 1px dashed rgba(128, 0, 32, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    display: block;
    text-align: center;
    letter-spacing: 0.06em;
  }

  .coupon-card--exclusive .coupon-code-txt {
    color: #947118;
    background-color: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.25);
  }

  .coupon-info-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .coupon-info-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
  }

  .coupon-card--exclusive .coupon-info-title {
    color: #4a0012;
  }

  .coupon-info-desc {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
  }

  .coupon-info-terms {
    font-size: 0.7rem;
    color: #999;
    font-style: italic;
  }
/* END_SECTION:main-account */

/* START_SECTION:main-activate-account (INDEX:20) */
.customer-activate-wrapper {
    background-color: var(--color-background);
    padding: 5rem 1rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
  }

  .customer-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .activate-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.06);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.04);
    border-radius: 12px;
    padding: 2.5rem 2.25rem;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .activate-card:hover {
    box-shadow: 0 15px 40px rgba(128, 0, 32, 0.07);
  }

  .customer-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .customer-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
  }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .field-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .field-input {
    border: 1.5px solid rgba(128, 0, 32, 0.12);
    border-radius: var(--style-border-radius-inputs);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--color-foreground);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }

  .field-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
  }

  .btn--full {
    width: 100%;
    box-sizing: border-box;
  }

  .form-actions-stacked {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .customer-submit-btn {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
  }

  .customer-decline-btn {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
  }

  .form-errors-banner {
    background-color: #fdf2f2;
    border: 1.5px solid #f8b4b4;
    color: #c81e1e;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
  }

  .form-errors-banner ul {
    margin: 0;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
  }

  .errors-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #c81e1e;
  }
/* END_SECTION:main-activate-account */

/* START_SECTION:main-addresses (INDEX:21) */
.customer-activate-wrapper {
    background-color: var(--color-background);
    padding: 5rem 1rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
  }

  .customer-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .activate-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.06);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.04);
    border-radius: 12px;
    padding: 2.5rem 2.25rem;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .activate-card:hover {
    box-shadow: 0 15px 40px rgba(128, 0, 32, 0.07);
  }

  .customer-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .customer-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
  }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .field-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .field-input {
    border: 1.5px solid rgba(128, 0, 32, 0.12);
    border-radius: var(--style-border-radius-inputs);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--color-foreground);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }

  .field-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
  }

  .btn--full {
    width: 100%;
    box-sizing: border-box;
  }

  .form-actions-stacked {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .customer-submit-btn {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
  }

  .customer-decline-btn {
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
  }

  .form-errors-banner {
    background-color: #fdf2f2;
    border: 1.5px solid #f8b4b4;
    color: #c81e1e;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
  }

  .form-errors-banner ul {
    margin: 0;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
  }

  .errors-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #c81e1e;
  }
/* END_SECTION:main-addresses */

/* START_SECTION:main-login (INDEX:22) */
.customer-login-split-wrapper {
    background-color: var(--color-background);
    min-height: calc(100vh - 72px); /* adjust for header height */
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: stretch;
  }

  .customer-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 100%;
  }

  @media (max-width: 1024px) {
    .customer-split-grid {
      grid-template-columns: 1fr;
    }
    .customer-split-visual {
      display: none;
    }
  }

  /* Left Column (Visual Banner) */
  .customer-split-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
    overflow: hidden;
    background-color: #2b1d1d;
  }

  .visual-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 10s ease;
  }

  .customer-split-visual:hover .visual-bg-image {
    transform: scale(1.06);
  }

  .visual-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(128, 0, 32, 0.4) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
  }

  .visual-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 520px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .visual-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.25rem;
    margin-bottom: 1.25rem;
  }

  .visual-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-family: 'Outfit', sans-serif;
  }

  .visual-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 400;
  }

  /* Right Column (Form Panel) */
  .customer-split-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--color-background);
  }

  .customer-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .login-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.06);
    box-shadow: 0 10px 40px rgba(128, 0, 32, 0.04);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  }

  .login-card:hover {
    box-shadow: 0 15px 50px rgba(128, 0, 32, 0.07);
    transform: translateY(-2px);
  }

  .customer-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .customer-subtitle {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2.25rem;
    text-align: center;
    line-height: 1.5;
  }

  /* Form inputs styling */
  .field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.35rem;
  }

  .field-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .field-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .field-input {
    border: 1.5px solid rgba(128, 0, 32, 0.12);
    border-radius: var(--style-border-radius-inputs);
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    color: var(--color-foreground);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }

  .field-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
  }

  .inline-recovery-link {
    font-size: 0.82rem;
    font-weight: 500;
    color: #777;
    text-decoration: underline;
    transition: color 0.2s;
  }

  .inline-recovery-link:hover {
    color: var(--color-primary);
  }

  .btn--full {
    width: 100%;
    box-sizing: border-box;
  }

  .customer-submit-btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(128, 0, 32, 0.12);
  }

  /* Footers links */
  .customer-footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: #777;
  }

  .footer-link-highlight {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
  }

  .footer-link-highlight:hover {
    color: var(--color-gold);
  }

  /* Success recovery notification banner */
  .recover-success-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #e8f8f0;
    border: 1px solid #2ecc71;
    color: #27ae60;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .form-errors-banner {
    background-color: #fdf2f2;
    border: 1.5px solid #f8b4b4;
    color: #c81e1e;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
  }

  .errors-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #c81e1e;
  }
/* END_SECTION:main-login */

/* START_SECTION:main-order (INDEX:23) */
.customer-order-wrapper {
    background-color: var(--color-background);
    padding: 4rem 1rem 6rem 1rem;
    min-height: 80vh;
    font-family: 'Outfit', sans-serif;
  }

  .order-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .order-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 2px solid rgba(128, 0, 32, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .order-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
  }

  .order-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .back-to-account-link {
    font-size: 0.95rem;
    color: #666;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
  }
  .back-to-account-link:hover { color: var(--color-primary); }

  .cancelled-badge-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #fdf2f2;
    border: 1.5px solid #f8b4b4;
    color: #c81e1e;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.92rem;
    line-height: 1.4;
    max-width: 500px;
  }
  .cancelled-badge-banner svg { flex-shrink: 0; }

  .order-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
  }

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

  /* Cards */
  .order-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.06);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.03);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(128, 0, 32, 0.06);
    padding-bottom: 0.5rem;
  }

  /* Table styling */
  .order-items-table-wrapper {
    overflow-x: auto;
  }

  .order-items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }

  .order-items-table th {
    text-align: left;
    padding: 1rem 0.5rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    border-bottom: 2px solid rgba(128, 0, 32, 0.08);
  }

  .line-item-row {
    border-bottom: 1px solid rgba(128, 0, 32, 0.04);
  }
  .line-item-row:last-child { border-bottom: none; }

  .order-items-table td {
    padding: 1.25rem 0.5rem;
    vertical-align: middle;
  }

  .line-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .line-item-img {
    border-radius: 4px;
    object-fit: cover;
    background-color: #f5f5f5;
    flex-shrink: 0;
  }

  .line-item-title {
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
  }
  a.line-item-title:hover { color: var(--color-primary); }

  .sku-text {
    font-family: monospace;
    font-size: 0.85rem;
    color: #777;
  }

  .line-item-discounts {
    list-style: none;
    padding: 0; margin: 0.25rem 0 0 0;
    color: #27ae60;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .line-item-discounts li {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .line-item-fulfillment {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.4rem;
    border-left: 2px solid var(--color-primary);
    padding-left: 0.5rem;
  }
  .tracking-link {
    color: var(--color-primary);
    text-decoration: underline;
    display: block;
    margin-top: 0.15rem;
  }
  .tracking-link:hover { color: var(--color-gold); }

  .text-center { text-align: center; }
  .text-right { text-align: right; }
  .text-bold { font-weight: 700; color: var(--color-primary); }

  /* Addresses grid */
  .address-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  @media (max-width: 600px) {
    .address-grid-row {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }

  .address-detail-card {
    display: flex;
    flex-direction: column;
  }

  .address-box {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
  }

  .status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(128, 0, 32, 0.04);
    padding-top: 1rem;
    font-size: 0.88rem;
  }

  .status-label {
    font-weight: 600;
    color: #666;
  }

  /* Summary card */
  .summary-card {
    background-color: #ffffff;
    position: sticky;
    top: 100px;
  }

  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    color: #555;
  }

  .discount-row {
    color: #27ae60;
  }

  .discount-label {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .total-row {
    border-top: 2px solid rgba(128, 0, 32, 0.08);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
  }

  .grand-total-price {
    font-size: 1.25rem;
  }

  /* Badges - matching dashboard style */
  .badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
  }
  .badge--payment.badge--paid { background-color: #e8f8f0; color: #27ae60; }
  .badge--payment.badge--pending { background-color: #fef9e7; color: #f39c12; }
  .badge--payment.badge--refunded { background-color: #ebf5fb; color: #2980b9; }
  .badge--payment.badge--unpaid { background-color: #fdf2f2; color: #c81e1e; }
  .badge--fulfillment.badge--fulfilled { background-color: #e8f8f0; color: #27ae60; }
  .badge--fulfillment.badge--unfulfilled { background-color: #fdf2f2; color: #c81e1e; }
  .badge--fulfillment.badge--partial { background-color: #fef9e7; color: #f39c12; }

  /* Responsive order table */
  @media (max-width: 600px) {
    .order-items-table thead {
      display: none;
    }
    .order-items-table, .order-items-table tbody, .line-item-row, .order-items-table td {
      display: block;
      width: 100%;
      box-sizing: border-box;
    }
    .line-item-row {
      border-bottom: 2px solid rgba(128,0,32,0.06);
      padding: 1rem 0;
    }
    .line-item-row:last-child { border-bottom: none; }
    .order-items-table td {
      text-align: right;
      padding: 0.4rem 0.5rem;
      border-bottom: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .order-items-table td::before {
      content: attr(data-label);
      font-weight: 700;
      color: #888;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .order-items-table td:first-child {
      display: block;
      text-align: left;
    }
    .order-items-table td:first-child::before {
      display: none;
    }
  }
/* END_SECTION:main-order */

/* START_SECTION:main-register (INDEX:24) */
.customer-register-split-wrapper {
    background-color: var(--color-background);
    min-height: calc(100vh - 72px); /* adjust for header height */
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: stretch;
  }

  .customer-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 100%;
  }

  @media (max-width: 1024px) {
    .customer-split-grid {
      grid-template-columns: 1fr;
    }
    .customer-split-visual {
      display: none;
    }
  }

  /* Left Column (Visual Banner) */
  .customer-split-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 4rem;
    overflow: hidden;
    background-color: #2b1d1d;
  }

  .visual-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 10s ease;
  }

  .customer-split-visual:hover .visual-bg-image {
    transform: scale(1.06);
  }

  .visual-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(128, 0, 32, 0.4) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 2;
  }

  .visual-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 520px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .visual-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 0.25rem;
    margin-bottom: 1.25rem;
  }

  .visual-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-family: 'Outfit', sans-serif;
  }

  .visual-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 400;
  }

  /* Right Column (Form Panel) */
  .customer-split-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: var(--color-background);
  }

  .customer-container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .register-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.06);
    box-shadow: 0 10px 40px rgba(128, 0, 32, 0.04);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  }

  .register-card:hover {
    box-shadow: 0 15px 50px rgba(128, 0, 32, 0.07);
    transform: translateY(-2px);
  }

  .customer-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .customer-subtitle {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2.25rem;
    text-align: center;
    line-height: 1.5;
  }

  /* Form Layout */
  .field-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  @media (max-width: 480px) {
    .field-row-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.35rem;
  }

  .field-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .field-input {
    border: 1.5px solid rgba(128, 0, 32, 0.12);
    border-radius: var(--style-border-radius-inputs);
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    color: var(--color-foreground);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }

  .field-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
  }

  .btn--full {
    width: 100%;
    box-sizing: border-box;
  }

  .customer-submit-btn {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(128, 0, 32, 0.12);
  }

  /* Footer Links */
  .customer-footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: #777;
  }

  .footer-link-highlight {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
  }

  .footer-link-highlight:hover {
    color: var(--color-gold);
  }

  /* Errors Banner */
  .form-errors-banner {
    background-color: #fdf2f2;
    border: 1.5px solid #f8b4b4;
    color: #c81e1e;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
  }

  .errors-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #c81e1e;
  }
/* END_SECTION:main-register */

/* START_SECTION:main-reset-password (INDEX:25) */
.customer-reset-wrapper {
    background-color: var(--color-background);
    padding: 5rem 1rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
  }

  .customer-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .reset-card {
    background: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.06);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.04);
    border-radius: 12px;
    padding: 2.5rem 2.25rem;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .reset-card:hover {
    box-shadow: 0 15px 40px rgba(128, 0, 32, 0.07);
  }

  .customer-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .customer-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
  }

  .field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .field-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .field-input {
    border: 1.5px solid rgba(128, 0, 32, 0.12);
    border-radius: var(--style-border-radius-inputs);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--color-foreground);
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
  }

  .field-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
  }

  .btn--full {
    width: 100%;
    box-sizing: border-box;
  }

  .customer-submit-btn {
    margin-top: 1.25rem;
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
  }

  .form-errors-banner {
    background-color: #fdf2f2;
    border: 1.5px solid #f8b4b4;
    color: #c81e1e;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
  }

  .form-errors-banner ul {
    margin: 0;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
  }

  .errors-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #c81e1e;
  }
/* END_SECTION:main-reset-password */

/* START_SECTION:map (INDEX:26) */
.store-map-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 2rem;
  }

  .store-map-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .store-map-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .store-info-card {
    padding: 3.5rem 3rem;
    background-color: #800020;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .store-info-card .subheading {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #D4AF37;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }

  .store-info-card .heading {
    font-size: 2.2rem;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .info-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 3rem;
  }

  .info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }

  .info-icon {
    width: 24px;
    height: 24px;
    color: #D4AF37;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .info-label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    opacity: 0.95;
    letter-spacing: 0.02em;
    color: #ffffff;
  }

  .info-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
  }

  .btn--map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: #ffffff;
    color: #800020;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .btn--map:hover {
    background-color: #D4AF37;
    color: #2b1d1d;
    transform: translateY(-2px);
  }

  .map-iframe-wrapper {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-color: #eee;
  }

  @media (max-width: 991px) {
    .store-map-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }
    
    .store-info-card {
      padding: 3rem 2rem;
    }

    .map-iframe-wrapper {
      min-height: 350px;
    }
  }
/* END_SECTION:map */

/* START_SECTION:privacy-policy (INDEX:30) */
.policy-page-wrapper {
    background-color: #FDFBF7;
    color: #2B1D1D;
    padding: 5rem 0 7rem 0;
    font-family: 'Outfit', sans-serif;
  }
  .policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .policy-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 2px solid #800020;
    padding-bottom: 2rem;
  }
  .policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 0.5rem;
  }
  .policy-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
  }
  .policy-content {
    line-height: 1.8;
    font-size: 1.05rem;
  }
  .policy-content h3 {
    color: #800020;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(128,0,32,0.1);
    padding-bottom: 0.5rem;
  }
  .policy-content p {
    margin-bottom: 1.5rem;
  }
  .policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  .policy-content li {
    margin-bottom: 0.5rem;
  }
/* END_SECTION:privacy-policy */

/* START_SECTION:recent-products (INDEX:32) */
.recent-products {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 2rem;
  }
  .recent-products .container {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
  }
  .recent-products .subheading {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold, #D4AF37);
    margin-bottom: 1rem;
    font-weight: 600;
  }
  .recent-products .heading {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 3.5rem;
    color: var(--color-primary, #800020);
    position: relative;
    display: inline-block;
  }
  .recent-products .heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-gold, #D4AF37);
  }
  .recent-products .products-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns-desktop), 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .recent-products .product-card {
    background: transparent;
    overflow: hidden;
    position: relative;
  }
  .recent-products .product-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .recent-products .product-card__image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
  }
  .recent-products .product-card__image-wrapper.square {
    aspect-ratio: 1 / 1;
  }
  .recent-products .product-card__image-wrapper.portrait {
    aspect-ratio: 3 / 4;
  }
  .recent-products .product-card__image-wrapper.adapt img {
    height: auto;
  }
  .recent-products .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .recent-products .product-card:hover .product-card__image {
    transform: scale(1.04);
  }
  .recent-products .placeholder-svg {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-color: #eee;
  }
  .recent-products .badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    z-index: 2;
    letter-spacing: 0.05em;
  }
  .recent-products .badge--sale {
    background-color: var(--color-primary, #800020);
    color: #fff;
  }
  .recent-products .badge--sold-out {
    background-color: #ffffff;
    color: var(--color-primary, #800020);
    border-left: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .recent-products .product-card__info {
    padding: 1rem 0;
    text-align: center;
  }
  .recent-products .product-card__title {
    margin: 0 0 0.4rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary, #800020);
    line-height: 1.4;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .recent-products .product-card__price {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    color: #444;
  }
  .recent-products .price__current {
    color: var(--color-primary, #800020);
  }
  .recent-products .price__compare {
    text-decoration: line-through;
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
  }
  .recent-products .product-card__save {
    font-size: 0.85rem;
    color: var(--color-primary, #800020);
    font-weight: 600;
    margin-top: 0.25rem;
    letter-spacing: 0.02em;
  }
  .recent-products .section-actions {
    margin-top: 2rem;
  }
  .recent-products .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    text-decoration: none;
    cursor: pointer;
  }
  .recent-products .btn--primary {
    background-color: var(--color-primary, #800020);
    color: #fff;
    border: 1px solid var(--color-primary, #800020);
  }
  .recent-products .btn--primary:hover {
    background-color: #2B1D1D;
    border-color: #2B1D1D;
    transform: translateY(-2px);
  }

  @media (max-width: 991px) {
    .recent-products .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 768px) {
    .recent-products .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    .recent-products .heading {
      font-size: 2rem;
    }
  }
  @media (max-width: 576px) {
    .recent-products .products-grid {
      gap: 1rem;
    }
    .recent-products .product-card__info {
      padding: 0.75rem 0;
    }
    .recent-products .product-card__title {
      font-size: 0.85rem;
    }
    .recent-products .product-card__price {
      font-size: 0.85rem;
    }
    .recent-products .product-card__save {
      font-size: 0.75rem;
    }
  }
/* END_SECTION:recent-products */

/* START_SECTION:refund-policy (INDEX:33) */
.policy-page-wrapper {
    background-color: #FDFBF7;
    color: #2B1D1D;
    padding: 5rem 0 7rem 0;
    font-family: 'Outfit', sans-serif;
  }
  .policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .policy-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 2px solid #800020;
    padding-bottom: 2rem;
  }
  .policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 0.5rem;
  }
  .policy-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
  }
  .policy-content {
    line-height: 1.8;
    font-size: 1.05rem;
  }
  .policy-content h3 {
    color: #800020;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(128,0,32,0.1);
    padding-bottom: 0.5rem;
  }
  .policy-content p {
    margin-bottom: 1.5rem;
  }
/* END_SECTION:refund-policy */

/* START_SECTION:saree-collections (INDEX:34) */
@keyframes scSlideIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
  }

  .sc-section {
    padding: 5rem var(--page-margin, 2rem);
    max-width: var(--page-width, 1400px);
    margin: 0 auto;
    overflow: hidden;
  }

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

  .sc-subtitle {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #800020;
    margin-bottom: 0.75rem;
  }

  .sc-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1a0505;
    margin: 0 0 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .sc-heading-bar {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #f0cc50);
    border-radius: 2px;
    margin: 0 auto;
  }

  /* Carousel wrapper */
  .sc-carousel-wrapper {
    position: relative;
  }

  .sc-track-container {
    overflow: hidden;
    padding: 1rem 0 1.5rem;
  }

  .sc-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
  }

  /* Slide */
  .sc-slide {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
  }

  .sc-card {
    border-radius: 16px;
    overflow: hidden;
    background: #0d0303;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
  }

  .sc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(128,0,32,0.2);
  }

  /* Card image */
  .sc-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #2b0a0a 0%, #0d0303 100%);
  }

  .sc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .sc-card:hover .sc-card-img {
    transform: scale(1.07);
  }

  .sc-card-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,2,2,0.92) 0%, rgba(10,2,2,0.25) 50%, transparent 100%);
    z-index: 2;
    transition: background 0.4s ease;
  }

  .sc-card:hover .sc-card-grad {
    background: linear-gradient(to top, rgba(10,2,2,0.96) 0%, rgba(10,2,2,0.45) 55%, rgba(80,0,20,0.1) 100%);
  }

  /* Hover explore button on image */
  .sc-card-explore {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.85);
    background: rgba(128,0,32,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    border: 1.5px solid #D4AF37;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.15);
  }

  .sc-card:hover .sc-card-explore {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
  }

  /* Card info below image */
  .sc-card-info {
    padding: 1.25rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: #fff;
  }

  .sc-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #800020;
  }

  .sc-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a0505;
    margin: 0;
    line-height: 1.25;
  }

  /* View Collection button */
  .sc-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: #800020;
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1.5px solid #800020;
    transition: all 0.3s ease;
    align-self: flex-start;
  }

  .sc-card-btn:hover {
    background: transparent;
    color: #800020;
  }

  .sc-card-btn svg {
    transition: transform 0.3s ease;
  }

  .sc-card-btn:hover svg {
    transform: translateX(4px);
  }

  /* Arrows */
  .sc-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(128,0,32,0.2);
    color: #800020;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .sc-arrow:hover:not(:disabled) {
    background: #800020;
    color: #fff;
    border-color: #800020;
    box-shadow: 0 8px 30px rgba(128,0,32,0.3);
  }

  .sc-arrow:disabled {
    opacity: 0.3;
    cursor: default;
  }

  .sc-arrow-prev { left: -25px; }
  .sc-arrow-next { right: -25px; }

  /* Dots */
  .sc-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .sc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(128,0,32,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .sc-dot.active {
    background: #800020;
    width: 24px;
    border-radius: 4px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .sc-slide { flex: 0 0 calc((100% - 1.5rem) / 2); }
    .sc-arrow-prev { left: -15px; }
    .sc-arrow-next { right: -15px; }
  }

  @media (max-width: 600px) {
    .sc-slide { flex: 0 0 85%; }
    .sc-arrow { width: 40px; height: 40px; }
    .sc-arrow-prev { left: 0; }
    .sc-arrow-next { right: 0; }
    .sc-card-info { padding: 1rem; }
    .sc-card-title { font-size: 1rem; }
  }
/* END_SECTION:saree-collections */

/* START_SECTION:search (INDEX:35) */
/* Color system matching theme variables */
  :root {
    --search-primary: #800020; /* Burgundy */
    --search-accent: #D4AF37; /* Gold */
    --search-dark: #2B1D1D;
    --search-light: #FDFBF7;
    --search-border: #E8E2D6;
    --search-shadow: rgba(128, 0, 32, 0.06);
  }

  .search-section {
    padding: 4rem var(--page-margin, 20px);
    background-color: var(--search-light);
    color: var(--search-dark);
    font-family: 'Outfit', 'Inter', sans-serif;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .search-container {
    width: 100%;
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
  }

  /* Header Design */
  .search-header-block {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .search-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--search-accent);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
  }

  .search-main-title {
    font-size: 2.5rem;
    color: var(--search-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .search-lead-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Search Input Layout */
  .search-form-wrapper {
    max-width: 700px;
    margin: 0 auto 3.5rem;
  }

  .search-form-premium {
    width: 100%;
  }

  .search-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid var(--search-border);
    border-radius: 50px;
    padding: 0.25rem 0.25rem 0.25rem 1.5rem;
    position: relative;
    box-shadow: 0 4px 20px var(--search-shadow);
    transition: all 0.3s ease;
  }

  .search-input-group:focus-within {
    border-color: var(--search-primary);
    box-shadow: 0 6px 24px rgba(128, 0, 32, 0.12);
  }

  .search-icon-decor-btn {
    color: #999;
    background: none;
    border: none;
    padding: 0;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .search-icon-decor-btn:hover {
    color: var(--search-primary);
    transform: scale(1.1);
  }

  .search-input-field {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--search-dark);
    padding: 0.75rem 0;
    background: transparent;
    min-width: 50px;
  }

  .search-clear-btn {
    border: none;
    background: #eee;
    color: #666;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 0.75rem;
    transition: background 0.2s;
  }

  .search-clear-btn:hover {
    background: #ddd;
    color: #333;
  }

  .search-submit-btn {
    background-color: var(--search-primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

  /* Interactive Tabs */
  .search-tabs-wrapper {
    border-bottom: 2px solid var(--search-border);
    margin-bottom: 2.5rem;
    overflow-x: auto;
  }

  .search-tabs {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 0.1px;
    min-width: max-content;
  }

  .tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.75rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #777;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
  }

  .tab-btn:hover {
    color: var(--search-primary);
  }

  .tab-btn.active {
    color: var(--search-primary);
    border-bottom-color: var(--search-primary);
  }

  .tab-badge {
    background-color: #eee;
    color: #555;
    font-size: 0.8rem;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-weight: 700;
    transition: background 0.3s, color 0.3s;
  }

  .tab-btn.active .tab-badge {
    background-color: var(--search-primary);
    color: #ffffff;
  }

  /* Grid Layout for items */
  .results-items-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  /* Universal Cards style */
  .grid-item-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--search-border);
  }

  .grid-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.07);
  }

  /* Product Card style */
  .product-item-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .product-item-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-img-holder {
    position: relative;
    padding-top: 130%; /* portrait aspect ratio */
    overflow: hidden;
    background-color: #f7f7f7;
  }

  .product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .grid-item-card:hover .product-card-img {
    transform: scale(1.06);
  }

  .card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 2;
  }

  .badge-sale {
    background-color: var(--search-accent);
    color: var(--search-dark);
  }

  .badge-sold-out {
    background-color: #333;
    color: #fff;
  }

  .product-info-holder {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
  }

  .product-vendor {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--search-accent);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
  }

  .product-title-el {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--search-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.2s;
  }

  .product-item-link:hover .product-title-el {
    color: var(--search-primary);
  }

  .product-price-el {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
  }

  .price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--search-primary);
  }

  .price-compare {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
  }

  /* Article Card style */
  .article-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem 0.75rem;
  }

  .type-indicator {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
  }

  .badge-article {
    background-color: rgba(128, 0, 32, 0.08);
    color: var(--search-primary);
  }

  .badge-page {
    background-color: rgba(212, 175, 55, 0.12);
    color: #8a6d1c;
  }

  .article-date {
    font-size: 0.8rem;
    color: #777;
  }

  .article-img-link {
    display: block;
    overflow: hidden;
    height: 200px;
    background-color: #f7f7f7;
  }

  .article-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .grid-item-card:hover .article-card-img {
    transform: scale(1.05);
  }

  .article-content-holder,
  .page-content-holder {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .article-title-el,
  .page-title-el {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .article-title-el a,
  .page-title-el a {
    color: var(--search-dark);
    text-decoration: none;
    transition: color 0.2s;
  }

  .article-title-el a:hover,
  .page-title-el a:hover {
    color: var(--search-primary);
  }

  .article-excerpt,
  .page-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.25rem;
  }

  .read-more-link {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--search-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s, transform 0.2s;
  }

  .read-more-link:hover {
    color: var(--search-accent);
    transform: translateX(4px);
  }

  /* Page Card style */
  .page-item-inner {
    padding: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .page-item-inner .type-indicator {
    margin-left: 1.5rem;
    align-self: flex-start;
  }

  /* Empty/Initial States design */
  .search-empty-state,
  .search-initial-state {
    text-align: center;
    padding: 5rem 1rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px dashed var(--search-border);
    box-shadow: 0 4px 20px var(--search-shadow);
    max-width: 800px;
    margin: 0 auto;
  }

  .empty-icon-wrapper,
  .search-illustration {
    color: var(--search-primary);
    margin-bottom: 1.5rem;
    opacity: 0.85;
    display: flex;
    justify-content: center;
  }

  .search-empty-state h2,
  .search-initial-state h2 {
    font-size: 1.85rem;
    color: var(--search-primary);
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .search-empty-state p,
  .search-initial-state p {
    font-size: 1.05rem;
    color: #666;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
  }

  .trending-keywords-block {
    margin-top: 1.5rem;
  }

  .trending-keywords-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--search-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .tag-pill {
    background-color: #f7f7f7;
    border: 1.5px solid var(--search-border);
    color: var(--search-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .tag-pill:hover {
    background-color: var(--search-primary);
    border-color: var(--search-primary);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
  }

  /* Results summary */
  .search-results-summary {
    margin-bottom: 2rem;
    font-size: 1.15rem;
  }

  .query-highlight {
    color: var(--search-primary);
  }

  /* Pagination */
  .search-pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    border-top: 1px solid var(--search-border);
    padding-top: 2rem;
  }

  .search-pagination-wrapper .pagination {
    display: inline-flex;
    gap: 0.5rem;
  }

  .search-pagination-wrapper a,
  .search-pagination-wrapper .page.current {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
  }

  .search-pagination-wrapper a {
    border: 1px solid var(--search-border);
    color: var(--search-dark);
    background-color: #ffffff;
    transition: all 0.2s;
  }

  .search-pagination-wrapper a:hover {
    border-color: var(--search-primary);
    color: var(--search-primary);
  }

  .search-pagination-wrapper .page.current {
    background-color: var(--search-primary);
    color: #ffffff;
    border: 1px solid var(--search-primary);
  }

  /* Responsive details */
  @media (max-width: 768px) {
    .search-main-title {
      font-size: 2rem;
    }
    .search-input-group {
      padding: 0.25rem 0.25rem 0.25rem 1rem;
    }
    .search-input-field {
      font-size: 1rem;
    }
    .search-submit-btn {
      padding: 0.6rem 1.25rem;
      font-size: 0.9rem;
    }
    .results-items-container {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem;
    }
    .product-title-el {
      font-size: 1.05rem;
    }
    .search-section {
      padding: 2.5rem var(--page-margin, 15px);
    }
  }
/* END_SECTION:search */

/* START_SECTION:shipping-policy (INDEX:36) */
.policy-page-wrapper {
    background-color: #FDFBF7;
    color: #2B1D1D;
    padding: 5rem 0 7rem 0;
    font-family: 'Outfit', sans-serif;
  }
  .policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .policy-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 2px solid #800020;
    padding-bottom: 2rem;
  }
  .policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 0.5rem;
  }
  .policy-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
  }
  .policy-content {
    line-height: 1.8;
    font-size: 1.05rem;
  }
  .policy-content h3 {
    color: #800020;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(128,0,32,0.1);
    padding-bottom: 0.5rem;
  }
  .policy-content p {
    margin-bottom: 1.5rem;
  }
/* END_SECTION:shipping-policy */

/* START_SECTION:terms-of-service (INDEX:37) */
.policy-page-wrapper {
    background-color: #FDFBF7;
    color: #2B1D1D;
    padding: 5rem 0 7rem 0;
    font-family: 'Outfit', sans-serif;
  }
  .policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .policy-header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 2px solid #800020;
    padding-bottom: 2rem;
  }
  .policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #800020;
    margin-bottom: 0.5rem;
  }
  .policy-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
  }
  .policy-content {
    line-height: 1.8;
    font-size: 1.05rem;
  }
  .policy-content h3 {
    color: #800020;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(128,0,32,0.1);
    padding-bottom: 0.5rem;
  }
  .policy-content p {
    margin-bottom: 1.5rem;
  }
/* END_SECTION:terms-of-service */

/* START_SECTION:testimonials (INDEX:38) */
.testimonials-scroller {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
  }
  .testimonials-scroller .subheading {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
  }
  .testimonials-scroller .heading {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 3.5rem;
    color: inherit;
    position: relative;
    display: block;
    text-align: center;
  }
  .testimonials-scroller .heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #800020;
  }
  
  .marquee-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
    position: relative;
    padding: 1.5rem 0;
  }
  
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
  }
  
  .marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
  }
  
  .marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
  }

  .marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee var(--scroll-speed) linear infinite;
  }
  
  .marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
  }

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

  .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
  }

  .testimonial-card__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.2rem;
  }

  .testimonial-card__quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-style: italic;
    opacity: 0.9;
  }

  .testimonial-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
  }

  .testimonial-card__author {
    font-weight: 600;
    font-size: 1rem;
  }

  .verified-badge {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #4CAF50;
    font-weight: 500;
  }
  
  .verified-icon {
    flex-shrink: 0;
  }

  @media (max-width: 576px) {
    .testimonial-card {
      width: 300px;
      padding: 1.5rem;
    }
    .testimonial-card__quote {
      font-size: 0.95rem;
    }
  }
/* END_SECTION:testimonials */

/* START_SECTION:wholesale-inquiry (INDEX:39) */
.wholesale-inquiry-section {
    padding: 6rem 0;
    background-color: var(--color-background);
    width: 100%;
  }

  .inquiry-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .inquiry-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .inquiry-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
  }

  .inquiry-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-family: serif;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
  }

  .inquiry-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
  }

  .inquiry-form-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(128, 0, 32, 0.04);
    border: 1px solid rgba(128, 0, 32, 0.06);
    padding: 3rem;
  }

  .inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

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

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-foreground);
  }

  .form-group label .required {
    color: var(--color-primary);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(128, 0, 32, 0.12);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.25s ease;
    background-color: #faf9f6;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.08);
  }

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

  .submit-inquiry-btn {
    width: 100%;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
  }

  /* Form Status Styles */
  .form-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .form-status--success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.2);
  }

  .form-status--error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.2);
  }

  .success-icon,
  .error-icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .inquiry-form-wrapper {
      padding: 1.75rem;
    }
    .form-row {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    .wholesale-inquiry-section {
      padding: 4rem 0;
    }
  }
/* END_SECTION:wholesale-inquiry */

/* START_SECTION:wholesale-promo (INDEX:40) */
.wholesale-promo-section {
    background-color: #faf6f0;
    padding: 5rem 0;
    margin: 5rem 0 0 0;
    border-top: 1px solid rgba(128, 0, 32, 0.05);
    border-bottom: 1px solid rgba(128, 0, 32, 0.05);
  }

  .wholesale-container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 var(--page-margin);
  }

  .wholesale-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
  }

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

  .wholesale-content-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .wholesale-badge {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .wholesale-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--color-primary);
    font-family: serif;
    line-height: 1.2;
    margin: 0;
  }

  .wholesale-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
  }

  .discount-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
  }

  @media (max-width: 600px) {
    .discount-tiers {
      grid-template-columns: 1fr;
    }
  }

  .tier-card {
    background-color: #ffffff;
    border: 1px solid rgba(128, 0, 32, 0.1);
    padding: 1.25rem 1rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
  }

  .tier-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
  }

  .tier-volume {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #666666;
  }

  .tier-discount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0.25rem 0;
  }

  .tier-desc {
    font-size: 0.75rem;
    color: #888888;
  }

  .wholesale-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .whatsapp-btn {
    border-color: #25d366 !important;
    color: #25d366 !important;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
  }

  .whatsapp-btn:hover {
    background-color: #25d366 !important;
    color: #ffffff !important;
  }

  .whatsapp-icon {
    width: 1.2rem;
    height: 1.2rem;
  }

  /* Info cards styling */
  .wholesale-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .info-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border-left: 3px solid var(--color-gold);
  }

  .info-icon {
    font-size: 1.8rem;
    line-height: 1;
  }

  .info-text h4 {
    margin: 0 0 0.35rem 0;
    font-size: 1.05rem;
    color: var(--color-primary);
  }

  .info-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
  }
/* END_SECTION:wholesale-promo */

/* START_SECTION:wishlist (INDEX:41) */
.wishlist-page-wrapper {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 4rem 0 6rem 0;
    min-height: 60vh;
    font-family: 'Outfit', sans-serif;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .hidden {
    display: none !important;
  }
  .wishlist-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .wishlist-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }
  .wishlist-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
  }
  
  /* Loading & Empty States */
  .wishlist-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
  }
  .spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(128,0,32,0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .wishlist-empty {
    text-align: center;
    padding: 5rem 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(128,0,32,0.08);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  }
  .wishlist-empty .empty-icon {
    width: 64px;
    height: 64px;
    color: #ccc;
    margin-bottom: 1.5rem;
  }
  .wishlist-empty h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
  }
  .wishlist-empty p {
    color: #666;
    margin-bottom: 2rem;
  }
  .btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
  }


  /* Grid & Cards */
  .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  @media (max-width: 1024px) {
    .wishlist-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  }
  @media (max-width: 480px) {
    .wishlist-grid { grid-template-columns: 1fr; }
  }

  .wishlist-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(128,0,32,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .wishlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(128,0,32,0.06);
  }
  
  .wishlist-card__image-wrapper {
    position: relative;
    padding-bottom: 133%; /* 3:4 aspect ratio */
    background-color: #f5f5f5;
    overflow: hidden;
  }
  .wishlist-card__image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .wishlist-card:hover .wishlist-card__image {
    transform: scale(1.05);
  }

  .wishlist-remove-btn {
    position: absolute;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #888;
    z-index: 10;
    transition: all 0.2s ease;
  }
  .wishlist-remove-btn:hover {
    color: #c0392b;
    transform: scale(1.1);
  }
  .wishlist-remove-btn svg {
    width: 18px; height: 18px;
  }

  .wishlist-card__info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .wishlist-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
  }
  .wishlist-card__title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
  }
  .wishlist-card__title a:hover {
    color: var(--primary-color);
  }

  .wishlist-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
  }

  .wishlist-card__actions {
    margin-top: auto;
  }
  .wishlist-card__add-btn {
    width: 100%;
    padding: 0.7rem 1rem;
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .wishlist-card__add-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
  }

  /* Toast Notification */
  .toast-notifier {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #2b1d1d;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Outfit', sans-serif;
  }
  .toast-notifier.show {
    transform: translateY(0);
  }
  .toast-icon {
    background-color: #27ae60;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
  }
/* END_SECTION:wishlist */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:42) */
.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:43) */
.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:45) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */