/** Shopify CDN: Minification failed

Line 1924:12 Expected identifier but found whitespace
Line 1924:14 Unexpected "{"
Line 1924:23 Expected ":"
Line 1924:69 Expected ":"
Line 1954:12 Expected identifier but found whitespace
Line 1954:14 Unexpected "{"
Line 1954:23 Expected ":"
Line 1954:69 Expected ":"
Line 1955:14 Expected identifier but found whitespace
Line 1955:16 Unexpected "{"
... and 13 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0) */
.error-page {
  min-height: calc(100vh - var(--header-total-height) - var(--footer-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: #efebe0;
}

.error-page__container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.error-page__content {
  background: #fff;
  padding: 80px 40px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.error-page__title {
  font-size: 72px;
  font-weight: 700;
  color: #3D2500;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.error-page__message {
  font-size: 16px;
  color: #666;
  margin: 0 0 40px;
  line-height: 1.6;
}

.error-page__button {
  display: inline-block;
  padding: 16px 40px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #3D2500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0;
}

.error-page__button:hover {
  background: #2a1a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 37, 0, 0.2);
}

@media (max-width: 768px) {
  .error-page__content {
    padding: 60px 30px;
  }
  
  .error-page__title {
    font-size: 56px;
  }
}
/* END_SECTION:404 */

/* START_SECTION:all-products (INDEX:1) */
.all-products-page {
  background: #efebe0;
  min-height: 100vh;
  padding-top: 0;
}

/* Header */
.all-products__header {
  padding: 0 40px 30px;
}

.all-products__title {
  font-family: 'Dildot LP', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.all-products__count {
  font-size: 0.4em;
  font-weight: 400;
  color: #666;
  vertical-align: super;
}

/* Category Tabs */
.all-products__tabs-wrapper {
  padding: 0 40px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.all-products__tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 15px;
  min-width: max-content;
}

.all-products__tab {
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.all-products__tab:hover {
  color: #1a1a1a;
}

.all-products__tab.is-active {
  color: #1a1a1a;
  font-weight: 600;
}

.all-products__tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a1a1a;
}

/* Controls Bar */
.all-products__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.all-products__model-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Model Toggle Switch */
.model-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.model-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.model-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.model-toggle__slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.model-toggle input:checked + .model-toggle__slider {
  background-color: #1a1a1a;
}

.model-toggle input:checked + .model-toggle__slider::before {
  transform: translateX(20px);
}

.model-toggle__label {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

.all-products__product-count {
  font-size: 13px;
  color: #666;
}

.all-products__filter-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.2s ease;
}

.all-products__filter-btn:hover {
  color: #1a1a1a;
}

/* Grid Panels */
.all-products__grid-wrapper {
  padding: 20px 40px 80px;
}

.all-products__grid-panel {
  display: none;
}

.all-products__grid-panel.is-active {
  display: block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Model view state - can be styled differently if needed */
.product-card.model-view {
  /* Custom styling when model toggle is on */
}

/* Responsive */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .all-products__header,
  .all-products__tabs-wrapper,
  .all-products__controls,
  .all-products__grid-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .all-products__tabs {
    gap: 16px;
  }
  
  .all-products__tab {
    font-size: 12px;
  }
  
  .all-products__controls {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .all-products__product-count {
    order: -1;
    width: 100%;
    text-align: center;
  }
  
  .product-grid {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .all-products-page {
    padding-top: 0;
  }
  
  .all-products__header {
    padding: 0 20px 5px;
  }
  
  .all-products__title {
    font-size: 24px;
  }
}
/* END_SECTION:all-products */

/* START_SECTION:announcement-bar (INDEX:2) */
.announcement-bar {
  background: var(--announcement-bg);
  color: var(--announcement-text);
  padding: 0;
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001; /* Above header */
  height: var(--announcement-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.announcement-bar:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.announcement-item {
  padding: 0 16px;
  transition: opacity 0.3s ease;
}

.announcement-bar:hover .announcement-item {
  opacity: 0.8;
}

.announcement-separator {
  opacity: 0.4;
  font-size: 8px;
}

/* Mobile - make announcement bar flow naturally */
@media (max-width: 768px) {
  .announcement-bar {
    position: relative;
    z-index: 100;
  }
}
/* END_SECTION:announcement-bar */

/* START_SECTION:article (INDEX:3) */
.article-page {
  padding: 60px 0 80px;
  min-height: calc(100vh - var(--header-total-height) - var(--footer-height));
  background: #efebe0;
}

.article-page__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.article {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 60px;
}

.article__image-wrapper {
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
  background: #f5f5f5;
}

.article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article__header {
  padding: 60px 60px 40px;
  border-bottom: 1px solid #eee;
}

.article__title {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.article__meta {
  font-size: 12px;
  color: #888;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article__content {
  padding: 40px 60px 60px;
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
}

.article__content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #3D2500;
  margin: 40px 0 20px;
}

.article__content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #3D2500;
  margin: 30px 0 15px;
}

.article__content p {
  margin: 0 0 20px;
}

.article__content ul,
.article__content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.article__content li {
  margin-bottom: 10px;
}

.article__content a {
  color: #3D2500;
  text-decoration: underline;
}

.article__content img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 4px;
}

.article-comments {
  background: #fff;
  padding: 60px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.article-comments__title {
  font-size: 24px;
  font-weight: 600;
  color: #3D2500;
  margin: 0 0 40px;
}

.article-comments__list {
  margin-bottom: 40px;
}

.article-comment {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.article-comment:last-child {
  border-bottom: none;
}

.article-comment__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.article-comment__author {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.article-comment__date {
  font-size: 12px;
  color: #888;
}

.article-comment__content {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.article-comments__empty {
  font-size: 14px;
  color: #888;
  margin: 0 0 40px;
  text-align: center;
  padding: 40px;
  background: #fafafa;
  border-radius: 4px;
}

.article-comment-form {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.article-comment-form__title {
  font-size: 20px;
  font-weight: 600;
  color: #3D2500;
  margin: 0 0 30px;
}

.article-comment-form__errors {
  padding: 16px;
  background: #fee;
  color: #c33;
  border-radius: 4px;
  margin-bottom: 24px;
}

.article-comment-form__field {
  margin-bottom: 24px;
}

.article-comment-form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-comment-form__input,
.article-comment-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #1a1a1a;
  transition: border-color 0.3s ease;
}

.article-comment-form__input:focus,
.article-comment-form__textarea:focus {
  outline: none;
  border-color: #3D2500;
}

.article-comment-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.article-comment-form__submit {
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #3D2500;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.article-comment-form__submit:hover {
  background: #2a1a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 37, 0, 0.2);
}

@media (max-width: 768px) {
  .article-page__container {
    padding: 0 20px;
  }
  
  .article__header,
  .article__content {
    padding: 40px 30px;
  }
  
  .article__title {
    font-size: 28px;
  }
  
  .article-comments {
    padding: 40px 30px;
  }
}
/* END_SECTION:article */

/* START_SECTION:blog (INDEX:4) */
.blog-page {
  padding: 60px 0 80px;
  min-height: calc(100vh - var(--header-total-height) - var(--footer-height));
  background: #efebe0;
}

.blog-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-page__title {
  font-size: 32px;
  font-weight: 400;
  color: #3D2500;
  margin: 0 0 60px;
  letter-spacing: -0.02em;
  text-align: center;
}

.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.blog-article {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-article__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-article__image-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f5;
}

.blog-article__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-article:hover .blog-article__image {
  transform: scale(1.05);
}

.blog-article__content {
  padding: 30px;
}

.blog-article__title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.3;
}

.blog-article__meta {
  font-size: 12px;
  color: #888;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-article__excerpt {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px;
  line-height: 1.6;
}

.blog-article__read-more {
  font-size: 12px;
  font-weight: 600;
  color: #3D2500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.blog-article:hover .blog-article__read-more {
  color: #2a1a00;
}

.blog-pagination {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .blog-page__container {
    padding: 0 20px;
  }
  
  .blog-articles {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .blog-article__content {
    padding: 24px;
  }
}
/* END_SECTION:blog */

/* START_SECTION:cart (INDEX:5) */
.cart-page {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 80px 40px;
  min-height: 80vh;
  background: #fff;
}

.cart-page__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.cart-page__title {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.cart-page__count {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.cart-page__content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
}

.cart-page__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.cart-item__image {
  width: 120px;
  height: 150px;
  background: #f5f5f5;
  overflow: hidden;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__placeholder {
  width: 100%;
  height: 100%;
  background: #e5e5e5;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 6px;
  display: block;
}

.cart-item__title:hover {
  opacity: 0.7;
}

.cart-item__variant {
  font-size: 12px;
  color: #888;
  margin: 0 0 8px;
}

.cart-item__price-single {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cart-item__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}

.cart-item__quantity .qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-item__quantity .qty-btn:hover {
  background: #f5f5f5;
}

.cart-item__quantity .qty-input {
  width: 40px;
  height: 36px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 13px;
  font-weight: 500;
}

.cart-item__quantity .qty-input::-webkit-inner-spin-button,
.cart-item__quantity .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.cart-item__remove {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.cart-item__remove:hover {
  color: #1a1a1a;
}

.cart-item__price {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: right;
}

.cart-item__price--compare {
  text-decoration: line-through;
  text-decoration-color: #c00;
  color: #999;
  font-weight: 400;
  margin-right: 8px;
}

.cart-item__price--sale {
  color: #c00;
  font-weight: 600;
}

.cart-summary__compare {
  text-decoration: line-through;
  text-decoration-color: #c00;
  color: #999;
  font-weight: 400;
  margin-right: 8px;
}

.cart-summary__sale {
  color: #c00;
  font-weight: 600;
}

.cart-summary__discount {
  color: #2a6;
}

.cart-summary__code {
  font-weight: 600;
  text-transform: uppercase;
}

.cart-update-btn {
  margin-top: 30px;
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.cart-update-btn:hover {
  background: #f5f5f5;
  border-color: #1a1a1a;
}

/* Summary */
.cart-summary {
  background: #fafafa;
  padding: 40px;
  position: sticky;
  top: 120px;
}

.cart-summary__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  color: #1a1a1a;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 15px;
  color: #666;
}

.cart-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin: 25px 0;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  color: #1a1a1a;
}

.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 30px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 14px;
}

.cart-checkout-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-checkout-btn:hover::before {
  transform: translateX(0);
}

.cart-checkout-btn span,
.cart-checkout-btn svg {
  position: relative;
  z-index: 1;
}

.cart-checkout-btn:hover svg {
  transform: translateX(4px);
}

.cart-checkout-btn svg {
  transition: transform 0.3s ease;
}

.cart-continue-btn {
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  color: #1a1a1a;
  border: 1px solid #ddd;
  background: #fff;
  transition: all 0.3s ease;
}

.cart-continue-btn:hover {
  border-color: #1a1a1a;
  background: #f5f5f5;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 100px 20px;
}

.cart-empty__icon {
  margin-bottom: 30px;
  color: #ccc;
}

.cart-empty__title {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 15px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.cart-empty__text {
  font-size: 14px;
  color: #888;
  margin: 0 0 40px;
}

.cart-empty__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.cart-empty__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-empty__btn:hover::before {
  transform: translateX(0);
}

.cart-empty__btn span,
.cart-empty__btn svg {
  position: relative;
  z-index: 1;
}

.cart-empty__btn:hover svg {
  transform: translateX(4px);
}

.cart-empty__btn svg {
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .cart-page {
    padding: 60px 30px;
  }
  
  .cart-page__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cart-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-page {
    padding: 40px 20px;
  }
  
  .cart-page__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .cart-page__title {
    font-size: 24px;
  }
  
  .cart-item {
    grid-template-columns: 90px 1fr;
    gap: 20px;
  }
  
  .cart-item__price {
    grid-column: 1 / -1;
    text-align: left;
    padding-top: 10px;
  }
  
  .cart-item__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cart-summary {
    padding: 30px;
  }
}
/* END_SECTION:cart */

/* START_SECTION:collection-list (INDEX:6) */
.collection-list-section {
  padding: 80px 0;
  background: #efebe0;
}

.collection-list__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.collection-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.collection-list-card {
  position: relative;
  background: #efebe0;
}

.collection-list-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.collection-list-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.collection-list-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-list-card:hover .collection-list-card__media img {
  transform: scale(1.05);
}

.collection-list-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-list-card:hover .collection-list-card__overlay {
  opacity: 1;
}

.collection-list-card__button {
  color: #efebe0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #efebe0;
  padding: 12px 24px;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-list-card:hover .collection-list-card__button {
  transform: translateY(0);
}

.collection-list-card__info {
  padding: 25px 20px;
  text-align: center;
}

.collection-list-card__title {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 5px;
  color: #1a1a1a;
}

.collection-list-card__count {
  font-size: 10px;
  color: #888;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .collection-list-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .collection-list-section { padding: 40px 0; }
  .collection-list__title { margin-bottom: 30px; }
}
/* END_SECTION:collection-list */

/* START_SECTION:collection (INDEX:7) */
/* Inherits styles from all-products.liquid via theme.css or duplicated if needed.
   Since all-products.liquid has scoped CSS, we need to duplicate it here or move it to theme.css.
   For safety, mirroring the CSS here.
*/

.all-products-page {
  background: #efebe0;
  min-height: 100vh;
  padding-top: 0; /* Managed by natural flow */
}

/* Header */
.all-products__header {
  padding: 0 40px 30px;
}

.all-products__title {
  font-family: 'Dildot LP', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.all-products__count {
  font-size: 0.4em;
  font-weight: 400;
  color: #666;
  vertical-align: super;
}

/* Category Tabs */
.all-products__tabs-wrapper {
  padding: 0 40px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.all-products__tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 15px;
  min-width: max-content;
}

.all-products__tab {
  background: none;
  border: none;
  padding: 8px 0;
  text-decoration: none; /* Changed from button style */
  font-size: 13px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.all-products__tab:hover {
  color: #1a1a1a;
}

.all-products__tab.is-active {
  color: #1a1a1a;
  font-weight: 600;
}

.all-products__tab.is-active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a1a1a;
}

/* Controls Bar */
.all-products__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.all-products__model-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Model Toggle Switch */
.model-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.model-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.model-toggle__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.model-toggle__slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.model-toggle input:checked + .model-toggle__slider {
  background-color: #1a1a1a;
}

.model-toggle input:checked + .model-toggle__slider::before {
  transform: translateX(20px);
}

.model-toggle__label {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
}

.all-products__product-count {
  font-size: 13px;
  color: #666;
}

.all-products__filter-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.2s ease;
}

.all-products__filter-btn:hover {
  color: #1a1a1a;
}

/* Grid Wrapper */
.all-products__grid-wrapper {
  padding: 20px 40px 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .all-products__header,
  .all-products__tabs-wrapper,
  .all-products__controls,
  .all-products__grid-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .all-products__tabs {
    gap: 16px;
  }
  
  .all-products__tab {
    font-size: 12px;
  }
  
  .all-products__controls {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .all-products__product-count {
    order: -1;
    width: 100%;
    text-align: center;
  }
  
  .product-grid {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .all-products-page {
    padding-top: 0;
  }
  
  .all-products__header {
    padding: 0 20px 5px;
  }
  
  .all-products__title {
    font-size: 24px;
  }
}
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:8) */
.collections-section {
  padding: 80px 0;
  background: #efebe0;
}

.collections-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 60px;
  color: #1a1a1a;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.collection-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #efebe0;
}

.collection-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-card__media img {
  transform: scale(1.05);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card:hover .collection-card__overlay {
  opacity: 1;
}

.collection-card__button {
  color: #efebe0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #efebe0;
  padding: 12px 24px;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-card__button {
  transform: translateY(0);
}

.collection-card__info {
  padding: 24px 20px;
  text-align: center;
}

.collection-card__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 4px;
  color: #1a1a1a;
}

.collection-card__count {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .collections-section { padding: 40px 0; }
  .collections-title { margin-bottom: 30px; }
  .collection-card__info { padding: 15px 10px; }
}
/* END_SECTION:collections */

/* 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:11) */
.featured-products {
  padding: 0;
  background: #efebe0;
  margin-top: -1px; /* Pull up to cover any sub-pixel gaps with hero */
  position: relative;
  z-index: 2; /* Ensure it sits on top of any potential hero bleed */
}

.featured-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.featured-card {
  position: relative;
  background: #efebe0;
}

.featured-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: transparent !important;
}

.featured-card__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover image logic */
.featured-card__media .primary-image {
  z-index: 1;
}

.featured-card__media .hover-image {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.featured-card__media.has-hover-image:hover .hover-image {
  opacity: 1;
}

/* Overlay and Text */
.featured-card__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45); /* Darker overlay for better visibility */
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.featured-card:hover .featured-card__hover {
  opacity: 1;
}

.featured-card__hover-text {
  color: #efebe0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  transform: translateY(15px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.featured-card:hover .featured-card__hover-text {
  transform: translateY(0);
}

.featured-card__hover-text:hover {
  opacity: 0.8;
  transform: scale(1.05) !important;
}

/* Ensure no pseudo-element overlay */
.featured-card__media::before,
.featured-card__media::after,
.featured-card__link::before,
.featured-card__link::after {
  display: none !important;
}

.featured-card__placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-card__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .featured-products__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .mobile-hidden { display: none !important; }
}

@media (min-width: 769px) {
  .desktop-hidden { display: none !important; }
}

@media (max-width: 480px) {
  .featured-products__grid { grid-template-columns: repeat(2, 1fr); }
}
/* END_SECTION:featured-products */

/* START_SECTION:footer (INDEX:12) */
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-top: var(--footer-padding-top);
  padding-bottom: var(--footer-padding-bottom);
  margin-top: var(--footer-margin-top);
  position: relative;
  z-index: 10;
}

.footer__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(40px, 8vw, 160px);
}

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__column {
  flex: 1;
  min-width: 200px;
}

.footer__brand {
  padding-right: 0;
}

.footer__logo {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer__logo-light { display: block; }
.footer__logo-dark { display: none; }
.footer--light-bg .footer__logo-light { display: none; }
.footer--light-bg .footer__logo-dark { display: block; }

.footer__column {
  min-width: 0;
}

.footer__tagline {
  font-size: {{ section.settings.tagline_font_size | default: 13 }}px;
  line-height: 1.6;
  opacity: 0.7;
  margin: 15px 0 15px;
  max-width: 280px;
}

.footer__brand-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__brand-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--footer-text);
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer__brand-link:hover {
  opacity: 1;
}

.footer__heading {
  font-size: {{ section.settings.heading_font_size | default: 10 }}px;
  font-weight: {{ section.settings.heading_font_weight | default: 700 }};
  text-transform: uppercase;
  letter-spacing: {{ section.settings.heading_letter_spacing | default: 2 }}px;
  margin: 0 0 24px;
  color: var(--footer-text);
  opacity: 1;
}

.footer__heading--invisible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 14px;
}

.footer__list a {
  font-size: {{ section.settings.link_font_size | default: 13 }}px;
  color: var(--footer-text);
  opacity: 0.6;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer__list a:hover {
  opacity: 1;
}

.footer__social-message {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0 0 20px;
  max-width: 350px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: var(--footer-text);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.footer__social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--footer-text);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__social-link:hover {
  color: var(--footer-bg);
}

.footer__social-link:hover::before {
  transform: scale(1);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
  gap: 8px;
}

.footer__copyright {
  font-size: {{ section.settings.copyright_font_size | default: 12 }}px;
  color: var(--footer-text);
  opacity: 0.4;
  margin: 0;
}

.footer__payment {
  display: flex;
  gap: 8px;
}

.footer__payment svg {
  width: 36px;
  height: 24px;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 20px;
  }
  
  .footer__container {
    padding: 0 24px;
  }
  
  .footer__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding-bottom: 20px;
  }

  .footer__column {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer__column:last-child {
    margin-bottom: 0;
  }

  .footer__logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }

  .footer__heading {
    margin-bottom: 12px;
  }

  .footer__list li {
    margin-bottom: 8px;
  }

  .footer__tagline {
    margin: 0 auto 15px;
    font-size: 12px;
  }

  .footer__brand-links {
    align-items: center;
    margin-bottom: 0;
  }

  .footer__social {
    justify-content: center;
    margin-top: 10px;
  }
  
  .footer__bottom {
    gap: 15px;
    padding: 20px 0;
  }
}
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:13) */
/* Absolute Positioning for Overlay */
/* Absolute Positioning for Overlay */
/* Absolute Positioning for Overlay */
/* Absolute Positioning for Overlay */
.header-wrapper {
  position: fixed;
  top: calc(var(--announcement-height, 36px) + var(--header-top-gap));
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), top 0.4s ease;
  will-change: transform, background, top;
}

.header-wrapper.is-scrolled {
  top: 0;
  background: var(--header-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Solid header when mega menu is open */
.header-wrapper.mega-menu-open {
  background: var(--header-bg) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-wrapper.mega-menu-open .header__menu-item,
.header-wrapper.mega-menu-open .header__logo-text {
  color: var(--header-text) !important;
}

/* Keep special button white text - don't override */
.header-wrapper.mega-menu-open .header__special-btn {
  color: #fff !important;
}


.header-wrapper--hidden {
  transform: translateY(-100%);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--header-padding);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  color: var(--header-text);
}

.header-wrapper--transparent:not(.is-scrolled) .header {
  color: var(--transparent-text);
}

@media (max-width: 768px) {
  .header {
    height: var(--header-height);
    padding: 0 var(--header-padding);
  }
}

.header__mobile-trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--header-text);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Removed color change on scroll for mobile trigger */

.header__nav--left { 
  display: flex;
  align-items: center;
  gap: var(--menu-gap);
  overflow: visible;
  height: 100%; /* Ensure nav spans full height */
}

.header__special-btn-wrapper {
  position: relative;
}

.header__special-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #3D2500 0%, #6B4423 50%, #3D2500 100%);
  background-size: 200% 100%;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(61, 37, 0, 0.3);
}

/* Shimmer effect */
.header__special-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

/* Subtle embroidery-style inner thread line */
.header__special-btn::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 47px;
  pointer-events: none;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.header__special-btn:hover {
  background-position: 100% 0;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(61, 37, 0, 0.4);
}

.header__special-btn:hover::after {
  border-color: rgba(255,255,255,0.4);
}

/* Mega menu adjustment for special button */
.mega-menu--special {
  top: calc(100% + 15px);
  left: auto;
  right: -50px;
  transform: translateX(0) scale(0.98);
}

.header__special-btn-wrapper:hover .mega-menu--special {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}


.header__menu {
  display: flex;
  gap: var(--menu-gap);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch; /* Key Fix: Make items span full header height */
  height: 100%;
  flex-wrap: nowrap;
}

.header__menu-item-wrapper { 
  display: flex;
  align-items: center;
  position: relative;
  height: 100%; 
}

.header__menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--menu-font-size);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  color: inherit;
}

.header__menu-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__menu-item:hover {
  opacity: 0.7;
}

.header__menu-item-wrapper:hover .header__menu-item::after {
  width: 100%;
}

.header__menu-item svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 10px;
  height: 10px;
}

.header__menu-item-wrapper:hover .header__menu-item svg {
  transform: rotate(180deg);
}

.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 40%;
  height: 100%; /* Ensure container fills height for vertical centering if needed */
}

.header__logo-img { 
  max-height: 100%;
  width: auto;
  transition: opacity 0.3s ease;
  display: block;
}

.header__logo-text {
  font-family: 'Dildot LP', serif;
  font-size: 160px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--header-text);
  transition: color 0.3s ease, font-size 0.3s ease;
  line-height: 1;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header__logo-main {
  display: block;
  max-width: var(--logo-width);
  max-height: var(--logo-height);
  width: auto;
  height: auto;
}

.header__logo-secondary {
  display: none;
  max-width: var(--logo-width);
  max-height: var(--logo-height);
  width: auto;
  height: auto;
}

/* Switch logos in transparent state */
.header-wrapper--transparent:not(.is-scrolled) .header__logo-main {
  display: none;
}
.header-wrapper--transparent:not(.is-scrolled) .header__logo-secondary {
  display: block;
}

@media (max-width: 768px) {
  .header__logo-main,
  .header__logo-secondary {
    max-width: 70px; /* Tiny for mobile */
    max-height: 35px; /* STRICT height limit for mobile (60px header) */
  }
}

/* Removed scroll-based logo switching */

.header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(10px, 2vw, 20px);
}

.header__search-wrapper {
  position: relative;
  width: var(--search-width);
  max-width: 100%;
  flex-shrink: 1;
}

.search-form {
  display: flex;
  align-items: center;
  background: rgba(239, 235, 224, 0.1);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-wrapper.is-scrolled .search-form {
  background: #efebe0;
  border-color: #d8d4c9;
}

.search-form:hover {
  border-color: var(--header-text);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-form:focus-within {
  border-color: var(--header-text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 20px 10px 24px;
  font-size: 13px;
  font-family: inherit;
  color: #1a1a1a;
  background: transparent;
  width: 100%;
  transition: all 0.3s ease;
}

.header-wrapper--transparent:not(.is-scrolled) .search-input {
  color: var(--transparent-text);
}

.search-input::placeholder {
  color: #999;
  background: linear-gradient(90deg, #999 0%, #bbb 50%, #999 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.search-submit {
  background: var(--header-text);
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 50px 50px 0;
}

.search-submit:hover {
  background: #333333;
  transform: scale(1.05);
}

.search-submit:active {
  transform: scale(0.98);
}

.search-submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.search-form:focus-within .search-submit svg {
  transform: rotate(15deg);
}

.header__icons {
  display: flex;
  gap: var(--icon-gap);
}

.header__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  transition: opacity 0.3s ease;
}

.header__icon-svg {
  color: inherit;
  filter: none;
  transition: all 0.3s ease;
}

.header-wrapper--transparent:not(.is-scrolled) .header__icon-svg {
  color: inherit !important;
  filter: none !important;
}

.header__icon:hover { opacity: 0.7; }


.header-wrapper.is-scrolled .header__icon-svg {
  color: var(--header-text) !important;
  filter: none !important;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--cart-badge-bg);
  color: var(--cart-badge-text);
  font-size: 9px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-count:empty, .cart-count[data-cart-count="0"] { display: none; }

/* ========================================
   MEGA MENU - Premium Vertical Layout
   ======================================== */

/* Make header solid when mega menu is open */
.has-mega-menu:hover ~ .header,
.header-wrapper:has(.has-mega-menu:hover) {
  background: var(--header-bg) !important;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: #EFEBE0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.3s, 
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Position mega menu relative to the header, not the link */
.has-mega-menu {
  position: static;
}

/* Hover logic - smooth and reliable */
.has-mega-menu:hover .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Arrow rotation on hover */
.has-mega-menu .header__menu-item svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.has-mega-menu:hover .header__menu-item svg {
  transform: rotate(180deg);
}

/* Inner container - premium spacing */
.mega-menu__inner {
  display: flex;
  gap: 80px;
  max-width: var(--page-width, 1400px);
  margin: 0 auto;
  padding: 40px var(--header-padding, 50px) 50px;
}

/* Each column in the mega menu - VERTICAL stacking */
.mega-menu__column {
  min-width: 140px;
}

/* Column title (the clickable category name) */
.mega-menu__title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 16px;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-menu__title:hover {
  color: #666;
  transform: translateX(3px);
}

/* List of links under each column - VERTICAL */
.mega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega-menu__list li {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(8px);
  animation: megaMenuFadeIn 0.4s ease forwards;
}

/* Staggered animation for list items */
.mega-menu__list li:nth-child(1) { animation-delay: 0.05s; }
.mega-menu__list li:nth-child(2) { animation-delay: 0.1s; }
.mega-menu__list li:nth-child(3) { animation-delay: 0.15s; }
.mega-menu__list li:nth-child(4) { animation-delay: 0.2s; }
.mega-menu__list li:nth-child(5) { animation-delay: 0.25s; }
.mega-menu__list li:nth-child(6) { animation-delay: 0.3s; }
.mega-menu__list li:nth-child(7) { animation-delay: 0.35s; }
.mega-menu__list li:nth-child(8) { animation-delay: 0.4s; }

@keyframes megaMenuFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mega-menu__list a {
  display: block;
  font-size: 13px;
  color: #555555;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.mega-menu__list a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  width: 0;
  height: 1px;
  background: #1a1a1a;
  transition: width 0.2s ease;
}

.mega-menu__list a:hover {
  color: #1a1a1a;
  transform: translateX(6px);
}

.mega-menu__list a:hover::before {
  width: 8px;
}

/* Divider between sections */
.mega-menu__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent);
  margin: 0 40px;
  align-self: stretch;
}

/* Mega Menu Sections */
.mega-menu__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-menu__section--left {
  min-width: 160px;
}

.mega-menu__section--right {
  min-width: 140px;
}

/* Section title (like "Panjabi", "Shackets") */
.mega-menu__section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #3D2500;
  margin-bottom: 16px;
  padding-bottom: 8px;
  display: block;
  border-bottom: 1px solid rgba(61, 37, 0, 0.15);
}

/* Individual links in sections */
.mega-menu__link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(8px);
  animation: megaMenuFadeIn 0.4s ease forwards;
}

/* Stagger link animations */
.mega-menu__section .mega-menu__link:nth-child(1) { animation-delay: 0.05s; }
.mega-menu__section .mega-menu__link:nth-child(2) { animation-delay: 0.1s; }
.mega-menu__section .mega-menu__link:nth-child(3) { animation-delay: 0.15s; }
.mega-menu__section .mega-menu__link:nth-child(4) { animation-delay: 0.2s; }
.mega-menu__section .mega-menu__link:nth-child(5) { animation-delay: 0.25s; }
.mega-menu__section .mega-menu__link:nth-child(6) { animation-delay: 0.3s; }
.mega-menu__section .mega-menu__link:nth-child(7) { animation-delay: 0.35s; }
.mega-menu__section .mega-menu__link:nth-child(8) { animation-delay: 0.4s; }
.mega-menu__section-title + .mega-menu__link { animation-delay: 0.1s; }

.mega-menu__link:hover {
  color: #666;
  transform: translateX(4px);
}

.mega-menu__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.2s ease;
}

