/** Shopify CDN: Minification failed

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

**/
/**
 * Product Customizer Styles - Linen Inspired Design
 * File: assets/product-customizer.css
 * Works with sections/product-customizer.liquid
 */

/* Container */
.product-customizer-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2c2c2c;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.customizer-container {
  max-width: 100%;
}

/* Header */
.customizer-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.customizer-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0 0 1.5rem 0;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
}

.customizer-subtitle {
  font-size: 1.1rem;
  color: #6b6b6b;
  margin: 0;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Steps */
.customizer-step {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #f0f0f0;
}

.customizer-step:last-of-type {
  border-bottom: none;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0 0 2rem 0;
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #f7f5f3;
  color: #8b7355;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  border: 2px solid #e8e1db;
}

/* Variant Grid */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.variant-card {
  background: #fefefe;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.variant-card:hover:not(.unavailable) {
  border-color: #d4c4b0;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.variant-card.selected {
  border-color: #8b7355;
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
  background: #fdfcfb;
}

.variant-card.unavailable {
  opacity: 0.5;
  cursor: not-allowed;
}

.variant-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f9f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.variant-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain to show full image */
  object-position: center;
  padding: 1rem; /* Add padding to ensure full image visibility */
}

.variant-icon {
  font-size: 3.5rem;
  opacity: 0.6;
  color: #8b7355;
}

.variant-info {
  padding: 2rem;
  text-align: center;
}

.variant-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 0.8rem 0;
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
}

.variant-price {
  font-size: 1rem;
  color: #6b6b6b;
  margin: 0 0 1rem 0;
  font-weight: 300;
}

.price-note {
  font-size: 0.85rem;
  color: #8b7355;
  display: block;
  margin-top: 0.3rem;
  font-style: italic;
}

.unavailable-text {
  color: #c4a484;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0.8rem 0 0 0;
  font-style: italic;
}

.select-variant-btn {
  width: calc(100% - 2rem);
  margin: 0 1rem 1.5rem 1rem;
  padding: 1rem;
  background: #8b7355;
  color: white;
  border: none;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.select-variant-btn:hover {
  background: #7a6249;
  transform: translateY(-1px);
}

.no-variants {
  text-align: center;
  color: #8b7355;
  padding: 3rem;
  background: #f9f8f6;
  border-radius: 8px;
  grid-column: 1 / -1;
  font-style: italic;
}

/* Measurements */
.measurements-container {
  background: #fafaf9;
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid #f0ebe5;
}

.measurement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.measurement-field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.measurement-field label {
  font-weight: 400;
  color: #2c2c2c;
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0.3px;
}

.measurement-field input {
  padding: 1rem;
  border: 1px solid #e8e1db;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.measurement-field input:focus {
  outline: none;
  border-color: #8b7355;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.measurement-field input:valid:not(:placeholder-shown) {
  border-color: #a3b18a;
}

.required {
  color: #c4a484;
  font-weight: 500;
}

.field-hint {
  font-size: 0.8rem;
  color: #8b7355;
  font-style: italic;
}

.measurement-guide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: white;
  border: 1px solid #e8e1db;
  border-radius: 6px;
  color: #6b6b6b;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.measurement-guide-btn:hover {
  background: #f9f8f6;
  border-color: #d4c4b0;
}

/* Form Groups */
.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: #2c2c2c;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.label-hint {
  font-weight: 300;
  color: #8b7355;
  font-size: 0.8rem;
  font-style: italic;
}

.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e8e1db;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
  background: white;
}

.form-group textarea:focus {
  outline: none;
  border-color: #8b7355;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/* Checkbox Group */
.checkbox-group {
  background: #fafaf9;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #f0ebe5;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-weight: 400;
  color: #2c2c2c;
}

.checkbox-label input[type="checkbox"] {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: #8b7355;
}

.checkbox-text {
  flex: 1;
}

.checkbox-hint {
  display: block;
  font-size: 0.85rem;
  color: #8b7355;
  font-weight: 300;
  margin-top: 0.4rem;
  font-style: italic;
}

/* Order Summary */
.order-summary {
  background: #f9f8f6;
  border: 1px solid #e8e1db;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.summary-title {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 1.5rem 0;
  color: #2c2c2c;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.summary-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #4a4a4a;
  padding: 0.5rem 0;
}

.summary-row.total {
  border-top: 1px solid #e8e1db;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c2c2c;
}

/* Action Buttons */
.customizer-actions {
  text-align: center;
  margin-top: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 6px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: #8b7355;
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: #7a6249;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.25);
}

.btn-primary:disabled {
  background: #d4c4b0;
  cursor: not-allowed;
  transform: none;
}

.btn-large {
  padding: 1.4rem 3.5rem;
  font-size: 1.1rem;
}

.btn.ready {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

.btn.success {
  background: #a3b18a;
}

.action-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #8b7355;
  font-style: italic;
}

.action-note svg {
  color: #a3b18a;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 44, 44, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.4s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #8b7355;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #f9f8f6;
  color: #2c2c2c;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
}

.guide-section {
  margin-bottom: 2.5rem;
}

.guide-section h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 1.2rem 0;
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.guide-step {
  padding: 1.5rem;
  background: #fafaf9;
  border-radius: 8px;
  border-left: 4px solid #8b7355;
  line-height: 1.7;
  color: #4a4a4a;
}

/* Error States */
.customizer-error {
  text-align: center;
  padding: 4rem;
  background: #fdf8f6;
  border: 1px solid #f0ebe5;
  border-radius: 12px;
  grid-column: 1 / -1;
}

.customizer-error h3 {
  color: #c4a484;
  margin: 0 0 1rem 0;
  font-family: 'Playfair Display', serif;
}

.customizer-error p {
  color: #8b7355;
  margin: 0 0 2rem 0;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .variant-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .measurement-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .customizer-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }
  
  .step-title {
    font-size: 1.4rem;
    gap: 1rem;
  }
  
  .step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
  
  .measurements-container {
    padding: 2rem;
  }
  
  .order-summary {
    padding: 2rem;
  }
  
  .btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
  }
  
  .modal-content {
    margin: 1rem;
  }
  
  .customizer-title {
    font-size: 2rem;
  }
  
  .customizer-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .variant-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .variant-info {
    padding: 1.5rem;
  }
  
  .measurements-container {
    padding: 1.5rem;
  }
  
  .measurement-field input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .customizer-title {
    font-size: 1.8rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .variant-card {
    border-width: 2px;
  }
  
  .btn-primary {
    background: #2c2c2c;
  }
  
  .required {
    font-weight: 700;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
:focus-visible {
  outline: 2px solid #8b7355;
  outline-offset: 2px;
}

/* Animation for slide in right notifications */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Additional Elegant Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');

/* Subtle texture overlay for premium feel */
.product-customizer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f7f5f3' fill-opacity='0.3'%3E%3Cpath d='M20 20c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4zm0-20c0 2.2-1.8 4-4 4s-4-1.8-4-4 1.8-4 4-4 4 1.8 4 4z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}