/** Shopify CDN: Minification failed

Line 2457:4 Unexpected "{"
Line 2457:5 Expected identifier but found "%"
Line 2460:4 Unexpected "{"
Line 2460:5 Expected identifier but found "%"
Line 2462:4 Unexpected "{"
Line 2462:5 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:article (INDEX:1, SCOPED:FALSE) */
.article-page {
    padding: var(--spacing-sections) 0;
  }
  
  .article {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .article-header {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .article-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
  }
  
  .article-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    color: var(--color-text-light);
    font-size: 14px;
  }
  
  .article-image {
    margin-bottom: 32px;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .article-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .article-content {
    margin-bottom: 32px;
    line-height: 1.8;
    color: var(--color-text);
  }
  
  .article-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  
  .article-content p {
    margin-bottom: 16px;
  }
  
  .article-tags {
    margin-bottom: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }
  
  .article-tag {
    display: inline-block;
    background: var(--color-surface);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    margin-right: 8px;
    margin-top: 8px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
  }
  
  .article-tag:hover {
    background: var(--color-primary);
    color: white;
  }
  
  .article-comments {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
  }
  
  .comments-list {
    margin: 32px 0;
  }
  
  .comment {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--color-surface);
    border-radius: var(--border-radius);
  }
  
  .comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
  }
  
  .comment-author {
    color: var(--color-text);
  }
  
  .comment-header time {
    color: var(--color-text-light);
  }
  
  .comment-content {
    color: var(--color-text);
    line-height: 1.6;
  }
  
  .comment-form {
    margin-top: 32px;
  }
  
  .form-field {
    margin-bottom: 16px;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .form-field input,
  .form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: inherit;
  }
  
  .form-success {
    padding: 12px;
    background: #d1fae5;
    color: #065f46;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
  }
  
  .form-errors {
    padding: 12px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
  }
  
  @media (max-width: 768px) {
    .article-title {
      font-size: 32px;
    }
  }
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:2, SCOPED:FALSE) */
.blog-page {
    padding: var(--spacing-sections) 0;
  }
  
  .blog-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .blog-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
  }
  
  .blog-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .blog-card-image {
    display: block;
    overflow: hidden;
  }
  
  .blog-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
  }
  
  .blog-card-content {
    padding: 24px;
  }
  
  .blog-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .blog-card-title a {
    color: var(--color-text);
    text-decoration: none;
  }
  
  .blog-card-title a:hover {
    color: var(--color-primary);
  }
  
  .blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--color-text-light);
  }
  
  .blog-card-excerpt {
    margin-bottom: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
  }
  
  .blog-read-more {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
  }
  
  .blog-read-more:hover {
    text-decoration: underline;
  }
  
  .pagination {
    text-align: center;
    margin-top: 48px;
  }
  
  @media (max-width: 768px) {
    .blog-title {
      font-size: 36px;
    }
    
    .blog-articles {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
/* END_SECTION:blog */

/* START_SECTION:cart (INDEX:3, SCOPED:FALSE) */
.cart-section {
    padding: var(--spacing-sections) 0;
  }

  .cart-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-elements);
    color: var(--color-text);
    text-align: center;
  }

  .cart-form {
    margin-bottom: 48px;
  }

  .cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    padding: 32px 0;
  }

  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cart-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: var(--color-surface);
    border-radius: var(--border-radius);
    position: relative;
  }

  .item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
  }

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

  .item-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-border);
    color: var(--color-text-light);
    font-size: 14px;
  }

  .item-details {
    flex: 1;
  }

  .item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-text);
  }

  .item-variant {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 8px;
  }

  .item-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
  }

  .item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-border);
    background: var(--color-background);
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.2s;
  }

  .qty-btn:hover {
    background: var(--color-surface);
    border-color: var(--color-primary);
  }

  .qty-input {
    width: 60px;
    height: 32px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 16px;
    background: var(--color-background);
    color: var(--color-text);
  }

  .item-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    min-width: 80px;
    text-align: right;
  }

  .item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s;
  }

  .item-remove:hover {
    background: #ef4444;
    color: white;
  }

  .cart-summary {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 100px;
  }

  .summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text);
  }

  .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text);
  }

  .summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--color-text);
    font-size: 20px;
    font-weight: 700;
    margin-top: 12px;
    padding-top: 16px;
  }

  .btn-update {
    width: 100%;
    padding: 12px 24px;
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.2s;
  }

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

  .btn-checkout {
    width: 100%;
    padding: 16px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.2s;
  }

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

  .btn-continue {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-bottom: 24px;
    transition: all 0.2s;
  }

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

  .promo-code {
    display: flex;
    gap: 8px;
    margin-top: 24px;
  }

  .promo-input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 14px;
    background: var(--color-background);
    color: var(--color-text);
  }

  .promo-apply {
    padding: 12px 16px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }

  .promo-apply:hover {
    opacity: 0.9;
  }

  .cart-empty {
    text-align: center;
    padding: 80px 20px;
  }

  .empty-icon {
    color: var(--color-text-light);
    margin-bottom: 24px;
  }

  .cart-empty h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
  }

  .cart-empty p {
    color: var(--color-text-light);
    margin-bottom: 32px;
  }

  .btn-shop {
    display: inline-block;
    padding: 16px 32px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
  }

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

  @media (max-width: 768px) {
    .cart-layout {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .cart-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }

    .item-image {
      width: 100%;
      height: 200px;
    }

    .item-quantity {
      align-self: flex-end;
    }

    .item-total {
      align-self: flex-end;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:4, SCOPED:FALSE) */
.collection-page {
    padding: 24px 0 var(--spacing-sections) 0;
  }
  
  .collection-header {
    text-align: center;
    margin-bottom: 16px;
    padding: 0 0 8px 0;
  }
  
  .collection-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    display: inline-block;
  }
  
  .collection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
  }
  
  .collection-description {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.3s both;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes expandLine {
    from {
      width: 0;
      opacity: 0;
    }
    to {
      width: 80px;
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-elements);
    margin-bottom: var(--spacing-sections);
  }
  
  .product-card {
    background: var(--color-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed) var(--transition-ease);
    position: relative;
  }
  
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  
  .product-card-image {
    position: relative;
    padding-bottom: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
  }
  
  .product-image-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .product-card-image .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    pointer-events: none;
  }
  
  /* Different transition effects */
  .product-card-image .carousel-image.fade-transition {
    transition: opacity 1s ease-in-out;
  }
  
  .product-card-image .carousel-image.slide-transition {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  }
  
  .product-card-image .carousel-image.zoom-transition {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  }
  
  .product-card-image .carousel-image.rotate-transition {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  }
  
  .product-card:hover .product-card-image .carousel-image {
    transform: scale(1.05);
  }
  
  .product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
  }
  
  .product-card-info {
    padding: var(--spacing-elements);
  }
  
  .product-card-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-small);
    color: var(--color-text);
  }
  
  .product-card-title a {
    color: var(--color-text);
    text-decoration: none;
  }
  
  .product-card-title a:hover {
    color: var(--color-primary);
  }
  
  .product-card-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-small);
    margin-bottom: var(--spacing-small);
  }
  
  .price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .compare-price {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-decoration: line-through;
  }
  
  .badge {
    position: absolute;
    top: var(--spacing-small);
    left: var(--spacing-small);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
  }
  
  .badge-sale {
    background: #dc2626;
    color: white;
  }
  
  .badge-new {
    background: var(--color-primary);
    color: white;
  }
  
  .quick-buy-btn {
    opacity: 0;
    transition: opacity var(--transition-speed) var(--transition-ease);
  }
  
  .product-card:hover .quick-buy-btn {
    opacity: 1;
  }
  
  .pagination {
    text-align: center;
    margin-top: var(--spacing-sections);
  }
  
  .pagination a,
  .pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text);
    text-decoration: none;
    transition: all var(--transition-speed) var(--transition-ease);
  }
  
  .pagination a:hover,
  .pagination .current {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
  }
  
  @media (max-width: 768px) {
    .collection-header {
      margin-bottom: 12px;
      padding: 0 0 4px 0;
    }
    
    .collection-title {
      font-size: 36px;
    }
    
    .collection-title::after {
      width: 60px;
    }
    
    .collection-description {
      font-size: 16px;
    }
    
    .products-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--spacing-small);
    }
  }
  
  @media (max-width: 480px) {
    .collection-title {
      font-size: 28px;
    }
    
    .collection-title::after {
      width: 50px;
    }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5, SCOPED:FALSE) */