.mega-menu__link:hover::after {
  width: 100%;
}

.mega-menu__card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mega-menu__card-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f0f0f0;
}

.mega-menu__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu__card:hover .mega-menu__card-media img {
  transform: scale(1.05);
}

.mega-menu__card-info {
  text-align: center;
}

.mega-menu__card-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--header-text);
  position: relative;
}

.mega-menu__card-title sup {
  font-size: 8px;
  opacity: 0.5;
  margin-left: 2px;
  font-weight: 400;
}

.mega-menu__promo {
  flex: 0 0 350px;
}

.mega-menu__promo-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.mega-menu__promo-media {
  position: relative;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.mega-menu__promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mega-menu__promo-link:hover .mega-menu__promo-media img {
  transform: scale(1.08);
}

.mega-menu__promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  transition: background 0.4s ease;
}

.mega-menu__promo-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  line-height: 1.1;
}

.mega-menu__promo-btn {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .mega-menu__content--visual {
    flex-direction: column;
  }
  .mega-menu__promo {
    flex: none;
    width: 100%;
  }
  .mega-menu__promo-media {
    aspect-ratio: 16/9;
  }
}

/* Transparent header styles */
.header-wrapper--transparent:not(.is-scrolled) {
  background: transparent;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #efebe0; /* Force solid background */
  z-index: 20000;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(61, 37, 0, 0.1);
}

