/** Shopify CDN: Minification failed

Line 52:0 All "@import" rules must come first

**/
/* ============================================
   AMAYA - Product Page Custom Styles
   Represent Clo Inspired Design
   ============================================ */

/* ========== CSS Variables ========== */
:root {
  /* Colors - Luxury Palette */
  --color-bg-primary: #F6F6F6;
  --color-bg-secondary: #FFFFFF;
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #6B6B6B;
  --color-border: #E0E0E0;
  --color-cta: #000000;
  --color-cta-hover: #2A2A2A;
  --color-cta-text: #FFFFFF;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing System */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 80px;

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.6s ease-in-out;
}

/* ========== Base Typography ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700;
}

/* ========== Product Page Layout ========== */
.product-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* ========== Carousel Gallery ========== */
.product-gallery-carousel {
  position: relative;
  width: 100%;
  margin-left: 0;
  padding-left: 0;
}

.carousel-container {
  position: sticky;
  top: 0;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  border-radius: 0;
  background-color: var(--color-bg-secondary);
  z-index: 1;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: zoom-in;
  transition: transform var(--transition-medium);
}

.carousel-slide img:hover {
  transform: scale(1.02);
}

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
  opacity: 0;
  color: var(--color-text-primary);
}

.carousel-container:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav:hover {
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-nav:active {
  transform: translateY(-50%) scale(1);
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Carousel Dot Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(0, 0, 0, 0.5);
}

.carousel-dot.active {
  background: rgba(0, 0, 0, 0.8);
  width: 28px;
  border-radius: 4px;
}

/* ========== Product Info Sidebar ==========  */
.product-info-sticky {
  position: sticky;
  top: 40px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding: 80px 220px 40px 220px;
  display: flex;
  flex-direction: column;
}

/* Custom scrollbar for sidebar */
.product-info-sticky::-webkit-scrollbar {
  width: 4px;
}

.product-info-sticky::-webkit-scrollbar-track {
  background: transparent;
}

.product-info-sticky::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 2px;
}

.product-info-sticky::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-secondary);
}

.product-info-inner {
  animation: fadeInUp 0.8s ease forwards;
}