.section-collections {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  }
  
  .section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-description {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 48px;
    font-size: 1.125rem;
  }
  
  .collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
  }
  
  .collection-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
  }
  
  .collection-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(193, 119, 103, 0.2);
  }
  
  .collection-image {
    height: 280px;
    position: relative;
    overflow: hidden;
  }
  
  .collection-image-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .collection-image .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    pointer-events: none;
  }
  
  .collection-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .collection-card:hover .collection-image::after {
    opacity: 1;
  }
  
  .collection-info {
    padding: 24px;
  }
  
  .collection-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
  }
  
  .collection-description {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
  }
  
  .collection-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .collection-link:hover {
    gap: 12px;
    color: var(--color-secondary);
  }
  
  .collection-link::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
  }
  
  .collection-card:hover .collection-link::after {
    transform: translateX(4px);
  }
  
  @media (max-width: 768px) {
    .section-collections {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 32px;
    }
    
    .collections-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .collection-image {
      height: 220px;
    }
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:6, SCOPED:FALSE) */
.contact-page {
    padding: var(--spacing-sections) 0;
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .contact-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-light);
    line-height: 1.6;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .contact-form-wrapper {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--border-radius);
  }
  
  .form-field {
    margin-bottom: 20px;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .form-field input,
  .form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
  }
  
  .form-field input:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  
  .form-success {
    padding: 16px;
    background: #d1fae5;
    color: #065f46;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
  }
  
  .form-errors {
    padding: 16px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
  }
  
  .form-errors ul {
    margin-top: 8px;
    padding-left: 20px;
  }
  
  .contact-info {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--border-radius);
    height: fit-content;
  }
  
  .contact-info h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-text);
  }
  
  .contact-info-item {
    margin-bottom: 20px;
  }
  
  .contact-info-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-text);
  }
  
  .contact-info-item a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  .contact-info-item a:hover {
    text-decoration: underline;
  }
  
  .contact-info-item p {
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .contact-title {
      font-size: 36px;
    }
    
    .contact-content {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .contact-form-wrapper,
    .contact-info {
      padding: 24px;
    }
  }
/* END_SECTION:contact-form */

/* START_SECTION:custom-section (INDEX:7, SCOPED:FALSE) */
.promo-banner-modern {
    background: linear-gradient(135deg, #D4A574 0%, #C17767 50%, #A8604F 100%);
    color: white;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
  }
  
  .promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.9) 0%, rgba(193, 119, 103, 0.85) 100%);
    z-index: 1;
  }
  
  .promo-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  
  .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
  }
  
  .shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: 10%;
    animation-delay: 0s;
  }
  
  .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 15%;
    animation-delay: 2s;
  }
  
  .shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
  }
  
  .promo-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  
  .promo-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  }
  
  .promo-description {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
  }
  
  .promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 12px;
    border: 2px dashed rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
  }
  
  .promo-code-label {
    font-size: 14px;
    opacity: 0.9;
  }
  
  .promo-code {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
    font-family: monospace;
  }
  
  .btn-promo-modern {
    background: white;
    color: var(--color-primary);
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .btn-promo-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    gap: 12px;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(10deg);
    }
  }
  
  @media (max-width: 768px) {
    .promo-banner-modern {
      padding: 60px 16px;
    }
    
    .promo-heading {
      font-size: 32px;
    }
    
    .promo-description {
      font-size: 16px;
    }
    
    .promo-code {
      font-size: 18px;
    }
    
    .btn-promo-modern {
      padding: 14px 32px;
      font-size: 16px;
    }
    
    .shape {
      display: none;
    }
  }