.mobile-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--header-text);
}

.mobile-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px 20px;
}

.mobile-drawer__search {
  padding: 30px 24px 10px;
}

.mobile-drawer__search-form {
  display: flex;
  align-items: center;
  background: #f5f2e9;
  border-radius: 50px;
  padding: 5px 20px;
  border: 1px solid rgba(0,0,0,0.05);
}

.mobile-drawer__search-input {
  flex: 1;
  background: none;
  border: none;
  font-size: 14px;
  padding: 10px 0;
  color: #1a1a1a;
  font-family: inherit;
}

.mobile-drawer__search-input:focus {
  outline: none;
}

.mobile-drawer__search-submit {
  background: none;
  border: none;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


.mobile-drawer__item { 
  border-bottom: 1px solid rgba(61, 37, 0, 0.1); 
  position: relative;
}

.mobile-drawer__link {
  display: block;
  padding: 18px 50px 18px 0;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.mobile-drawer__item--special .mobile-drawer__link {
  color: #3D2500;
  font-weight: 800;
}

.mobile-drawer__toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 2;
}

.mobile-drawer__item.is-open .mobile-drawer__toggle {
  transform: rotate(180deg);
}

.mobile-drawer__submenu {
  display: none;
  padding-bottom: 20px;
}

.mobile-drawer__item.is-open .mobile-drawer__submenu { display: block; }

.mobile-drawer__sublink {
  display: block;
  padding: 12px 0 12px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.mobile-drawer__megagroup {
  padding: 20px 0 15px 15px;
  border-left: 2px solid rgba(61, 37, 0, 0.1);
  margin-bottom: 10px;
}

.mobile-drawer__megagroup:last-child {
  border-bottom: none;
}

.mobile-drawer__megatitle {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.mobile-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(61, 37, 0, 0.1);
  display: flex;
  gap: 20px;
}

.mobile-drawer__footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--header-text);
}

