/** Shopify CDN: Minification failed

Line 811:0 Unexpected "@media"

**/
.product-detail-section {
  padding: 60px 0;
  background: #fff;
  font-family: var(--font-body-family);
}
.product-detail-container-outer {
  max-width:  var(--page-width);
  margin: 0 auto;
  padding: 0 50px;
}
.product-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  
  
}

/* Left Column - Product Gallery */
.product-gallery {
  position: relative;
  max-width: 635px;
  touch-action: pan-y pinch-zoom;
  overflow: hidden;
}

.product-gallery-inner {
  position: relative;
}

.product-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--media-radius);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  border-radius: var(--media-radius);
  transition: transform 0.3s ease;
}

.product-main-image:hover img {
  transform: scale(1.02);
}

.gallery-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-nav-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav-button:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav-button.prev {
  left: 15px;
}

.gallery-nav-button.next {
  right: 15px;
}

.gallery-nav-button svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

.gallery-nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.thumbnail-item {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  border: 2px solid #ddd;
  border-radius: var(--media-radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.thumbnail-item:hover {
  
  transform: scale(1.05);
}

.thumbnail-item.active {
 
  box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
}

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

/* Right Column - Product Info */
.product-info {
  background: #1a1a1a;
  padding: 40px;
  color: #fff;
  border-radius: var(--media-radius);
  position: relative;
}

.product-title {
  font-family: var(--font-heading-family);
  font-size: 36px;
  font-weight: var(--font-heading-weight);
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.product-subtitle {
  font-style: italic;
  font-size: 18px;
  color: #ccc;
  margin: 0 0 25px;
  font-family: var(--font-subheading-family);
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.price-original {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  font-weight: var(--font-body-weight);
}

.price-current {
  font-size: 24px;
  font-weight: var(--font-body-weight-bold);
  color: #fff;
}

.savings-badge {
  background: #f5c242;
  color: #000;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: var(--font-body-weight-bold);
  text-transform: uppercase;
  border-radius: var(--badge-corner-radius);
  letter-spacing: 0.5px;
}

.size-selection {
  margin-bottom: 20px;
}

.size-label-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.size-label {
  font-size: 16px;
  font-weight: var(--font-body-weight-bold);
  color: #fff;
}

.size-guide-link {
  color: #ccc;
  text-decoration: underline;
  font-size: 14px;
  transition: color 0.3s ease;
}

.size-guide-link:hover {
  color: #f5c242;
}

.size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mobile size dropdown - hidden by default */
.size-dropdown {
  display: none;
  width: 100%;
  background: transparent;
  border: 1px solid #666;
  color: #fff;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: var(--buttons-radius);
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
  cursor: pointer;
  transition: all 0.3s ease;
}

 

.size-dropdown option {
  background: #1a1a1a;
  color: #fff;
  padding: 10px;
}

.size-option {
  background: transparent;
  border: 1px solid #666;
  color: #fff;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  border-radius: var(--buttons-radius);
  font-family: var(--font-body-family);
  font-weight: var(--font-body-weight);
  min-width: 60px;
  text-align: center;
}

.size-option:hover:not(:disabled) {
  border-color: #f5c242;
  transform: translateY(-2px);
}

.size-option.selected {
  background: #f5c242;
  border-color: #f5c242;
  color: #000;
}

.size-option:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #333;
}

.stock-status {
  color: #f5c242;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  font-weight: var(--font-body-weight-bold);
}

/* Quantity Selector */
.quantity-selector-wrapper {
  margin-bottom: 20px;
}

.quantity-selector-wrapper label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: var(--font-body-weight-bold);
  color: #fff;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #666;
  border-radius: var(--buttons-radius);
  background: transparent;
  width: fit-content;
}

.quantity-button {
  background: transparent;
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.quantity-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.quantity-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.quantity-input {
  background: transparent;
  border: none;
  color: #fff;
  width: 60px;
  text-align: center;
  font-size: 16px;
  font-family: var(--font-body-family);
  padding: 0;
  border-left: 1px solid #666;
  border-right: 1px solid #666;
  height: 40px;
}

.quantity-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

/* Form Errors */
.form-errors {
  color: #ff6b6b;
  font-size: 14px;
  margin-bottom: 15px;
  padding: 10px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: var(--buttons-radius);
  border: 1px solid rgba(255, 107, 107, 0.3);
  display: none;
}

.form-errors:not(:empty) {
  display: block;
}

.add-to-cart-button {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  width: 100%;
  cursor: pointer;
  font-size: 18px;
  font-weight: var(--font-body-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: var(--buttons-radius);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body-family);
  box-shadow: var(--buttons-shadow-horizontal-offset) var(--buttons-shadow-vertical-offset) var(--buttons-shadow-blur-radius) rgba(0, 0, 0, var(--buttons-shadow-opacity));
}

.add-to-cart-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.add-to-cart-button:hover::before {
  left: 100%;
}

.add-to-cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.add-to-cart-button:active {
  transform: translateY(0);
}

.add-to-cart-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.add-to-cart-button:disabled:hover {
  transform: none;
  box-shadow: var(--buttons-shadow-horizontal-offset) var(--buttons-shadow-vertical-offset) var(--buttons-shadow-blur-radius) rgba(0, 0, 0, var(--buttons-shadow-opacity));
}

.cart-button-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.product-description {
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.description-heading {
  font-family: var(--font-heading-family);
  font-size: 20px;
  font-weight: var(--font-heading-weight);
  color: #fff;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.description-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 15px;
}

.description-text p {
  margin: 0 0 15px;
}

.description-text p:last-child {
  margin-bottom: 0;
}

.read-more-link {
  color: #f5c242;
  text-decoration: underline;
  font-size: 14px;
  font-weight: var(--font-body-weight-bold);
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #fff;
}

/* Loading States - Scoped to individual sections */
.product-detail-section.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-detail-section.loading .add-to-cart-button {
  position: relative;
}

.product-detail-section.loading .add-to-cart-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

  /* Success and Error States - Scoped to individual sections */
  .product-detail-section .add-to-cart-button.success {
    background-color: #3A3340!important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  }
  
  .product-detail-section .add-to-cart-button.error {
  background-color: #dc3545 !important;
  animation: shake 0.5s ease-in-out;
}

.product-detail-section .add-to-cart-button.sold-out {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #6c757d !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Design */
@media screen and (max-width: 990px) {
  .product-detail-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-info {
    padding: 30px;
  }

  .product-title {
    font-size: 28px;
  }

  .size-options {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 749px) {
  .product-detail-section {
    padding: 40px 0;
  }
  .product-detail-container-outer {
    padding: 0 22px;
  }
  .product-detail-container {
    gap: 30px;
    
  }

  /* Add subtle swipe hint for mobile users */
  .product-main-image::after {
    content: 'Swipe to view more';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .product-main-image:hover::after {
    opacity: 1;
  }

  .product-title {
    font-size: 24px;
  }

  .product-subtitle {
    font-size: 16px;
  }

  .product-info {
    padding: 0px;
  }

  .gallery-nav-button {
    width: 35px;
    height: 35px;
  }

  .gallery-nav-button.prev {
    left: 10px;
  }

  .gallery-nav-button.next {
    right: 10px;
  }

  .gallery-nav-button svg {
    width: 18px;
    height: 18px;
  }

  .product-thumbnails {
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
    position: unset;
  }

  .thumbnail-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .thumbnail-item.active {
    background: #FFFFFF;
    box-shadow: none;
  }

  .thumbnail-item:hover {
    transform: scale(1.2);
  }

  .thumbnail-item img {
    display: none;
  }

  .size-options {
    display: none;
  }

  .size-dropdown {
    display: block;
  }

  .add-to-cart-button {
    padding: 12px 20px;
    font-size: 16px;
  }

  .cart-icon {
    width: 18px;
    height: 18px;
  }

  .product-pricing {
    flex-wrap: wrap;
    gap: 10px;
  }

  .price-current {
    font-size: 20px;
  }

  .price-original {
    font-size: 16px;
  }

  .savings-badge {
    font-size: 12px;
    padding: 4px 8px;
  }

  .description-heading {
    font-size: 18px;
  }

  .description-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .product-detail-container-outer {
    padding: 0 22px;
  }

  .product-info {
    padding: 0px;
  }

  .product-title {
    font-size: 20px;
  }

  .size-options {
    display: none;
  }

  .size-dropdown {
    display: block;
    font-size: 14px;
  }

  .add-to-cart-button {
    font-size: 14px;
    padding: 10px 15px;
  }

  .gallery-nav-button {
    width: 30px;
    height: 30px;
  }

  .gallery-nav-button svg {
    width: 16px;
    height: 16px;
  }

  .thumbnail-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
  }

  .thumbnail-item.active {
    background: #FFFFFF;
  }

  .thumbnail-item:hover {
    transform: scale(1.2);
  }

  .thumbnail-item img {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .gallery-nav-button,
  .thumbnail-item,
  .size-option,
  .add-to-cart-button,
  .quantity-button {
    transition: none;
  }

  .product-main-image img {
    transition: none;
  }

  .add-to-cart-button::before {
    display: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .gallery-nav-button {
    background: white;
    border: 2px solid black;
  }

  .size-option {
    border-width: 2px;
  }

  .add-to-cart-button {
    border: 2px solid white;
  }
}

/* Focus styles for better accessibility */
.gallery-nav-button:focus,
.size-option:focus,
.size-dropdown:focus,
.add-to-cart-button:focus,
.quantity-button:focus,
 
 

/* Print styles */
@media print {
  .gallery-nav-button,
  .add-to-cart-button,
  .quantity-selector-wrapper {
    display: none !important;
  }

  .product-info {
    background: white !important;
    color: black !important;
  }

  .product-title,
  .description-heading {
    color: black !important;
  }
}

/* Size Guide Popup */
.size-guide-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.size-guide--inner {
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.size-guide-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  transition: all 0.3s ease;
}

.size-guide-close:hover {
  background: #e0e0e0;
  transform: scale(1.1);
}

.size-guide-close svg {
  width: 16px;
  height: 16px;
  fill: #333;
  position: relative;
  top: -1px;
}

.size-chart-trigger--coded {
  color: #fff;
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}


.size-chart-trigger--coded svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  path{
    stroke: currentColor;
  }
}

.eam-custom-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  backdrop-filter: blur(5px);
}

.eam-no-scroll {
  overflow: hidden;
}

/* Size Guide Content Styling */
.size-guide--inner h1,
.size-guide--inner h2,
.size-guide--inner h3,
.size-guide--inner h4,
.size-guide--inner h5,
.size-guide--inner h6 {
  margin: 0 0 15px 0;
  color: #333;
  font-family: var(--font-heading-family);
}

.size-guide--inner h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.size-guide--inner h2 {
  font-size: 20px;
}

.size-guide--inner h3 {
  font-size: 18px;
}

.size-guide--inner p {
  margin: 0 0 15px 0;
  color: #666;
  line-height: 1.6;
}

.size-guide--inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.size-guide--inner th,
.size-guide--inner td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.size-guide--inner th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
}

.size-guide--inner img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 15px 0;
}

/* Mobile Responsive */
@media screen and (max-width: 750px) {
  .size-guide--inner {
    padding: 20px;
    margin: 10px;
  }
  
  .size-guide--inner h1 {
    font-size: 20px;
  }
  
  .size-guide--inner h2 {
    font-size: 18px;
  }
  
  .size-guide--inner h3 {
    font-size: 16px;
  }
  
  .size-guide--inner th,
  .size-guide--inner td {
    padding: 8px 5px;
    font-size: 14px;
  }
}