/* END_SECTION:custom-section */

/* START_SECTION:customer-account (INDEX:8, SCOPED:FALSE) */
.customer-account {
    padding: var(--spacing-sections) 0;
  }
  
  .account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
  }
  
  .account-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
  }
  
  .account-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
  }
  
  .account-actions .btn {
    white-space: nowrap;
    padding: 12px 28px;
    font-size: 15px;
  }
  
  .account-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
  }
  
  .account-info,
  .account-orders {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--border-radius);
  }
  
  .account-info h2,
  .account-orders h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-text);
  }
  
  .account-info p {
    margin-bottom: 12px;
    color: var(--color-text);
  }
  
  .account-info .btn {
    margin-top: 24px;
  }
  
  .orders-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .order-card {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 24px;
    background: white;
  }
  
  .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
  }
  
  .order-header h3 {
    font-size: 18px;
    font-weight: 600;
  }
  
  .order-status {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .order-status-paid {
    background: #d1fae5;
    color: #065f46;
  }
  
  .order-status-pending {
    background: #fef3c7;
    color: #92400e;
  }
  
  .order-meta {
    margin-bottom: 16px;
  }
  
  .order-meta p {
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-size: 14px;
  }
  
  .order-items {
    margin-bottom: 16px;
  }
  
  .order-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .order-item:last-child {
    border-bottom: none;
  }
  
  .order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .order-item-details {
    flex: 1;
  }
  
  .order-item-title {
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .order-item-variant {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 4px;
  }
  
  .order-item-price {
    font-size: 14px;
    color: var(--color-text);
  }
  
  .unit-price {
    font-size: 12px;
    color: var(--color-text-light);
  }
  
  .btn-sm {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .no-orders {
    text-align: center;
    color: var(--color-text-light);
    margin: 48px 0 24px;
  }
  
  @media (max-width: 768px) {
    .account-header {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
    
    .account-actions {
      width: 100%;
      flex-direction: column;
    }
    
    .account-actions .btn {
      width: 100%;
    }
    
    .account-content {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .account-info,
    .account-orders {
      padding: 24px;
    }
  }
/* END_SECTION:customer-account */

/* START_SECTION:customer-activate (INDEX:9, SCOPED:FALSE) */
.customer-activate {
    padding: var(--spacing-sections) 0;
    min-height: 60vh;
  }
  
  .customer-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
  }
  
  .customer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--color-text);
  }
  
  .activate-message {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 32px;
  }
  
  .form-errors {
    padding: 16px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
  }
  
  .form-field {
    margin-bottom: 20px;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 16px;
  }
  
  .form-field input:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  
  .btn {
    width: 100%;
    margin-bottom: 16px;
  }
  
  .customer-links {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }
  
  .customer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
  }
  
  .customer-links a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .customer-form-wrapper {
      padding: 32px 24px;
    }
  }
/* END_SECTION:customer-activate */