@media (max-width: 1024px) {
  .header__menu { gap: 15px; }
  .header__search-wrapper { width: 200px; }
}

@media (max-width: 768px) {
  /* Mobile header - flows naturally below announcement bar */
  .header-wrapper {
    position: relative !important;
    top: auto !important;
    background: var(--header-bg) !important;
    z-index: 1000;
  }

  .header {
    padding: 0 16px !important;
    height: 60px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--header-text) !important;
  }

  /* Ensure header text color on mobile for transparent header */
  .header-wrapper--transparent:not(.is-scrolled) .header {
    color: var(--header-text) !important;
  }

  /* Show hamburger menu */
  .header__mobile-trigger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: -1;
  }

  /* Hide desktop nav */
  .header__nav--left { display: none !important; }
  .header__special-btn-wrapper { display: none !important; }
  .header__search-wrapper { display: none !important; }

  /* Logo centered on mobile */
  .header__logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
  }

  .header__logo a {
    display: block !important;
  }

  /* Always show main logo on mobile (dark logo on light bg) */
  /* Must override transparent header logo switching */
  .header-wrapper--transparent:not(.is-scrolled) .header__logo-main,
  .header-wrapper--transparent .header__logo-main,
  .header-wrapper .header__logo-main,
  .header__logo-main,
  .header__logo-img.header__logo-main {
    display: block !important;
    width: 80px !important;
    height: auto !important;
  }

  .header-wrapper--transparent:not(.is-scrolled) .header__logo-secondary,
  .header-wrapper--transparent .header__logo-secondary,
  .header-wrapper .header__logo-secondary,
  .header__logo-secondary,
  .header__logo-img.header__logo-secondary {
    display: none !important;
  }

  /* Icons on mobile */
  .header__right {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .header__icons {
    display: flex;
    gap: 8px;
  }

  .header__icon {
    color: var(--header-text) !important;
    padding: 8px;
  }

  .header__icon-svg {
    width: 22px;
    height: 22px;
  }

  .mobile-only-icon {
    display: flex !important;
  }

  /* Mega menu disabled on mobile */
  .mega-menu {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-only-icon {
    display: none !important;
  }
}

/* Search Overlay Styling */
.search-overlay {
  position: fixed;
  inset: 0;
  background: #efebe0;
  z-index: 30000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: 100%;
  max-width: 600px;
  padding: 40px;
  position: relative;
}

.search-overlay__close {
  position: absolute;
  top: -20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #3D2500;
  padding: 10px;
}

.search-overlay__form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #3D2500;
  padding-bottom: 10px;
}