/* Product Header */
.product-header {
  margin-bottom: var(--spacing-xl);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.3;
  color: var(--color-text-primary);
  flex: 1;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.price {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.price-compare {
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

/* ========== Product Form ========== */
.product-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* Product Options */
.product-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.option-label {
  font-weight: var(--font-weight-semibold) !important;
}

.selected-fabric-name {
  margin-left: 6px;
  font-weight: var(--font-weight-regular);
}

.product-option {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.option-label {
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* Size Selector Grid - Connected Rectangle */
.size-selector-grid {
  display: flex;
  border: 0.5px solid var(--color-text-primary);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.size-option {
  flex: 1;
  height: 78px;
  padding: 0;
  border: none;
  background: #ffffff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  color: var(--color-text-primary);
  position: relative;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.size-option.text-small {
  font-size: 10px !important;
}

.size-option:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 0.5px;
  background: var(--color-text-primary);
}

.size-option.available:hover {
  background: #fafafa;
}

.size-option.selected {
  background: #f9f9f9;
  color: var(--color-text-primary);
}

.size-option.sold-out {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  background: #ffffff;
}

/* Fabric/Color Swatch Grid - Matches Size Selector */
.fabric-swatch-grid {
  display: flex;
  gap: 8px;
}

.fabric-swatch {
  flex: 0 0 auto;
  width: 81px;
  height: 78px;
  padding: 0;
  border: none;
  background: #ffffff;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  color: var(--color-text-primary);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swatch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0.5px solid var(--color-text-primary);
  border-radius: var(--radius-sm);
}

.swatch-text {
  font-size: 12px;
  display: block;
}


.fabric-swatch.available:hover {
  background: #fafafa;
}

.fabric-swatch.selected {
  background: #f9f9f9;
  color: var(--color-text-primary);
}

.fabric-swatch.sold-out {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  background: #ffffff;
}

/* Size Guide Link */
.size-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 0;
  text-decoration: underline;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: color var(--transition-fast);
  white-space: nowrap;
  /* Prevent breaking */
}

.size-guide-link:hover {
  color: var(--color-text-primary);
}

.size-option.sold-out {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}


.size-option.sold-out:hover {
  transform: none;
  box-shadow: none;
}

/* Hidden Elements */
.hidden {
  display: none !important;
}

/* Quantity Selector */
.quantity-wrapper {
  display: none !important;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.quantity-label {
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  width: fit-content;
  background: var(--color-bg-secondary);
}

.quantity-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: var(--color-bg-primary);
}

.quantity-input {
  width: 60px;
  height: 44px;
  border: none;
  border-left: 1.5px solid var(--color-border);
  border-right: 1.5px solid var(--color-border);
  text-align: center;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-primary);
  background: transparent;
  color: var(--color-text-primary);
}

.quantity-input:focus {
  outline: none;
}

/* Remove number input spinners */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

/* ========== Add to Cart Button ========== */
.btn-add-to-cart {
  width: 100%;
  padding: 20px 32px;
  background: var(--color-cta);
  color: var(--color-cta-text);
  border: none;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: none !important;
  border-radius: var(--radius-sm);
  position: relative;
  font-family: var(--font-primary);
}

.btn-add-to-cart:hover:not(:disabled) {
  background: var(--color-cta);
  transform: none !important;
  box-shadow: none !important;
}

.btn-add-to-cart:active:not(:disabled) {
  background: var(--color-cta);
  transform: none !important;
  box-shadow: none !important;
}

.btn-add-to-cart:disabled {
  background: var(--color-border);
  color: var(--color-text-secondary);
  cursor: not-allowed;
}

.btn-loading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.spinner {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ========== Buy Now Button ========== */
.btn-buy-now {
  width: 100%;
  padding: 20px 32px !important;
  background: var(--color-cta) !important;
  background-color: var(--color-cta) !important;
  color: var(--color-cta-text) !important;
  border: none !important;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease !important;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  margin-top: 0;
  position: relative;
}

.btn-buy-now:hover {
  background: var(--color-cta) !important;
  background-color: var(--color-cta) !important;
  color: var(--color-cta-text) !important;
  border: none !important;
  transform: none !important;
  box-shadow: none !important;
  opacity: 0.95 !important;
}

/* Remove product media hover zoom - AGGRESSIVE OVERRIDES */
.product-carousel img,
.carousel img,
.product-carousel picture,
.carousel picture,
.product-carousel,
.carousel,
[class*="product-media"] img,
[class*="product-image"] img,
[class*="carousel"] img,
img[class*="product"],
img[class*="media"] {
  transition: none !important;
  transform: none !important;
  animation: none !important;
}

.product-carousel img:hover,
.carousel img:hover,
.product-carousel picture:hover,
.carousel picture:hover,
.product-carousel:hover img,
.carousel:hover img,
[class*="product-media"] img:hover,
[class*="product-image"] img:hover,
[class*="carousel"] img:hover,
img[class*="product"]:hover,
img[class*="media"]:hover {
  transform: none !important;
  scale: 1 !important;
  opacity: 1 !important;
  filter: none !important;
}

/* ========== Accordion Details ========== */
.product-accordions {
  border: none;
  margin-top: var(--spacing-lg);
}

.accordion-item {
  border: none;
  transition: all var(--transition-medium);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  user-select: none;
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

.accordion-header:hover {
  color: var(--color-text-secondary);
}

/* Ultra-smooth icon animation */
.accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: var(--font-weight-light);
  line-height: 1;
  width: 20px;
  height: 20px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
  flex-shrink: 0;
}


.accordion-item.active .accordion-icon {
  transform: rotate(135deg) scale(1) !important;
  font-size: 20px !important;
}

/* Premium content animation */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 800px;
  opacity: 1;
  padding: var(--spacing-sm) 0 var(--spacing-lg) 0;
}

.accordion-content p {
  margin: 0 0 var(--spacing-sm) 0;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* Size Guide Modal */
.size-guide-modal {
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  width: 50%;
  background: var(--color-bg-secondary);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  padding: 60px 80px;
}

.size-guide-modal.active {
  opacity: 1;
  visibility: visible;
}

.size-guide-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.size-guide-close:hover {
  transform: scale(1.1);
}

.size-guide-content h2 {
  font-size: 24px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
  letter-spacing: -0.01em;
}

.size-guide-content p {
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
}

/* Buy Now Button */
.btn-buy-now {
  width: 100%;
  padding: 20px 32px;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-text-primary);
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  margin-top: 0;
}

.btn-buy-now:hover:not(:disabled) {
  background: var(--color-text-primary);
  color: var(--color-bg-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.btn-buy-now:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-buy-now:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Benefits Block */
.benefits-block {
  margin-top: 16px;
  padding: 12px 14px;
  border: none;
  border-radius: var(--radius-sm);
  background: #ececec;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 11px;
  color: var(--color-text-primary);
  letter-spacing: 0.03em;
}

.benefit-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-text {
  flex: 1;
  line-height: 1.3;
}

/* ========== Image Lightbox ========== */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.image-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.lightbox-image {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  padding: 8px 20px;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Responsive Design ========== */

/* Tablet */
@media (max-width: 1024px) {
  .product-page-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 32px 40px 32px 0;
    margin: 0;
  }

  .product-title {
    font-size: 30px;
  }

  .price {
    font-size: 22px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-page-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .carousel-container {
    max-height: 75vh;
    height: 75vh;
  }

  .carousel-slides {
    height: 75vh;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    opacity: 1;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }

  .carousel-indicators {
    bottom: 12px;
  }

  .carousel-indicator {
    width: 6px;
    height: 6px;
  }

  .product-info-sticky {
    position: relative;
    top: 0;
    max-height: none;
    overflow-y: visible;
    padding: 24px 20px;
  }

  .product-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }

  .product-title {
    font-size: 18px;
  }

  .price {
    font-size: 18px;
  }

  .product-options {
    gap: 16px;
  }

  .option-label {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .size-selector-grid {
    display: flex;
  }

  .size-option {
    font-size: 12px;
    padding: 12px 0;
  }

  .size-guide-link {
    font-size: 11px;
    margin-top: 6px;
  }

  .quantity-wrapper {
    margin-bottom: 16px;
  }

  .quantity-label {
    font-size: 11px;
  }

  .quantity-selector {
    max-width: 140px;
  }

  .quantity-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .quantity-input {
    font-size: 14px;
  }

  .btn-add-to-cart {
    padding: 16px 24px;
    font-size: 13px;
  }

  .btn-buy-now {
    padding: 16px 24px;
    font-size: 13px;
  }

  .benefits-block {
    margin-top: 12px;
    padding: 10px 12px;
  }

  .benefit-item {
    padding: 5px 0;
    font-size: 10px;
  }

  .benefit-icon {
    width: 14px;
    height: 14px;
  }

  .product-accordions {
    margin-top: 20px;
  }

  .accordion-header {
    padding: 10px 0;
    font-size: 12px;
  }

  .accordion-icon {
    font-size: 18px;
  }

  .accordion-content {
    font-size: 13px;
    line-height: 1.6;
  }

  .size-guide-modal {
    width: 100%;
    top: 60px;
    padding: 40px 20px;
  }

  .size-guide-close {
    display: flex;
  }

  .size-guide-content h2 {
    font-size: 20px;
  }

  .size-guide-content p {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-page-wrapper {
    padding: 0;
  }

  .carousel-container {
    max-height: 75vh;
    height: 75vh;
  }

  .carousel-slides {
    height: 75vh;
  }

  .product-title {
    font-size: 22px;
  }

  .price {
    font-size: 18px;
  }

  .size-selector-grid {
    gap: 8px;
  }

  .size-option {
    padding: 12px 0;
    font-size: 13px;
  }

  /* Close the nested .product-page-wrapper if it was intended to wrap everything, but since we removed the double opening, we assume the indent implies scope. However, to be safe and fix the file structure, we just add the missing brace for the @media query here */
}


/* Responsive Padding Overrides */
@media screen and (max-width: 1400px) {
  .product-info-sticky {
    padding: 60px 100px 40px 100px;
  }
}

@media screen and (max-width: 1024px) {
  .product-info-sticky {
    padding: 40px 40px;
    height: auto;
    position: relative;
    top: 0;
    max-height: none;
    overflow-y: visible;
  }

  .product-title {
    font-size: 24px;
  }

  .price {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .product-page-wrapper {
    display: block;
    /* Stack vertically */
  }

  .carousel-container {
    position: relative;
    top: 0;
    height: 75vh;
    /* Reasonable height for mobile slider */
    max-height: 75vh;
    z-index: 1;
  }

  .product-info-sticky {
    padding: 30px 20px;
  }

  .btn-add-to-cart,
  .btn-buy-now {
    padding: 16px 20px !important;
  }
}



/* Option Reordering */
.product-option {
  order: 10;
  /* Default order */
}

.product-option.option-fabric,
.product-option.option-color,
.product-option.option-colour {
  order: 1;
  /* Fabric/Color first */
}

.product-option.option-size {
  order: 2;
}

/* ========== INTERACTIVE TRANSPARENT HEADER ========== */
/* Base Header Style - Transparent by Default */
.header-wrapper,
.site-header,
header.header,
#shopify-section-header,
.shopify-section-header-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
  z-index: 1000 !important;
  border-bottom: none !important;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* Force transparent background on inner elements if needed */
.header-wrapper .header,
.site-header .header {
  background: transparent !important;
}

/* Text Colors on Transparent (Black text for visibility on light bg) */
.header-wrapper:not(:hover):not(.scrolled) .header__menu-item,
.header-wrapper:not(:hover):not(.scrolled) .header__active-menu-item,
.header-wrapper:not(:hover):not(.scrolled) .header__icon,
.header-wrapper:not(:hover):not(.scrolled) a,
.site-header:not(:hover):not(.scrolled) a,
.site-header:not(:hover):not(.scrolled) .site-nav__link {
  color: #000000 !important;
}

/* SVG Icons color (adjust if emojis/images are used) */
.header-wrapper:not(:hover):not(.scrolled) .header__icon svg,
.site-header:not(:hover):not(.scrolled) .icon svg {
  fill: #000000 !important;
  stroke: #000000 !important;
}


/* Hover State - Opaque White */
.header-wrapper:hover,
.site-header:hover,
header.header:hover,
#shopify-section-header:hover {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Scrolled State - Opaque White */
.header-wrapper.scrolled,
.site-header.scrolled,
header.header.scrolled,
#shopify-section-header.scrolled {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Mobile Enhancements */
@media screen and (max-width: 768px) {

  /* Remove Hamburger Menu Icon */
  .header__icon--menu,
  .mobile-menu-trigger,
  button[name="menu"],
  .header__menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Ensure header remains transparent/interactive on mobile */
  .header-wrapper,
  .site-header {
    background: transparent !important;
  }

  .header-wrapper.scrolled,
  .site-header.scrolled {
    background: #FFFFFF !important;
  }
}