/* START_SECTION:customer-addresses (INDEX:10, SCOPED:FALSE) */
.customer-addresses {
    padding: var(--spacing-sections) 0;
  }
  
  .addresses-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 24px;
  }
  
  .addresses-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .back-link {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
  }
  
  .back-link:hover {
    color: var(--color-secondary);
    text-decoration: underline;
  }
  
  .addresses-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
  }
  
  .add-address-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .add-address-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  
  .address-form {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
  }
  
  .address-form h2 {
    margin-bottom: 24px;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }
  
  .form-field.full-width {
    grid-column: 1 / -1;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .form-field input,
  .form-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 16px;
  }
  
  .form-actions {
    display: flex;
    gap: 12px;
  }
  
  .addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
  
  .address-card {
    background: var(--color-surface);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    position: relative;
  }
  
  .default-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
  }
  
  .address-content p {
    margin-bottom: 4px;
    color: var(--color-text);
    line-height: 1.6;
  }
  
  .address-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }
  
  .btn-sm {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .btn-danger {
    background: #dc2626;
    color: white;
  }
  
  .btn-danger:hover {
    background: #b91c1c;
  }
  
  .address-edit-form {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }
  
  .no-addresses {
    text-align: center;
    color: var(--color-text-light);
    padding: 48px;
  }
  
  @media (max-width: 768px) {
    .addresses-top {
      flex-direction: column;
      gap: 20px;
      align-items: stretch;
    }
    
    .add-address-btn {
      width: 100%;
      order: -1; /* Move button above title on mobile */
    }
    
    .addresses-title {
      font-size: 28px;
    }
    
    .form-grid {
      grid-template-columns: 1fr;
    }
    
    .addresses-grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:customer-addresses */

/* START_SECTION:customer-login (INDEX:11, SCOPED:FALSE) */
.customer-login {
    padding: var(--spacing-sections) 0;
    min-height: 60vh;
  }
  
  .customer-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
  }
  
  .customer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: var(--color-text);
  }
  
  .form-errors {
    padding: 16px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
  }
  
  .form-field {
    margin-bottom: 20px;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 16px;
  }
  
  .form-field input:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  
  .btn {
    width: 100%;
    margin-bottom: 16px;
  }
  
  .customer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }
  
  .customer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
  }
  
  .customer-links a:hover {
    text-decoration: underline;
  }
  
  .guest-login {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    text-align: center;
  }
  
  .guest-login h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .guest-login p {
    color: var(--color-text-light);
    margin-bottom: 16px;
  }
  
  @media (max-width: 768px) {
    .customer-form-wrapper {
      padding: 32px 24px;
    }
  }
/* END_SECTION:customer-login */

/* START_SECTION:customer-order (INDEX:12, SCOPED:FALSE) */
.customer-order {
    padding: var(--spacing-sections) 0;
  }
  
  .order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
  }
  
  .order-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
  }
  
  .order-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .order-info-card,
  .order-items-card,
  .address-card,
  .order-totals {
    background: var(--color-surface);
    padding: 32px;
    border-radius: var(--border-radius);
  }
  
  .order-info-card h2,
  .order-items-card h2,
  .address-card h3,
  .order-totals h3 {
    margin-bottom: 24px;
    color: var(--color-text);
  }
  
  .order-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .info-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-size: 14px;
  }
  
  .info-item p {
    color: var(--color-text);
    font-weight: 600;
  }
  
  .line-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
  }
  
  .line-item:last-child {
    border-bottom: none;
  }
  
  .line-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
  }
  
  .line-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .line-item-variant,
  .line-item-plan,
  .line-item-quantity,
  .line-item-unit-price {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 4px;
  }
  
  .line-item-pricing {
    text-align: right;
  }
  
  .line-item-original-price {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 14px;
  }
  
  .line-item-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .line-item-total {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 4px;
  }
  
  .order-summary-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
  }
  
  .order-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
  .address-card p {
    margin-bottom: 4px;
    color: var(--color-text);
    line-height: 1.6;
  }
  
  .totals-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
  }
  
  .total-row.discount {
    color: #dc2626;
  }
  
  .total-final {
    border-top: 2px solid var(--color-border);
    padding-top: 16px;
    margin-top: 8px;
    font-size: 18px;
  }
  
  @media (max-width: 768px) {
    .order-header {
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
    
    .order-info-grid {
      grid-template-columns: 1fr;
    }
    
    .line-item {
      grid-template-columns: 1fr;
    }
    
    .line-item-pricing {
      text-align: left;
    }
    
    .order-summary-grid {
      grid-template-columns: 1fr;
    }
    
    .order-addresses {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:customer-order */

/* START_SECTION:customer-register (INDEX:13, SCOPED:FALSE) */
.customer-register {
    padding: var(--spacing-sections) 0;
    min-height: 60vh;
  }
  
  .customer-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
  }
  
  .customer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: var(--color-text);
  }
  
  .form-errors {
    padding: 16px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
  }
  
  .form-field {
    margin-bottom: 20px;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 16px;
  }
  
  .form-field input:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  
  .btn {
    width: 100%;
    margin-bottom: 16px;
  }
  
  .customer-links {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }
  
  .customer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
  }
  
  .customer-links a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .customer-form-wrapper {
      padding: 32px 24px;
    }
  }
/* END_SECTION:customer-register */