.search-overlay__input {
  flex: 1;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 24px;
  font-weight: 600;
  color: #3D2500;
  padding: 10px 0;
}

.search-overlay__input:focus {
  outline: none;
}

.search-overlay__submit {
  background: none;
  border: none;
  cursor: pointer;
  color: #3D2500;
  padding: 10px;
}

@media (max-width: 768px) {
  .mobile-drawer {
    display: flex !important;
  }
  .search-overlay {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .mobile-drawer, .search-overlay {
    display: none !important;
  }
}
/* END_SECTION:header */

/* START_SECTION:hero (INDEX:14) */
.hero { 
  position: relative; 
  height: 100vh; 
  height: 100dvh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden; 
  background: #0a0a0a; 
}
.hero__carousel { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; }
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s; }
.hero__slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero__media { position: absolute; inset: 0; z-index: 1; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__overlay { 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(circle at 30% 80%, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 60%); 
  z-index: 2; 
  transition: opacity 0.4s ease; 
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero__overlay {
    background: radial-gradient(circle at 50% 80%, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 70%);
  }
}
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero--zoom-enabled .hero__image { transform: scale(1.1); transition: transform 10s linear; }
.hero--zoom-enabled .hero__slide.is-active .hero__image { transform: scale(1); }
.hero__slide.is-active .hero__image { animation: heroImageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero__slide.is-active .hero__video { animation: heroImageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes heroImageReveal { 0% { opacity: 0; filter: brightness(0.3); } 100% { opacity: 1; filter: brightness(1); } }
.hero__placeholder { width: 100%; height: 100%; background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%); }
.animate-fade-up { opacity: 0; transform: translateY(30px); }
.is-active .animate-fade-up { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: var(--delay, 0s); }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
.hero__content { position: relative; z-index: 10; height: 100%; display: flex; align-items: flex-end; padding: 120px 5vw; pointer-events: none; }
.hero__text { color: #efebe0; max-width: 800px; text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 4px 40px rgba(0,0,0,0.2); pointer-events: auto; }
.hero__subtitle { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; opacity: 0.9; }
.hero__title { font-size: clamp(32px, 6vw, 56px); font-weight: 700; text-transform: uppercase; line-height: 1.05; margin-bottom: 32px; letter-spacing: -0.02em; }
.hero__buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero__button { position: relative; display: inline-flex; align-items: center; gap: 14px; padding: 18px 36px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #efebe0; border: 1px solid rgba(239, 235, 224, 0.9); background: transparent; overflow: hidden; text-decoration: none; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; }
.hero__button::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #efebe0; transform: translateX(-100%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0; }
.hero__button span { position: relative; z-index: 1; }
.hero__button:hover { color: #000; border-color: #efebe0; transform: translateY(-2px); }
.hero__button:hover::before { transform: translateX(0); }
.hero__button svg { width: 18px; height: 18px; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; z-index: 1; }
.hero__button:hover svg { transform: translateX(6px); }
.hero__button--secondary { background: rgba(0,0,0,0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* ============================================
   EID HERO BUTTON - Ramadan / Eid Theme
   ============================================ */

.eid-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #2d1f0d 0%, #3a2a1a 50%, #2d1f0d 100%);
  border: 2px solid #BFA27E;
  border-radius: 8px;
  color: #BFA27E;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow:
    0 0 20px rgba(191, 162, 126, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 0 30px rgba(191, 162, 126, 0.05);
}

/* Shimmer sweep */
.eid-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(191, 162, 126, 0.12), transparent);
  animation: eidSweep 3.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes eidSweep {
  0% { left: -50%; }
  50%, 100% { left: 110%; }
}

/* Lanterns */
.eid-btn__lantern {
  width: 24px;
  height: 42px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(191, 162, 126, 0.5));
  animation: lanternSwing 3s ease-in-out infinite;
  transform-origin: top center;
  position: relative;
  z-index: 2;
}

.eid-btn__lantern--right {
  animation-delay: 0.5s;
}

@keyframes lanternSwing {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* Crescent Moon + Star */
.eid-btn__moon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(191, 162, 126, 0.6));
  animation: moonPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes moonPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(191, 162, 126, 0.4)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 14px rgba(191, 162, 126, 0.8)); transform: scale(1.08); }
}

/* Text */
.eid-btn__text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(191, 162, 126, 0.3);
}

/* Arrow */
.eid-btn__arrow {
  width: 20px;
  height: 20px;
  stroke: #BFA27E;
  flex-shrink: 0;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 2;
}

/* Hover */
.eid-btn:hover {
  background: linear-gradient(135deg, #3d2f1e 0%, #4a3525 50%, #3d2f1e 100%);
  border-color: #BFA27E;
  transform: translateY(-3px);
  box-shadow:
    0 0 35px rgba(191, 162, 126, 0.3),
    0 8px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(191, 162, 126, 0.08);
}

.eid-btn:hover .eid-btn__arrow {
  transform: translateX(6px);
}

.eid-btn:hover .eid-btn__moon {
  filter: drop-shadow(0 0 18px rgba(191, 162, 126, 1));
}

.eid-btn:hover .eid-btn__lantern {
  filter: drop-shadow(0 0 10px rgba(191, 162, 126, 0.8));
}

.hero__dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 12px; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid #efebe0; background: transparent; padding: 0; cursor: pointer; transition: all 0.3s ease; }
.hero__dot.is-active { background: #efebe0; transform: scale(1.2); }
.hero__dot.is-active { background: #efebe0; transform: scale(1.2); }
@media (max-width: 768px) {
  .hero__content { padding: 30px 20px; }
  .hero__buttons { gap: 10px; }
  .hero__button { padding: 12px 20px; font-size: 10px; width: auto; justify-content: center; }
  .eid-btn {
    padding: 14px 22px;
    font-size: 10px;
    letter-spacing: 2px;
    gap: 10px;
  }
  .eid-btn__lantern { width: 18px; height: 32px; }
  .eid-btn__moon { width: 22px; height: 22px; }
  .eid-btn__arrow { width: 16px; height: 16px; }
  .hero__dots { bottom: 20px; }
}
/* END_SECTION:hero */

/* START_SECTION:luxe-collection (INDEX:15) */
.luxe-showcase {
  position: relative;
  padding: 120px 0;
  background: var(--bg-color);
  color: var(--text-color);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.luxe-showcase--centered { text-align: center; }

.luxe-showcase__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.luxe-showcase__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.luxe-showcase__overlay {
  position: absolute;
  inset: 0;
}

.luxe-showcase__content {
  position: relative;
  z-index: 10;
}

.luxe-showcase__subtitle {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.luxe-showcase__title {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: -0.04em;
}

.luxe-showcase__description {
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 16px;
  opacity: 0.8;
}

.luxe-showcase--split .luxe-showcase__description { margin-left: 0; }

.luxe-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin-top: 60px;
}

.luxe-product-card {
  position: relative;
  transition: transform 0.4s var(--animation-easing);
}

.luxe-product-card:hover {
  transform: translateY(-10px);
}

.luxe-product-card__media {
  position: relative;
  aspect-ratio: 1/1.2;
  overflow: hidden;
  background: #f5f5f5;
}

.luxe-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--animation-easing);
}

.luxe-product-card:hover .luxe-product-card__img {
  transform: scale(1.05);
}

.luxe-product-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.luxe-product-card:hover .luxe-product-card__hover {
  opacity: 1;
}

.luxe-product-card__view {
  background: #fff;
  color: #000;
  padding: 12px 24px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.luxe-product-card__info {
  padding-top: 20px;
}

.luxe-product-card__title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.luxe-product-card__price {
  font-size: 13px;
  opacity: 0.7;
}

.luxe-product-card__placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
}

@media (max-width: 768px) {
  .luxe-showcase { padding: 60px 0; }
  .luxe-showcase__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .luxe-showcase__title { font-size: 32px !important; }
}
/* END_SECTION:luxe-collection */

/* START_SECTION:main-contact (INDEX:18) */
/* Premium Contact Page Styles */
.contact-wrapper {
  padding: 120px 0 140px;
  background: linear-gradient(135deg, #efebe0 0%, #f5f1e8 100%);
  min-height: calc(100vh - var(--header-total-height) - var(--footer-height));
  position: relative;
  overflow: hidden;
}

/* Premium Background Elements */
.contact-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(191, 162, 126, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.6;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: linear-gradient(45deg, rgba(191, 162, 126, 0.15), rgba(0, 0, 0, 0.05));
  animation: float 20s infinite alternate;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(191, 162, 126, 0.1));
  animation: float 25s infinite alternate-reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(191, 162, 126, 0.05), transparent);
  animation: pulse 15s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 80px) scale(1.2); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Premium Header */
.contact-header {
  text-align: center;
  margin-bottom: 120px;
  position: relative;
}

.header-accent {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  margin: 0 auto 40px;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
}

.contact-title {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--color-text);
  line-height: 0.9;
  transition: transform 0.3s ease-out;
}

.contact-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

.header-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 120px;
  align-items: start;
}

/* Premium Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(191, 162, 126, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(191, 162, 126, 0.2);
}

.info-card:hover::before {
  opacity: 1;
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background: var(--color-accent);
  transform: scale(1.1);
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 12px;
}

.info-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.info-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.info-link:hover {
  color: var(--color-accent);
}

.info-link:hover::after {
  width: 100%;
}

/* Business Hours */
.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-day {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.hours-time {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 600;
}

/* Social Media Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.social-link svg {
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: scale(1.2);
}

/* Enhanced Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(191, 162, 126, 0.03), transparent);
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.form-title {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--color-text);
}

.form-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Fields are now styled via global .field-input and .field-label classes in theme.css */

/* Premium Submit Button */
.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-primary), #000);
  color: var(--color-bg);
  border: none;
  padding: 24px 48px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  width: 100%;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.contact-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.contact-submit:hover::before {
  left: 100%;
}

.contact-submit:active {
  transform: translateY(0);
}



/* Enhanced Success/Error States */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: var(--color-bg);
  border-radius: 16px;
  margin-bottom: 40px;
  animation: revealSuccess 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.success-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.success-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.success-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.form-errors {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 0, 0, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 32px;
  color: #d32f2f;
}

.error-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.error-content p {
  margin: 0 0 8px 0;
  font-weight: 600;
}

.error-content ul {
  margin: 0;
  padding-left: 20px;
}

.error-content li {
  margin-bottom: 4px;
  font-size: 14px;
}

/* Reveal Animations */
.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s var(--animation-formal);
}

.reveal.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .reveal-child:nth-child(1) { transition-delay: 0.1s; }
.reveal.is-visible .reveal-child:nth-child(2) { transition-delay: 0.2s; }
.reveal.is-visible .reveal-child:nth-child(3) { transition-delay: 0.3s; }
.reveal.is-visible .reveal-child:nth-child(4) { transition-delay: 0.4s; }
.reveal.is-visible .reveal-child:nth-child(5) { transition-delay: 0.5s; }
.reveal.is-visible .reveal-child:nth-child(6) { transition-delay: 0.6s; }

@keyframes revealSuccess {
  from { 
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    padding: 80px 0 100px;
  }
  
  .contact-container {
    padding: 0 20px;
  }
  
  .contact-header {
    margin-bottom: 60px;
  }
  
  .contact-title {
    font-size: clamp(36px, 8vw, 56px);
  }
  
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .info-card {
    padding: 24px;
    gap: 16px;
  }
  
  .info-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-details {
    gap: 12px;
  }
  
  .form-header {
    margin-bottom: 32px;
  }
  
  .form-title {
    font-size: 24px;
  }
}
/* END_SECTION:main-contact */

/* START_SECTION:main-policy (INDEX:20) */
.policy-wrapper {
  padding: 120px 0 140px;
  background: linear-gradient(135deg, #efebe0 0%, #f5f1e8 100%);
  min-height: calc(100vh - var(--header-total-height) - var(--footer-height));
  position: relative;
  overflow: hidden;
}

.policy-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(191, 162, 126, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.policy-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: linear-gradient(45deg, rgba(191, 162, 126, 0.12), rgba(0, 0, 0, 0.03));
  animation: floatPolicy 20s infinite alternate;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(191, 162, 126, 0.08));
  animation: floatPolicy 25s infinite alternate-reverse;
}

@keyframes floatPolicy {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 60px) scale(1.1); }
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.policy-header {
  text-align: center;
  margin-bottom: 100px;
}

.header-accent {
  width: 60px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.policy-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #3D2500;
  line-height: 1.1;
}

.header-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  margin: 30px auto 0;
}

.policy-content {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 32px;
  padding: 80px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.03);
}

.policy-inner {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.policy-inner h2 {
  font-size: 24px;
  font-weight: 600;
  color: #3D2500;
  margin: 48px 0 24px;
  letter-spacing: -0.01em;
}

.policy-inner h3 {
  font-size: 18px;
  font-weight: 600;
  color: #3D2500;
  margin: 32px 0 16px;
}

.policy-inner p {
  margin-bottom: 24px;
}

.policy-inner ul, .policy-inner ol {
  margin-bottom: 32px;
  padding-left: 24px;
}

.policy-inner li {
  margin-bottom: 12px;
}

.policy-inner strong {
  color: #3D2500;
  font-weight: 700;
}

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s var(--animation-formal);
}

.reveal.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .reveal-child:nth-child(2) { transition-delay: 0.2s; }
.reveal.is-visible .reveal-child:nth-child(3) { transition-delay: 0.4s; }

@media (max-width: 768px) {
  .policy-wrapper {
    padding: 80px 0 100px;
  }
  .policy-container {
    padding: 0 20px;
  }
  .policy-header {
    margin-bottom: 60px;
  }
  .policy-content {
    padding: 40px 24px;
    border-radius: 24px;
  }
}
/* END_SECTION:main-policy */