/* START_SECTION:customer-reset-password (INDEX:14, SCOPED:FALSE) */
.customer-reset {
    padding: var(--spacing-sections) 0;
    min-height: 60vh;
  }
  
  .customer-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
  }
  
  .customer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: var(--color-text);
  }
  
  .reset-message {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 32px;
  }
  
  .reset-success {
    text-align: center;
  }
  
  .reset-success p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
  }
  
  .form-errors {
    padding: 16px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
  }
  
  .form-field {
    margin-bottom: 20px;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
  }
  
  .form-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 16px;
  }
  
  .form-field input:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  
  .btn {
    width: 100%;
    margin-bottom: 16px;
  }
  
  .customer-links {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }
  
  .customer-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 14px;
  }
  
  .customer-links a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .customer-form-wrapper {
      padding: 32px 24px;
    }
  }
/* END_SECTION:customer-reset-password */

/* START_SECTION:featured-products (INDEX:15, SCOPED:FALSE) */
.section-featured-products {
    padding: 80px 0;
    background: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .section-description {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
  }
  
  .product-card-featured {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .product-card-featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(193, 119, 103, 0.2);
  }
  
  .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-surface);
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .product-card-featured:hover .product-image {
    transform: scale(1.08);
  }
  
  .product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    color: var(--color-text-light);
  }
  
  .sale-badge,
  .new-badge {
    position: absolute;
    top: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    z-index: 1;
  }
  
  .sale-badge {
    left: 12px;
    background: var(--color-primary);
  }
  
  .new-badge {
    {% if product.tags contains 'new' and product.compare_at_price > product.price %}
      left: 12px;
      top: 50px;
    {% else %}
      left: 12px;
    {% endif %}
    background: var(--color-secondary);
  }
  
  .product-card-info {
    padding: 20px;
  }
  
  .product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .product-price {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .price-regular,
  .price-sale {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
  }
  
  .price-original {
    font-size: 16px;
    text-decoration: line-through;
    color: var(--color-text-light);
  }
  
  .view-all-link {
    text-align: center;
    margin-top: 32px;
  }
  
  .no-products-state {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .no-products-state svg {
    color: var(--color-text-light);
    opacity: 0.5;
    margin-bottom: 8px;
  }
  
  .no-products {
    color: var(--color-text-light);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }
  
  .no-products-subtitle {
    color: var(--color-text-light);
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
  }
  
  @media (max-width: 768px) {
    .section-featured-products {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 32px;
    }
    
    .section-description {
      font-size: 16px;
    }
    
    .featured-products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    
    .product-card-info {
      padding: 16px;
    }
    
    .product-title {
      font-size: 16px;
    }
    
    .price-regular,
    .price-sale {
      font-size: 18px;
    }
  }
  
  @media (max-width: 480px) {
    .featured-products-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
/* END_SECTION:featured-products */

/* START_SECTION:features (INDEX:16, SCOPED:FALSE) */
.section-features {
    padding: 60px 0;
    background: white;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
  }
  
  .feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: var(--color-surface);
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .feature-card:hover {
    background: white;
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(193, 119, 103, 0.15);
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
  }
  
  .feature-description {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 15px;
  }
  
  @media (max-width: 768px) {
    .section-features {
      padding: 40px 0;
    }
    
    .features-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    
    .feature-card {
      padding: 24px 16px;
    }
    
    .feature-icon {
      width: 60px;
      height: 60px;
    }
    
    .feature-icon svg {
      width: 30px;
      height: 30px;
    }
  }
/* END_SECTION:features */

/* START_SECTION:hero (INDEX:19, SCOPED:FALSE) */
.hero-modern {
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 119, 103, 0.9) 0%, rgba(139, 115, 85, 0.85) 100%);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
  }
  
  .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
  }
  
  .hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  
  .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }
  
  .hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .hero-decoration {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0;
    z-index: 2;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  @media (max-width: 768px) {
    .hero-modern {
      padding: 80px 16px;
      min-height: 500px;
    }
    
    .hero-title {
      font-size: 36px;
    }
    
    .hero-description {
      font-size: 16px;
    }
    
    .hero-stats {
      gap: 24px;
      flex-wrap: wrap;
    }
    
    .stat-number {
      font-size: 24px;
    }
    
    .btn-large {
      padding: 14px 24px;
      font-size: 16px;
    }
  }
/* END_SECTION:hero */

/* START_SECTION:password-page (INDEX:21, SCOPED:FALSE) */
.password-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 24px;
  }
  
  .password-container {
    max-width: 500px;
    width: 100%;
  }
  
  .password-content {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
  }
  
  .password-logo {
    margin-bottom: 32px;
  }
  
  .password-logo img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
  }
  
  .password-shop-name {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--color-text);
  }
  
  .password-message {
    margin-bottom: 32px;
    color: var(--color-text-light);
    line-height: 1.6;
  }
  
  .password-form {
    margin-bottom: 32px;
  }
  
  .form-errors {
    padding: 12px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    font-size: 14px;
  }
  
  .form-field {
    margin-bottom: 16px;
  }
  
  .form-field input {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: border-color 0.2s;
  }
  
  .form-field input:focus {
    outline: none;
    border-color: var(--color-primary);
  }
  
  .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
  }
  
  .password-social {
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }
  
  .password-social p {
    margin-bottom: 16px;
    color: var(--color-text-light);
    font-size: 14px;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  
  .social-links a {
    color: var(--color-text-light);
    transition: color 0.2s;
  }
  
  .social-links a:hover {
    color: var(--color-primary);
  }
  
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  @media (max-width: 768px) {
    .password-content {
      padding: 32px 24px;
    }
    
    .password-shop-name {
      font-size: 28px;
    }
  }
/* END_SECTION:password-page */

/* START_SECTION:product-recommendations (INDEX:22, SCOPED:FALSE) */
.product-recommendations-wrapper {
    display: block;
  }

  .product-recommendations {
    padding: 80px 0;
    background: #ffffff;
  }

  .recommendations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .recommendations-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #1f2937;
    background: linear-gradient(135deg, #C17767, #D4A574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
  }

  .recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
  }

  .recommendation-card {
    background: #faf9f7;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
  }

  .recommendation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .recommendation-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .recommendation-image {
    position: relative;
    padding-bottom: 125%;
    overflow: hidden;
    background: #faf9f7;
  }

  .recommendation-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .recommendation-card:hover .recommendation-image img {
    transform: scale(1.1);
  }

  .recommendation-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf9f7;
    color: #6b7280;
  }

  .recommendation-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
  }

  .badge-sale {
    background: #C17767;
    color: white;
  }

  .recommendation-info {
    padding: 24px;
  }

  .recommendation-product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .recommendation-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
  }

  .price,
  .price-sale {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
  }

  .price-compare {
    font-size: 16px;
    color: #6b7280;
    text-decoration: line-through;
  }

  .recommendation-vendor {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
  }

  @media (max-width: 768px) {
    .recommendations-title {
      font-size: 28px;
      margin-bottom: 32px;
    }

    .recommendations-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 16px;
    }

    .recommendation-info {
      padding: 16px;
    }

    .recommendation-product-title {
      font-size: 16px;
    }

    .price,
    .price-sale {
      font-size: 18px;
    }
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:product (INDEX:23, SCOPED:FALSE) */
.product-page {
    padding: var(--spacing-sections) 0;
  }
  
  .product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sections);
    align-items: start;
  }
  
  .product-images {
    position: sticky;
    top: 100px;
  }
  
  .product-image-main {
    margin-bottom: var(--spacing-elements);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-surface);
  }
  
  .product-image-main img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .product-image-placeholder {
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    color: var(--color-text-light);
  }
  
  .product-image-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-small);
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  .thumbnail-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  
  .thumbnail-btn:hover {
    transform: scale(1.05);
  }
  
  .thumbnail-btn.active {
    border-color: var(--color-primary);
  }
  
  .thumbnail-btn img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  
  .product-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-elements);
    color: var(--color-text);
    line-height: 1.2;
  }
  
  .product-price {
    margin-bottom: var(--spacing-elements);
  }
  
  .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
  }
  
  .price-sale {
    font-size: 28px;
    font-weight: 700;
    color: #ef4444;
  }
  
  .price-compare {
    font-size: 1.125rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-left: var(--spacing-small);
  }
  
  .price-save {
    display: block;
    font-size: 0.875rem;
    color: #dc2626;
    font-weight: 600;
    margin-top: var(--spacing-small);
  }
  
  .product-description {
    margin-bottom: 32px;
    color: var(--color-text-light);
    line-height: 1.7;
  }
  
  .product-form {
    margin-bottom: var(--spacing-elements);
  }
  
  .product-variants {
    margin-bottom: var(--spacing-elements);
  }
  
  .product-option {
    margin-bottom: 24px;
  }
  
  .option-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .option-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .variant-button {
    padding: 12px 24px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: white;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 60px;
    text-align: center;
  }
  
  .variant-button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 119, 103, 0.15);
  }
  
  .variant-button.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(193, 119, 103, 0.25);
  }
  
  .variant-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #ccc;
  }
  
  .variant-button:disabled:hover {
    transform: none;
    border-color: #ccc;
    color: var(--color-text);
    box-shadow: none;
  }
  
  .variant-select-hidden {
    display: none !important;
  }
  
  .product-quantity {
    margin-bottom: var(--spacing-elements);
  }
  
  .product-quantity label {
    display: block;
    margin-bottom: var(--spacing-small);
    font-weight: 600;
    color: var(--color-text);
  }
  
  .quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: fit-content;
  }
  
  .quantity-btn {
    background: var(--color-surface);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    transition: background var(--transition-speed) var(--transition-ease);
  }
  
  .quantity-btn:hover {
    background: var(--color-border);
  }
  
  .quantity-input {
    border: none;
    padding: 12px 16px;
    text-align: center;
    width: 80px;
    background: var(--color-background);
    color: var(--color-text);
  }
  
  .product-actions {
    margin-bottom: var(--spacing-elements);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
  }
  
  .btn-add-to-cart {
    padding: 16px 24px;
    font-size: 1.125rem;
    font-weight: 600;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .btn-add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  /* Style Shopify payment button to match */
  .product-actions .shopify-payment-button {
    display: block;
    height: 56px;
    overflow: hidden;
  }
  
  .product-actions .shopify-payment-button button {
    width: 100%;
    height: 56px;
    padding: 16px 24px;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .product-actions .shopify-payment-button button:hover {
    background: #d97706;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }
  
  /* Hide extra payment method text and subscription information */
  .product-actions .shopify-payment-button__more-options,
  .product-actions .shopify-payment-button__modal,
  .product-actions [data-testid="shopify-payment-button-more-options"],
  .product-actions .shopify-payment-button p,
  .product-actions .shopify-payment-button span:not([role="button"]),
  .product-actions .shopify-payment-terms,
  .product-actions [data-shopify-buttoncontainer] > *:not(button) {
    display: none !important;
  }
  
  /* Ensure only the button is visible */
  .product-actions [data-shopify-buttoncontainer] {
    height: 56px;
    overflow: hidden;
  }
  
  .product-details {
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-elements);
  }
  
  .product-detail {
    margin-bottom: var(--spacing-small);
    color: var(--color-text-light);
  }
  
  .product-tags {
    margin-top: var(--spacing-elements);
  }
  
  .tag {
    display: inline-block;
    background: var(--color-surface);
    color: var(--color-text);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    margin-right: var(--spacing-small);
    margin-bottom: var(--spacing-small);
  }
  
  .product-blocks {
    margin-top: var(--spacing-elements);
    padding-top: var(--spacing-elements);
    border-top: 1px solid var(--color-border);
  }
  
  .product-block {
    margin-bottom: var(--spacing-elements);
  }
  
  .product-block-text,
  .product-block-custom {
    padding: 16px;
    background: var(--color-surface);
    border-radius: var(--border-radius);
    line-height: 1.6;
  }
  
  
  @media (max-width: 768px) {
    .product-content {
      grid-template-columns: 1fr;
      gap: var(--spacing-elements);
    }
    
    .product-images {
      position: static;
    }
    
    .product-title {
      font-size: 2rem;
    }
    
    .product-image-thumbnails {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .product-actions {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    
    .variant-button {
      padding: 10px 20px;
      font-size: 14px;
      min-width: 50px;
    }
    
    .option-values {
      gap: 8px;
    }
    
    .product-option {
      margin-bottom: 20px;
    }
  }
  
  /* Product Error State */
  .product-error {
    text-align: center;
    padding: 80px 24px;
  }
  
  .product-error h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
  }
  
  .product-error p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
  }
  
  .product-error .btn {
    display: inline-flex;
  }
  
  /* Product Not Found - Featured Products Styles */
  .product-not-found {
    text-align: center;
  }
  
  .product-error-header {
    margin-bottom: 60px;
  }
  
  .error-heading {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--color-text);
  }
  
  .error-description {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
  }
  
  .featured-products-section {
    margin-top: 60px;
  }
  
  .section-heading {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
  }
  
  .featured-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(193, 119, 103, 0.15);
  }
  
  .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .product-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-surface);
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .featured-product-card:hover .product-image {
    transform: scale(1.05);
  }
  
  .product-image-placeholder-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    color: var(--color-text-light);
  }
  
  .sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text);
    line-height: 1.4;
  }
  
  .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .price-regular,
  .price-sale {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
  }
  
  .price-original {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--color-text-light);
  }
  
  @media (max-width: 768px) {
    .error-heading {
      font-size: 32px;
    }
    
    .featured-products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }
/* END_SECTION:product */

/* START_SECTION:search-results (INDEX:24, SCOPED:FALSE) */
.search-page {
    padding: 24px 0 var(--spacing-sections) 0;
    min-height: 60vh;
  }
  
  .search-header {
    text-align: center;
    margin-bottom: 32px;
    padding: 0 0 8px 0;
  }
  
  .search-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: fadeInDown 0.8s ease-out;
    position: relative;
    display: inline-block;
  }
  
  .search-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
  }
  
  .search-results-count {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.3s both;
  }
  
  .search-form-container {
    max-width: 600px;
    margin: 0 auto 48px;
  }
  
  .search-input-wrapper-page {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border, #e8e3dd);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
    background: white;
  }
  
  .search-input-wrapper-page:focus-within {
    border-color: var(--color-primary, #C17767);
    box-shadow: 0 0 0 3px rgba(193, 119, 103, 0.1);
  }
  
  .search-input-page {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
    background: transparent;
    color: var(--color-text, #1f2937);
  }
  
  .search-input-page:focus {
    outline: none;
  }
  
  .search-input-page::placeholder {
    color: var(--color-text-light, #6b7280);
  }
  
  .search-submit-page {
    padding: 16px 20px;
    background: var(--color-primary, #C17767);
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  
  .search-submit-page:hover {
    background: #A8604F;
  }
  
  .search-submit-page:focus-visible {
    outline: 2px solid var(--color-primary, #C17767);
    outline-offset: 2px;
  }
  
  .search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-elements);
    margin-bottom: var(--spacing-sections);
  }
  
  .product-card-search {
    background: var(--color-surface, #faf9f7);
    border-radius: var(--border-radius, 8px);
    overflow: hidden;
    transition: all var(--transition-speed, 0.3s) var(--transition-ease);
    position: relative;
  }
  
  .product-card-search:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.1));
  }
  
  .product-card-image {
    position: relative;
    padding-bottom: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background: var(--color-surface, #faf9f7);
  }
  
  .product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .product-card-search:hover .product-card-image img {
    transform: scale(1.05);
  }
  
  .product-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-surface, #faf9f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light, #6b7280);
  }
  
  .product-card-info {
    padding: var(--spacing-elements, 32px);
  }
  
  .product-card-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-small, 16px);
    color: var(--color-text, #1f2937);
  }
  
  .product-card-title a {
    color: var(--color-text, #1f2937);
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .product-card-title a:hover {
    color: var(--color-primary, #C17767);
  }
  
  .product-card-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-small, 16px);
    margin-bottom: var(--spacing-small, 16px);
  }
  
  .price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text, #1f2937);
  }
  
  .compare-price {
    font-size: 0.875rem;
    color: var(--color-text-light, #6b7280);
    text-decoration: line-through;
  }
  
  .product-card-description {
    font-size: 0.875rem;
    color: var(--color-text-light, #6b7280);
    line-height: 1.6;
    margin: 0;
  }
  
  .badge {
    position: absolute;
    top: var(--spacing-small, 16px);
    left: var(--spacing-small, 16px);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
  }
  
  .badge-sale {
    background: var(--color-primary, #C17767);
    color: white;
  }
  
  .badge-new {
    background: var(--color-accent, #D4A574);
    color: white;
  }
  
  .search-no-results,
  .search-empty-state {
    text-align: center;
    padding: 80px 24px;
  }
  
  .no-results-content,
  .empty-state-content {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .no-results-content svg,
  .empty-state-content svg {
    color: var(--color-text-light, #6b7280);
    margin-bottom: 24px;
  }
  
  .no-results-content h2,
  .empty-state-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text, #1f2937);
  }
  
  .no-results-content p,
  .empty-state-content p {
    font-size: 18px;
    color: var(--color-text-light, #6b7280);
    margin-bottom: 32px;
    line-height: 1.6;
  }
  
  .pagination {
    margin-top: var(--spacing-sections, 80px);
    text-align: center;
  }
  
  .pagination a,
  .pagination span {
    display: inline-block;
    padding: 12px 16px;
    margin: 0 4px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--color-text, #1f2937);
    background: var(--color-surface, #faf9f7);
    transition: all 0.2s;
  }
  
  .pagination a:hover {
    background: var(--color-primary, #C17767);
    color: white;
  }
  
  .pagination .current {
    background: var(--color-primary, #C17767);
    color: white;
    font-weight: 600;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes expandLine {
    from {
      width: 0;
      opacity: 0;
    }
    to {
      width: 80px;
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @media (max-width: 768px) {
    .search-title {
      font-size: 36px;
    }
    
    .search-results-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
    }
    
    .product-card-info {
      padding: 20px;
    }
    
    .search-form-container {
      margin-bottom: 32px;
    }
  }
/* END_SECTION:search-results */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:34, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

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

/* START_SNIPPET:search-modal (INDEX:39, SCOPED:FALSE) */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .search-modal.active {
    display: block;
    opacity: 1;
  }

  .search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
  }

  .search-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    margin: 10vh auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
  }

  .search-modal.active .search-modal-content {
    transform: translateY(0);
  }

  .search-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--color-border, #e8e3dd);
  }

  .search-modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text, #1f2937);
  }

  .search-modal-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-text, #1f2937);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s;
  }

  .search-modal-close:hover {
    background: var(--color-surface, #faf9f7);
  }

  .search-modal-close:focus-visible {
    outline: 2px solid var(--color-primary, #C17767);
    outline-offset: 2px;
  }

  .search-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
  }

  .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border, #e8e3dd);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .search-input-wrapper:focus-within {
    border-color: var(--color-primary, #C17767);
  }

  .search-input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 16px;
    background: transparent;
    color: var(--color-text, #1f2937);
  }

  .search-input:focus {
    outline: none;
  }

  .search-input::placeholder {
    color: var(--color-text-light, #6b7280);
  }

  .search-submit {
    padding: 14px 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text, #1f2937);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
  }

  .search-submit:hover {
    color: var(--color-primary, #C17767);
  }

  .search-submit:focus-visible {
    outline: 2px solid var(--color-primary, #C17767);
    outline-offset: -2px;
  }

  .search-results {
    margin-top: 24px;
    max-height: 400px;
    overflow-y: auto;
  }

  .search-results:empty {
    display: none;
  }

  .search-result-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--color-border, #e8e3dd);
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .search-result-item:hover,
  .search-result-item:focus {
    background: var(--color-surface, #faf9f7);
    outline: none;
  }

  .search-result-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .search-result-item-content {
    flex: 1;
    min-width: 0;
  }

  .search-result-item h3 {
    font-size: 16px;
    margin: 0 0 4px 0;
    color: var(--color-text, #1f2937);
    font-weight: 600;
  }

  .search-result-item .price {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary, #C17767);
  }

  .no-results {
    text-align: center;
    padding: 32px;
    color: var(--color-text-light, #6b7280);
  }

  @media (max-width: 768px) {
    .search-modal-content {
      width: 100%;
      max-height: 100vh;
      margin: 0;
      border-radius: 0;
    }

    .search-modal-header,
    .search-modal-body {
      padding: 16px;
    }
  }
/* END_SNIPPET:search-modal */