/* START_SECTION:main-support (INDEX:21) */
.support-wrapper {
  padding: 120px 0 140px;
  background: linear-gradient(135deg, #efebe0 0%, #f5f1e8 100%);
  min-height: calc(100vh - var(--header-total-height) - var(--footer-height));
  position: relative;
  overflow: hidden;
}

.support-bg-gradient {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(191, 162, 126, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.support-bg-shape {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); opacity: 0.5;
}

.shape-1 { width: 600px; height: 600px; top: -200px; right: -200px; background: rgba(191, 162, 126, 0.15); animation: floatSupport 20s infinite alternate; }
.shape-2 { width: 500px; height: 500px; bottom: -150px; left: -150px; background: rgba(0, 0, 0, 0.05); animation: floatSupport 25s infinite alternate-reverse; }

@keyframes floatSupport { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(70px, 70px) scale(1.15); } }

.support-container { max-width: 1240px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }

.support-header { text-align: center; margin-bottom: 120px; }
.header-accent { width: 80px; height: 3px; background: var(--color-accent); margin: 0 auto 40px; border-radius: 2px; }
.support-title { font-size: clamp(48px, 6vw, 84px); font-weight: 300; letter-spacing: -0.04em; margin-bottom: 24px; color: #3D2500; line-height: 1; }
.support-subtitle { font-size: 18px; color: #666; max-width: 600px; margin: 0 auto 40px; line-height: 1.6; }
.header-divider { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, var(--color-accent), transparent); margin: 0 auto; }

.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.section-title { font-size: 32px; font-weight: 300; letter-spacing: -0.02em; color: #3D2500; margin-bottom: 40px; }

.info-cards { display: grid; gap: 24px; margin-bottom: 40px; }
.info-card { 
  display: flex; gap: 20px; padding: 24px; background: rgba(255, 255, 255, 0.4); 
  backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 16px;
  transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-5px); }
.info-icon { width: 44px; height: 44px; background: #3D2500; color: #efebe0; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-details h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: #999; }
.info-details a, .info-details p { font-size: 16px; color: #3D2500; text-decoration: none; margin-bottom: 4px; display: block; font-weight: 500; }

.support-form-card { 
  padding: 40px; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px); 
  border-radius: 24px; border: 1px solid rgba(255, 255, 255, 0.8);
}
.form-title { font-size: 20px; font-weight: 600; margin-bottom: 30px; color: #3D2500; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.support-input { 
  width: 100%; padding: 14px 20px; background: rgba(255, 255, 255, 0.8); border: 1px solid #d8d4c9; 
  border-radius: 8px; font-family: inherit; margin-bottom: 20px; transition: border-color 0.3s;
}
.support-input:focus { border-color: var(--color-accent); outline: none; }
.support-submit { 
  width: 100%; padding: 18px; background: #3D2500; color: #efebe0; border: none; 
  border-radius: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; 
  cursor: pointer; transition: background 0.3s;
}
.support-submit:hover { background: #1a1a1a; }

.shipping-content { display: grid; gap: 40px; }
.shipping-item { display: flex; gap: 24px; }
.shipping-icon { width: 48px; height: 48px; background: rgba(61, 37, 0, 0.05); color: #3D2500; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.shipping-text h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: #3D2500; }
.shipping-text p { font-size: 15px; color: #666; line-height: 1.6; }

.reveal-child { opacity: 0; transform: translateY(20px); transition: all 1s var(--animation-formal); }
.reveal.is-visible .reveal-child { opacity: 1; transform: translateY(0); }
.reveal.is-visible .reveal-child:nth-child(n) { transition-delay: calc(0.1s * var(--child-index, 1)); }

@media (max-width: 1024px) {
  .support-grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 768px) {
  .support-wrapper { padding: 80px 0 100px; }
  .support-container { padding: 0 20px; }
  .support-header { margin-bottom: 60px; }
  .form-grid { grid-template-columns: 1fr; }
}
/* END_SECTION:main-support */

/* START_SECTION:page (INDEX:22) */
/* Global Page Styling */
.page-wrapper {
  padding: 60px 0 80px;
  min-height: calc(100vh - var(--header-total-height) - var(--footer-height));
  background: #efebe0;
  margin-top: 0;
}

.page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-title {
  font-size: 32px;
  font-weight: 400;
  color: #3D2500;
  margin: 0;
  letter-spacing: -0.02em;
}

.page-content {
  background: #efebe0;
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.page-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #3D2500;
  margin: 40px 0 20px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #3D2500;
  margin: 30px 0 15px;
}

.page-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.page-content ul,
.page-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.page-content li {
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.page-content a {
  color: #3D2500;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.page-content a:hover {
  opacity: 0.7;
}

.page-content strong {
  color: #3D2500;
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-wrapper {
    padding: 100px 0 60px;
  }
  
  .page-container {
    padding: 0 20px;
  }
  
  .page-content {
    padding: 40px 24px;
  }
  
  .page-title {
    font-size: 28px;
  }
}
/* END_SECTION:page */

/* START_SECTION:product-grid (INDEX:24) */
.product-grid-section {
  padding: 0;
  background: #efebe0;
}

.product-grid__title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin: 0;
  padding: 80px 40px 50px;
  color: #1a1a1a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* CTA Button Section */
.product-grid__cta {
  display: flex;
  justify-content: center;
  padding: 60px 40px 80px;
  background: #efebe0;
}

.product-grid__cta-btn {
  display: inline-block;
  padding: 16px 48px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: 2px solid currentColor;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-grid__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.placeholder-svg {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .product-grid__title { padding: 40px 20px 30px; }
  .product-grid__cta { padding: 40px 20px 60px; }
  .product-grid__cta-btn { padding: 14px 36px; font-size: 11px; }
}
/* END_SECTION:product-grid */

/* START_SECTION:product (INDEX:25) */
/* Override skeleton theme margins for product page */
/* Clear overlap and handle header background */
/* Natural Document Flow - Make Header Static on Product Page */
body.template-product .announcement-bar,
body.template-product .header-wrapper {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 10001 !important;
}

body.template-product .header-wrapper {
  background: var(--header-bg, #efebe0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
  transform: none !important; /* Prevent scroll-hide interference */
}

/* Ensure announcement bar keeps its own color */
body.template-product .announcement-bar {
  background: var(--announcement-bg, #000) !important;
  color: var(--announcement-text, #fff) !important;
  margin-bottom: 0 !important;
}

body.template-product .header,
body.template-product .header__menu-item,
body.template-product .header__logo-text,
body.template-product .header__icon-svg {
  color: var(--header-text, #3D2500) !important;
}

/* Base Product Page Layout */
body.template-product .product-page {
  display: flex;
  min-height: 80vh;
  margin: 0 auto !important;
  padding-top: 40px !important; /* Smaller padding now that it's in flow */
  padding-bottom: 120px !important;
  width: 100%;
  max-width: 100% !important;
  background: #efebe0;
  gap: 80px; 
  margin-bottom: 100px !important;
}

/* Ensure MainContent doesn't add extra gaps */
body.template-product main#MainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Sync Gallery and Info vertical start */
.product-gallery,
.product-info {
  padding-top: 0 !important; /* Managed by parent container */
}

@media (max-width: 900px) {
  .product-page { 
    flex-direction: column; 
    gap: 40px; /* Vertical gap on mobile */
  }
}

/* Gallery Side */
.product-gallery {
  flex: 1.5;
  position: relative;
  background: #efebe0;
  border-right: 1px solid rgba(0,0,0,0.05);
  padding: 0;
}

.product-gallery__image {
  background: transparent !important;
}

.product-gallery__image-wrapper::before,
.product-gallery__image-wrapper::after {
  display: none !important;
  background: transparent !important;
}

@media (max-width: 900px) {
.product-gallery {
    min-height: 80vh;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

.product-gallery__main {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 900px) {
  .product-gallery__main {
    height: 80vh;
  position: relative;
  }
}

.product-gallery__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efebe0;
}

.product-gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: transparent;
}

.product-gallery__image.is-active {
  opacity: 1;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  height: 100%;
}

/* Video slides */
.product-gallery__slide--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efebe0;
}

.product-gallery__slide--video.is-active {
  opacity: 1;
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: 100%;
}

.product-gallery__slide--video video,
.product-gallery__slide--video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.gallery-arrow {
  background: #efebe0;
  border: 1px solid rgba(0,0,0,0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: auto;
}

.product-gallery:hover .gallery-arrow {
  opacity: 0.8;
}

.gallery-arrow:hover { opacity: 1 !important; transform: scale(1.1); }

.product-gallery__indicator {
  position: absolute;
  bottom: 40px;
  left: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1a1a1a;
}

@media (max-width: 900px) {
  .product-gallery__indicator {
    display: none;
  }
}

.product-gallery__thumbnails {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.gallery-thumbnail {
  width: 50px;
  height: 60px;
  border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  background: #efebe0;
  padding: 2px;
  overflow: hidden;
}

.gallery-thumbnail.is-active {
  border-color: #000;
  transform: translateY(-4px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Status Info */
.product-status-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
}

.status-indicator.available { background: #000; }
.status-indicator.available::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 1px solid #000;
  animation: pulse 2s infinite;
}

.status-indicator.out-of-stock { background: #ff0000; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.status-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
}

/* Info Side */
.product-info {
  flex: 1;
  padding: 0 8% 80px 0; /* Removed top padding to sync with gallery */
  background: #efebe0;
  border-left: none; /* Removed border for a cleaner, open look */
}

@media (max-width: 900px) {
  .product-info { padding: 30px 20px 60px; border-left: none; }
  .product-title { font-size: 24px; margin-bottom: 8px; }
  .product-price { font-size: 20px; }
  .product-price--compare { font-size: 14px; }
  .product-price--badge { font-size: 9px; padding: 3px 7px; }
  .product-price-wrapper { gap: 8px; }
}

.product-info__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.product-title {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.2;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  flex: 1;
}

.product-price-wrapper {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.product-price {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

/* Sold Out Refinement */
.product-page.is-sold-out .product-gallery {
  pointer-events: none;
  filter: grayscale(100%);
}

.product-page.is-sold-out .status-indicator.out-of-stock {
  background: #ff0000;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.product-page.is-sold-out .status-text {
  color: #ff0000;
}

.sold-out-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 20px 24px;
  border: 2px solid #c0392b;
  background: #fff5f5;
  margin: 8px 0 16px;
}

.sold-out-banner__text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #c0392b;
}

.sold-out-banner__sub {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


.product-price--compare {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  text-decoration-color: #c00;
}

.product-price--sale {
  color: #c00 !important;
  font-weight: 600;
}

.product-price--badge {
  display: inline-block;
  background: #c00;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.5px;
  vertical-align: middle;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Variant Groups */
.product-variant-group {
  margin-bottom: 40px;
}

.variant-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #000;
  letter-spacing: 1.5px;
}

.selected-value { color: #888; font-weight: 400; }

/* Color Image Swatches */
.color-image-swatches {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #efebe0;
  width: fit-content;
  border: 1px solid #d8d4c9;
  border-radius: 4px;
}

.color-image-label {
  position: relative;
}

.color-image-box {
  width: 50px;
  height: 65px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: #efebe0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 4px;
  position: relative;
}

.color-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.color-image-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.color-image-box:hover img {
  transform: scale(1.1);
}

input:checked + .color-image-box {
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}

/* Color Tooltip */
.color-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #000;
  color: #fff;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.color-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #000;
}

.color-image-box:hover .color-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-12px);
}

.color-name {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: #f0f0f0;
  color: #333;
}

/* Size Slider Grid */
.size-guide-pill {
  background: #e0e0e0;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.size-guide-pill:hover {
  background: #d0d0d0;
}

.size-slider-grid {
  display: flex;
  flex-wrap: wrap; /* Prevent cramping on small screens */
  width: 100%;
  background: transparent;
  padding: 10px 15px;
  border: 1px solid #d8d4c9;
  border-radius: 2px;
  margin: 10px 0 25px 0;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .size-slider-grid {
    gap: 15px;
    padding: 8px 10px;
  }
}

.size-slider-item {
  flex: 1 1 auto;
  min-width: 40px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .size-slider-item {
    min-width: 36px;
  }
}

.size-slider-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-slider-text {
  display: inline-block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
}

/* The Underline */
.size-slider-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Selected State - Show Underline */
.size-radio:checked + .size-slider-box .size-slider-text::after {
  transform: scaleX(1);
}

.size-radio:checked + .size-slider-box .size-slider-text {
  color: #000;
  font-weight: 800;
}

/* Hover effect */
.size-slider-item:hover:not(.is-unavailable) .size-slider-text::after {
  transform: scaleX(1);
  opacity: 0.5; /* Subtle underline on hover */
}

.size-radio:checked + .size-slider-box .size-slider-text::after {
  opacity: 1 !important; /* Full underline on select */
}

.size-slider-item.is-unavailable .size-slider-text {
  color: #ccc;
  text-decoration: line-through;
}

.color-image-label.is-unavailable .color-image-box {
  opacity: 0.4;
  position: relative;
}

.color-image-label.is-unavailable .color-image-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
  transform: rotate(-45deg);
}

/* Low Stock Warning */
.low-stock-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff3e0;
  border: 1px solid #ffcc80;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #e65100;
}

.low-stock-warning svg {
  flex-shrink: 0;
  color: #e65100;
}

/* Quantity Selector */
.product-quantity-wrapper {
  margin-bottom: 20px;
}

.quantity-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.product-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
}

.product-quantity .qty-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  color: #1a1a1a;
}

.product-quantity .qty-btn:hover {
  background: #f5f5f5;
}

.product-quantity .qty-input {
  width: 60px;
  height: 48px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 16px;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.product-quantity .qty-input::-webkit-outer-spin-button,
.product-quantity .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Accordions */
.product-info__accordions {
  margin-top: 40px;
  border-top: 1px solid #f0f0f0;
}

.accordion-item {
  border-bottom: 1px solid #f0f0f0;
}

.accordion-item summary {
  padding: 24px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accordion-icon {
  font-size: 20px;
  font-weight: 300;
  color: #999;
  transition: transform 0.3s;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding-bottom: 30px;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

/* Add to Cart Button */
.add-to-cart-btn {
  display: none; /* Hidden by default until selection */
  width: 100%;
  background: #1a1a1a;
  color: #efebe0;
  border: none;
  padding: 18px 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #333;
}

.add-to-cart-btn:disabled {
  background: #ccc;
  color: #888;
  cursor: not-allowed;
}

/* Recommendations */
.product-recommendations {
  margin-top: 100px;
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  background: #efebe0;
}

.product-recommendations .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a1a1a;
}

/* Standardize product grid for recommendations */
.product-recommendations .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 1024px) {
  .product-recommendations .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-recommendations .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Size Specs Display Box */
.size-specs-display {
  margin-top: 30px;
  padding: 0;
  background: #1a1a1a;
  color: #efebe0;
  border-radius: 4px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  visibility: visible;
  border: 1px solid rgba(239, 235, 224, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 50;
  width: 100%;
  box-sizing: border-box;
}

.size-specs-display.is-hovering {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  background: #222;
  border-color: #efebe0;
}

.specs-placeholder {
  font-size: 10px;
  color: rgba(239, 235, 224, 0.4);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.size-specs-display.has-content {
  padding: 25px;
  min-height: 100px;
  height: auto;
  opacity: 1;
  visibility: visible;
  flex-direction: column;
}


.specs-current-size {
  font-size: 11px;
  font-weight: 700;
  color: #efebe0;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(239, 235, 224, 0.15);
}

.specs-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-evenly;
  gap: 15px;
}

@media (max-width: 600px) {
  .specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.spec-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(239, 235, 224, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  font-size: 18px;
  font-weight: 700;
  color: #efebe0;
}

/* Size Guide Table */
.size-chart-table-wrapper {
  overflow-x: auto;
  margin-top: 10px;
}

.size-chart-automatic {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  text-align: left;
  min-width: 320px;
}

.size-guide-table th {
  padding: 12px 10px;
  border-bottom: 2px solid #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  white-space: nowrap;
}

.size-guide-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  color: #444;
  white-space: nowrap;
}

.size-guide-table tr:hover td {
  background: #fafafa;
}

.size-guide-table strong {
  color: #000;
}

@media (max-width: 600px) {
  .size-guide-table {
    font-size: 11px;
  }
  .size-guide-table th,
  .size-guide-table td {
    padding: 10px 8px;
  }
}

/* Custom Select Styling */
.standard-variant-selector {
  position: relative;
  width: 100%;
}

.variant-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #d8d4c9;
  border-radius: 2px;
  padding: 14px 40px 14px 16px;
  width: 100%;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22black%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6%209l6%206%206-6%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  transition: all 0.2s ease;
}

.variant-select:hover {
  border-color: #000;
}

.variant-select:focus {
  outline: none;
  border-color: #000;
  background-color: #fff;
}
/* END_SECTION:product */

/* START_SECTION:search (INDEX:26) */
.search-page {
  padding: 60px 0 80px;
  min-height: calc(100vh - var(--header-total-height) - var(--footer-height));
  background: #efebe0;
}

.search-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.search-page__title {
  font-size: 32px;
  font-weight: 400;
  color: #3D2500;
  margin: 0 0 40px;
  letter-spacing: -0.02em;
  text-align: center;
}

.search-page__form {
  margin-bottom: 60px;
}

.search-page__input-wrapper {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s ease;
}

.search-page__input-wrapper:focus-within {
  border-color: #3D2500;
}

.search-page__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 24px;
  font-size: 14px;
  font-family: inherit;
  color: #1a1a1a;
  background: transparent;
}

.search-page__input::placeholder {
  color: #999;
}

.search-page__submit {
  padding: 14px 20px;
  background: #3D2500;
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.search-page__submit:hover {
  background: #2a1a00;
}

.search-page__results-count {
  font-size: 14px;
  color: #666;
  margin: 0 0 30px;
  text-align: center;
}

.search-page__empty {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 4px;
}

.search-page__empty-message {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px;
}

.search-page__button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #3D2500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.search-page__button:hover {
  background: #2a1a00;
  transform: translateY(-2px);
}

.search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.search-result {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-result__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.search-result__image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.search-result__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.search-result:hover .search-result__image {
  transform: scale(1.05);
}

.search-result__content {
  padding: 20px;
}

.search-result__title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-result__price {
  font-size: 15px;
  font-weight: 600;
  color: #3D2500;
  margin: 0 0 8px;
}

.search-result__excerpt {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.search-pagination {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .search-page__container {
    padding: 0 20px;
  }
  
  .search-results {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* END_SECTION:search */

/* START_SECTION:special-collection (INDEX:27) */
.special-collection {
  background: #efebe0;
  min-height: 100vh;
}

/* Hero Section */
.special-collection__hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 40px 80px;
}

.special-collection__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.special-collection__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.special-collection__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.special-collection__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #6B4423;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid #6B4423;
  border-radius: 50px;
}

.special-collection__title {
  font-family: 'Times New Roman', serif;
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.special-collection__description {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
}

.special-collection__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
}

.special-collection__divider {
  opacity: 0.5;
}

/* Product Grid */
.special-collection__grid-wrapper {
  padding: 60px 40px 100px;
}

.special-collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Featured first item - larger */
.special-collection__product-item.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.special-collection__product-item.is-featured .product-card__media {
  height: 100%;
}

/* Decorative Elements */
.special-collection__grid::before {
  content: '✦';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #3D2500;
  opacity: 0.4;
}

/* CTA Section */
.special-collection__cta {
  text-align: center;
  padding: 0 40px 100px;
}

.special-collection__cta-btn {
  display: inline-block;
  padding: 18px 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-decoration: none;
  background: #3D2500;
  color: #fff;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.special-collection__cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: ctaShimmer 3s infinite;
}

@keyframes ctaShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.special-collection__cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(61, 37, 0, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
  .special-collection__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .special-collection__product-item.is-featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .special-collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .special-collection__product-item.is-featured {
    grid-column: span 2;
  }
  
  .special-collection__hero {
    min-height: 50vh;
    padding: 140px 20px 60px;
  }
}

@media (max-width: 600px) {
  .special-collection__hero {
    padding: 120px 20px 40px;
  }
  
  .special-collection__grid-wrapper {
    padding: 40px 20px 60px;
  }
  
  .special-collection__label {
    font-size: 9px;
    letter-spacing: 2px;
  }
  
  .special-collection__meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .special-collection__divider {
    display: none;
  }
}
/* END_SECTION:special-collection */

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