/** Shopify CDN: Minification failed

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

**/
/* ===================================== */
/* MODERN STICKERINE UI - DESIGN SYSTEM */
/* Version 5.1 - Cleaned & Optimized   */
/* ===================================== */

/* ===================================== */
/* MODERN CSS CUSTOM PROPERTIES         */
/* ===================================== */
:root {
  /* Modern Color Palette */
  --stickerine-primary: #6366f1;
  --stickerine-primary-hover: #4f46e5;
  --stickerine-secondary: #06b6d4;
  --stickerine-success: #10b981;
  --stickerine-warning: #f59e0b;
  --stickerine-danger: #ef4444;
  
  /* Gradients */
  --stickerine-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --stickerine-gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --stickerine-gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --stickerine-gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  /* Neutral Colors */
  --stickerine-white: #ffffff;
  --stickerine-gray-50: #f8fafc;
  --stickerine-gray-100: #f1f5f9;
  --stickerine-gray-200: #e2e8f0;
  --stickerine-gray-300: #cbd5e1;
  --stickerine-gray-400: #94a3b8;
  --stickerine-gray-500: #64748b;
  --stickerine-gray-600: #475569;
  --stickerine-gray-700: #334155;
  --stickerine-gray-800: #1e293b;
  --stickerine-gray-900: #0f172a;
  
  /* Typography */
  --stickerine-font-family: var(--text-font-family);
  --stickerine-font-size-xs: 12px;
  --stickerine-font-size-sm: 14px;
  --stickerine-font-size-base: 16px;
  --stickerine-font-size-lg: 18px;
  --stickerine-font-size-xl: 20px;
  --stickerine-font-size-2xl: 24px;
  --stickerine-font-weight-normal: 400;
  --stickerine-font-weight-medium: 500;
  --stickerine-font-weight-semibold: 600;
  --stickerine-font-weight-bold: 700;
  
  /* Spacing System */
  --stickerine-space-1: 4px;
  --stickerine-space-2: 8px;
  --stickerine-space-3: 12px;
  --stickerine-space-4: 16px;
  --stickerine-space-5: 20px;
  --stickerine-space-6: 24px;
  --stickerine-space-8: 32px;
  --stickerine-space-10: 40px;
  --stickerine-space-12: 48px;
  --stickerine-space-16: 64px;
  --stickerine-space-20: 80px;
  
  /* Border Radius */
  --stickerine-radius-sm: 6px;
  --stickerine-radius: 8px;
  --stickerine-radius-md: 12px;
  --stickerine-radius-lg: 16px;
  --stickerine-radius-xl: 20px;
  --stickerine-radius-full: 9999px;
  
  /* Shadows */
  --stickerine-shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --stickerine-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --stickerine-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --stickerine-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --stickerine-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --stickerine-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --stickerine-shadow-glow: 0 0 0 3px rgba(99, 102, 241, 0.15);
  --stickerine-shadow-colored: 0 10px 25px -5px rgba(99, 102, 241, 0.3);
  
  /* Transitions */
  --stickerine-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --stickerine-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --stickerine-transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --stickerine-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===================================== */
/* CONFIGURATOR CONTAINER               */
/* ===================================== */
.configurator-v2 {
  font-family: var(--stickerine-font-family);
  background: var(--stickerine-white);
  border: 1px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-xl);
  padding: var(--stickerine-space-8);
  margin: var(--stickerine-space-1) 0;
  box-shadow: var(--stickerine-shadow-lg);
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  counter-reset: step-counter;
}

/* Mobile: Remove padding and border from configurator */
@media screen and (max-width: 749px) {
  .configurator-v2 {
    padding: 0px;
    border: none;
  }
}

.configurator-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--stickerine-gradient-glass);
}

.configurator-v2 h3 {
  margin: 0 0 var(--stickerine-space-8) 0;
  color: var(--stickerine-gray-900);
  font-size: var(--stickerine-font-size-2xl);
  font-weight: var(--stickerine-font-weight-bold);
  background: var(--stickerine-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: var(--stickerine-space-3);
}
/*
.configurator-v2 h3::before {
  content: '🎨';
  -webkit-text-fill-color: initial;
  background: none;
} 
*/

/* ===================================== */
/* OPTION SECTIONS                      */
/* ===================================== */
.configurator-option {
  margin-bottom: var(--stickerine-space-10);
  padding: var(--stickerine-space-6);
  background: var(--stickerine-gray-50);
  border-radius: var(--stickerine-radius-lg);
  border: 1px solid var(--stickerine-gray-100);
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
  position: relative;
  transition: var(--stickerine-transition);
}

.configurator-option:hover {
  background: var(--stickerine-white);
  box-shadow: var(--stickerine-shadow-md);
  transform: translateY(-2px);
}

.configurator-option:last-child {
  margin-bottom: 0;
}

.configurator-label {
  display: flex;
  align-items: center;
  gap: var(--stickerine-space-3);
  font-weight: var(--stickerine-font-weight-semibold);
  font-size: var(--stickerine-font-size-lg);
  color: var(--stickerine-gray-900);
  margin-bottom: var(--stickerine-space-6);
  position: relative;
}

.configurator-label::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background: var(--stickerine-gradient-primary);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: var(--stickerine-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--stickerine-font-size-sm);
  font-weight: var(--stickerine-font-weight-bold);
  box-shadow: var(--stickerine-shadow);
}

/* ===================================== */
/* SHAPE SELECTION - 3x2 GRID          */
/* ===================================== */
.configurator-shape-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(2, 1fr) !important;
  gap: var(--stickerine-space-4) !important;
  margin-bottom: var(--stickerine-space-6);
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

.configurator-shape-option {
  padding: var(--stickerine-space-6);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-lg);
  background: var(--stickerine-white);
  cursor: pointer;
  text-align: center;
  transition: all var(--stickerine-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--stickerine-space-3);
  font-family: var(--stickerine-font-family);
  font-size: var(--stickerine-font-size-sm);
  color: var(--stickerine-gray-700);
  min-height: 120px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.configurator-shape-option::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--stickerine-gradient-primary);
  opacity: 0;
  transform: rotate(45deg) scale(0);
  transition: var(--stickerine-transition);
  z-index: 0;
}

.configurator-shape-option:hover::before {
  opacity: 0.05;
  transform: rotate(45deg) scale(1);
}

.configurator-shape-option:hover {
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-colored);
  transform: translateY(-4px) scale(1.02);
}

.configurator-shape-option.selected {
  border-color: var(--stickerine-primary);
  background: var(--stickerine-gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--stickerine-shadow-colored);
}

.configurator-shape-option.selected::before {
  opacity: 0.1;
  transform: rotate(45deg) scale(1);
}

.shape-visual {
  /* Larger shape icon dimensions */
  width: 85px;
  height: 60px;
  font-size: clamp(18px, 2vw, 24px);
  /* Reduced margin to bring icons closer to labels */
  margin-bottom: clamp(4px, 0.4vw, 6px);
  /* Optimized padding for better balance around icons */
  padding: clamp(4px, 0.3vw, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: var(--stickerine-radius);
  position: relative;
  z-index: 1;
  transition: var(--stickerine-transition);
}

.configurator-shape-option:hover .shape-visual {
  transform: scale(1.1);
  /*background: rgba(255, 255, 255, 0.15);*/
}

.configurator-shape-option.selected .shape-visual {
  /* background: rgba(255, 255, 255, 0.2); */
  transform: scale(1.05);
}

.shape-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.configurator-shape-option.selected .shape-visual img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) brightness(1.1);
}

.shape-label {
  font-weight: var(--stickerine-font-weight-medium);
  color: inherit;
  /* Smaller font size for shape labels */
  font-size: var(--stickerine-font-size-xs);
  line-height: 1.2;
  position: relative;
  z-index: 1;
  transition: var(--stickerine-transition);
}

.configurator-shape-option:hover .shape-label {
  font-weight: var(--stickerine-font-weight-semibold);
}

/* QR Code smart indicator */
.configurator-shape-option[data-shape="qr-code"]::after {
  content: '⚡ Smart';
  position: absolute;
  top: var(--stickerine-space-2);
  right: var(--stickerine-space-2);
  background: var(--stickerine-gradient-success);
  color: white;
  font-size: var(--stickerine-font-size-xs);
  padding: var(--stickerine-space-1) var(--stickerine-space-2);
  border-radius: var(--stickerine-radius-full);
  font-weight: var(--stickerine-font-weight-bold);
  transform: scale(0);
  transition: transform var(--stickerine-transition) var(--stickerine-bounce);
  z-index: 2;
}

.configurator-shape-option[data-shape="qr-code"]:hover::after,
.configurator-shape-option[data-shape="qr-code"].selected::after {
  transform: scale(1);
}

/* ===================================== */
/* MATERIAL SELECTION - 3 COLUMN GRID   */
/* ===================================== */
.configurator-material-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--stickerine-space-4) !important;
    margin-bottom: var(--stickerine-space-6);
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.configurator-material-option {
    padding: var(--stickerine-space-3);
    border: 2px solid var(--stickerine-gray-200);
    border-radius: var(--stickerine-radius-lg);
    background: var(--stickerine-white);
    cursor: pointer;
    text-align: left;
    transition: all var(--stickerine-transition);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--stickerine-space-3);
    font-family: var(--stickerine-font-family);
    font-size: var(--stickerine-font-size-sm);
    color: var(--stickerine-gray-700);
    min-height: 100px;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.configurator-material-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left var(--stickerine-transition-slow);
}

.configurator-material-option:hover::before {
  left: 100%;
}

.configurator-material-option:hover {
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-md);
  transform: translateY(-3px) scale(1.02);
}

.configurator-material-option.selected {
  border-color: var(--stickerine-primary);
  background: linear-gradient(135deg, var(--stickerine-primary) 0%, var(--stickerine-secondary) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--stickerine-shadow-colored);
}

.material-sample {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin-bottom: var(--stickerine-space-2);
  /* border: 2px solid rgba(255, 255, 255, 0.2); */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: var(--stickerine-transition);
  /* box-shadow: var(--stickerine-shadow-sm); */
}

.configurator-material-option:hover .material-sample {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--stickerine-shadow);
}

.configurator-material-option.selected .material-sample {
  /* border-color: rgba(255, 255, 255, 0.5); */
  transform: scale(1.05);
  /* box-shadow: var(--stickerine-shadow-md); */
}

.material-sample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--stickerine-radius-md) - 2px);
  transition: var(--stickerine-transition);
}

.configurator-material-option:hover .material-sample img {
  transform: scale(1.1);
}

.material-label {
  font-weight: var(--stickerine-font-weight-medium);
  color: inherit;
  font-size: var(--stickerine-font-size-sm);
  line-height: 1.2;
  transition: var(--stickerine-transition);
}

.configurator-material-option:hover .material-label {
  font-weight: var(--stickerine-font-weight-semibold);
}

/* ===================================== */
/* PRICING TABLE QUANTITY SELECTOR      */
/* ===================================== */
.configurator-quantity-wrapper {
  margin-bottom: var(--stickerine-space-8);
  width: 100%;
}

.configurator-quantity-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--stickerine-white);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-lg);
  overflow: hidden;
  box-shadow: var(--stickerine-shadow-lg);
  position: relative;
}

.configurator-quantity-list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--stickerine-gradient-primary);
  z-index: 1;
}

.configurator-quantity-item {
  position: relative;
  border-bottom: 1px solid var(--stickerine-gray-100);
  transition: all var(--stickerine-transition);
  background: var(--stickerine-white);
  cursor: pointer;
}

.configurator-quantity-item:last-child {
  border-bottom: none;
}

.configurator-quantity-item:hover {
  background: var(--stickerine-gray-50);
  transform: translateX(var(--stickerine-space-1));
}

.configurator-quantity-item.selected,
.configurator-quantity-item[data-active="true"] {
  background: var(--stickerine-gradient-primary);
  color: white;
  transform: translateX(0);
  box-shadow: inset 4px 0 0 var(--stickerine-primary);
}

.configurator-quantity-label {
  display: block;
  padding: var(--stickerine-space-4) var(--stickerine-space-6) var(--stickerine-space-4) calc(var(--stickerine-space-6) + 40px);
  cursor: pointer;
  position: relative;
  width: 100%;
  transition: all var(--stickerine-transition);
}

/* Custom Radio Button Styling */
.configurator-quantity-label::before {
  content: '';
  position: absolute;
  left: var(--stickerine-space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid var(--stickerine-gray-300);
  border-radius: 50%;
  background: var(--stickerine-white);
  transition: all var(--stickerine-transition);
  box-shadow: var(--stickerine-shadow-sm);
}

.configurator-quantity-label::after {
  content: '';
  position: absolute;
  left: calc(var(--stickerine-space-4) + 5px);
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stickerine-primary);
  transition: all var(--stickerine-transition);
}

.configurator-quantity-item.selected .configurator-quantity-label {
  color: white;
  font-weight: var(--stickerine-font-weight-semibold);
}

/* Radio Button States */
.configurator-quantity-item:hover .configurator-quantity-label::before {
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-md);
  transform: translateY(-50%) scale(1.1);
}

.configurator-quantity-item.selected .configurator-quantity-label::before {
  border-color: var(--stickerine-primary);
  background: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-glow), 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.configurator-quantity-item.selected .configurator-quantity-label::after {
  transform: translateY(-50%) scale(1);
  background: white;
}

.configurator-quantity-radio {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  outline: none !important;
}

.configurator-quantity-radio:focus {
  outline: none !important;
  box-shadow: none !important;
}

.configurator-quantity-radio:focus + .quantity-grid-content {
  outline: none !important;
}

.configurator-quantity-radio:focus + .configurator-quantity-label {
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
  border-radius: var(--stickerine-radius);
}

.quantity-grid-content {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--stickerine-space-4);
  align-items: center;
  width: 100%;
}

.quantity-info-column {
  font-size: var(--stickerine-font-size-base);
  font-weight: var(--stickerine-font-weight-medium);
  color: var(--stickerine-gray-800);
  text-align: left;
  display: flex;
  align-items: center;
  gap: var(--stickerine-space-4);
  flex-wrap: wrap;
  margin-left: var(--stickerine-space-4);
}

.configurator-quantity-item.selected .quantity-info-column {
  color: white;
  font-weight: var(--stickerine-font-weight-semibold);
}

.quantity-price-column {
  font-size: var(--stickerine-font-size-lg);
  font-weight: var(--stickerine-font-weight-bold);
  color: var(--stickerine-gray-900);
  text-align: right;
  min-width: 80px;
}

.configurator-quantity-item.selected .quantity-price-column {
  color: white;
}

.quantity-savings-column {
  font-size: var(--stickerine-font-size-sm);
  font-weight: var(--stickerine-font-weight-bold);
  text-align: right;
  min-width: 60px;
}

.quantity-savings-column.has-savings {
  color: var(--stickerine-success);
  background: rgba(16, 185, 129, 0.1);
  padding: var(--stickerine-space-1) var(--stickerine-space-2);
  border-radius: var(--stickerine-radius);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.configurator-quantity-item.selected .quantity-savings-column.has-savings {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.quantity-popular-badge {
  position: static;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
  padding: 2px var(--stickerine-space-2);
  border-radius: var(--stickerine-radius-full);
  font-size: calc(var(--stickerine-font-size-xs) - 1px);
  font-weight: var(--stickerine-font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
  animation: pulse 2s infinite;
  transition: all var(--stickerine-transition);
  z-index: 1;
  flex-shrink: 0;
  white-space: nowrap;
}

.configurator-quantity-item.selected .quantity-popular-badge {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--stickerine-shadow-sm);
}

.configurator-quantity-item:hover .quantity-popular-badge {
  transform: scale(1.05);
  box-shadow: var(--stickerine-shadow-md);
}

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

/* Custom quantity input */
.custom-quantity-input {
  margin-top: var(--stickerine-space-6);
  padding: var(--stickerine-space-6);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 2px solid var(--stickerine-primary);
  border-radius: var(--stickerine-radius-lg);
  display: none;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(20px);
  box-shadow: var(--stickerine-shadow);
  position: relative;
  overflow: hidden;
}

.custom-quantity-input::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--stickerine-gradient-secondary);
}

.custom-quantity-input.show {
  display: block;
  animation: slideInFromBottom var(--stickerine-transition-slow) var(--stickerine-bounce);
}

.custom-quantity-wrapper {
  display: flex;
  align-items: center;
  gap: var(--stickerine-space-4);
}

.custom-quantity-label {
  margin-bottom: var(--stickerine-space-2);
  font-weight: var(--stickerine-font-weight-semibold);
  color: var(--stickerine-gray-700);
  font-size: var(--stickerine-font-size-sm);
}

.custom-quantity-field {
  width: 150px;
  text-align: center;
  padding: var(--stickerine-space-3) var(--stickerine-space-4);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius);
  font-family: var(--stickerine-font-family);
  font-size: var(--stickerine-font-size-base);
  font-weight: var(--stickerine-font-weight-medium);
  background: var(--stickerine-white);
  transition: var(--stickerine-transition);
  box-sizing: border-box;
}

.custom-quantity-field:focus {
  outline: none;
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-glow);
  transform: translateY(-1px);
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================== */
/* QR POSITION SELECTOR - 4 IN A ROW    */
/* ===================================== */
.qr-position-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--stickerine-space-3);
  margin-bottom: var(--stickerine-space-6);
  width: 100%;
}

.qr-position-btn {
    padding: var(--stickerine-space-4) var(--stickerine-space-3);
    border: 2px solid var(--stickerine-gray-200);
    border-radius: var(--stickerine-radius-md);
    background: var(--stickerine-white);
    cursor: pointer;
    transition: all var(--stickerine-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--stickerine-space-2);
    font-family: var(--stickerine-font-family);
    font-size: var(--stickerine-font-size-sm);
    color: var(--stickerine-gray-700);
    min-height: 48px;
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
    text-align: left;
}

.qr-position-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--stickerine-gradient-primary);
  opacity: 0;
  transition: all var(--stickerine-transition-slow);
  z-index: 1;
}

.qr-position-btn:hover {
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-sm);
  transform: translateY(-2px);
}

.qr-position-btn:hover::before {
  left: 0;
  opacity: 0.05;
}

.qr-position-btn.active {
  border-color: var(--stickerine-primary);
  background: rgba(99, 102, 241, 0.1);
  color: var(--stickerine-primary);
  font-weight: var(--stickerine-font-weight-semibold);
  box-shadow: var(--stickerine-shadow);
}

.qr-position-btn.active::before {
  left: 0;
  opacity: 0.1;
}

.position-visual {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: auto;
    height: 48px;
    object-fit: contain !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--stickerine-radius-sm);
    background: transparent !important;
    transition: all var(--stickerine-transition);
}

img.qr-position-icon.horizontal {
    height: 40px;
}

img.qr-position-icon.vertical {
    height: 40px;
}

.qr-position-btn.active .position-visual {
  background: rgba(99, 102, 241, 0.2);
}

.position-visual.horizontal {
  flex-direction: row;
  gap: 2px;
}

.position-visual.vertical {
  flex-direction: column;
  gap: 1px;
}

.position-label {
  position: relative;
  z-index: 2;
  font-weight: var(--stickerine-font-weight-medium);
  font-size: var(--stickerine-font-size-sm);
  line-height: 1.2;
  color: inherit;
  transition: all var(--stickerine-transition);
}

.qr-position-btn:hover .position-label {
  font-weight: var(--stickerine-font-weight-semibold);
}

.qr-mini,
.art-mini {
  font-size: 6px;
  font-weight: var(--stickerine-font-weight-bold);
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transition: all var(--stickerine-transition);
}

.qr-mini {
  background: var(--stickerine-primary);
  color: white;
  font-size: 5px;
}

.art-mini {
  background: var(--stickerine-gray-300);
  color: var(--stickerine-gray-600);
  font-size: 7px;
}

.qr-position-btn.active .qr-mini {
  background: var(--stickerine-primary);
  color: white;
}

.qr-position-btn.active .art-mini {
  background: var(--stickerine-gray-400);
  color: white;
}

.qr-position-btn:hover .position-visual {
  transform: scale(1.05);
}

.qr-position-btn.active .position-visual {
  transform: scale(1.02);
}

/* ===================================== */
/* DROPDOWN SELECTORS                   */
/* ===================================== */
.configurator-select {
  width: 100%;
  padding: var(--stickerine-space-4) var(--stickerine-space-6);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-lg);
  background: var(--stickerine-white);
  font-family: var(--stickerine-font-family);
  font-size: var(--stickerine-font-size-base);
  font-weight: var(--stickerine-font-weight-medium);
  color: var(--stickerine-gray-700);
  cursor: pointer;
  transition: var(--stickerine-transition);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right var(--stickerine-space-4) center;
  background-size: 20px;
  padding-right: var(--stickerine-space-12);
  box-shadow: var(--stickerine-shadow-sm);
}

.configurator-select:hover {
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow);
  transform: translateY(-1px);
}

.configurator-select:focus {
  outline: none;
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-glow);
  transform: translateY(-1px);
}

/* ===================================== */
/* CUSTOM SIZE INPUT - CLEANED          */
/* ===================================== */
.custom-size-input {
  border: none !important;
  box-shadow: none !important;
  margin-top: var(--stickerine-space-2) !important;
  padding: var(--stickerine-space-6);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(99, 102, 241, 0.05) 100%);
  border-radius: var(--stickerine-radius-lg);
  display: none;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  animation: slideIn var(--stickerine-transition-slow) var(--stickerine-bounce);
}

.custom-size-input.show {
  display: block;
}

.size-helper-text {
  grid-column: 1 / -1;
  margin-bottom: var(--stickerine-space-4);
  padding: var(--stickerine-space-3) var(--stickerine-space-4);
  background: var(--stickerine-gradient-glass);
  border: 1px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.size-helper-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--stickerine-gradient-primary);
  border-radius: 0 2px 2px 0;
}

.helper-content {
  display: flex;
  align-items: center;
  gap: var(--stickerine-space-2);
  font-size: var(--stickerine-font-size-sm);
  color: var(--stickerine-gray-700);
  font-weight: var(--stickerine-font-weight-medium);
}

.helper-icon {
  font-size: var(--stickerine-font-size-base);
  opacity: 0.8;
  flex-shrink: 0;
}

.helper-main {
  flex: 1;
  line-height: 1.4;
}

.helper-constraint {
  color: var(--stickerine-gray-500);
  font-weight: var(--stickerine-font-weight-normal);
  font-size: var(--stickerine-font-size-xs);
  white-space: nowrap;
  margin-left: var(--stickerine-space-2);
}

.size-helper-text.qr-active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.2);
}

.size-helper-text.qr-active::before {
  background: var(--stickerine-gradient-success);
}

.size-helper-text.qr-active .helper-icon {
  color: var(--stickerine-success);
}

.size-helper-text.qr-active .helper-constraint {
  color: var(--stickerine-success);
  font-weight: var(--stickerine-font-weight-medium);
}

.custom-size-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: var(--stickerine-space-4);
  align-items: end;
  width: 100%;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.input-group label {
  margin-bottom: var(--stickerine-space-2);
  font-weight: var(--stickerine-font-weight-semibold);
  color: var(--stickerine-gray-700);
  font-size: var(--stickerine-font-size-sm);
  width: 100%;
}

.input-group input[type="number"],
.input-group select.custom-size-unit {
  border-width: 2px;
  border-style: solid;
  border-color: #d1d5db80;
  width: 90%;
  padding: 10px;
  border-radius: var(--stickerine-radius);
  font-family: var(--stickerine-font-family);
  font-size: var(--stickerine-font-size-base);
  font-weight: var(--stickerine-font-weight-medium);
  background: var(--stickerine-white);
  transition: var(--stickerine-transition);
  box-sizing: border-box;
}

.input-group select.custom-size-unit {
  padding: 13px;
}

.input-group input[type="number"]:focus,
.input-group select.custom-size-unit:focus {
  outline: none;
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-glow);
  transform: translateY(-1px);
  width: 90%;
}

.input-group input[type="number"].error,
.input-group select.custom-size-unit.error {
  border-color: var(--stickerine-danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  background: rgba(239, 68, 68, 0.02);
  width: 90%;
}

.input-group input[type="number"].error:focus,
.input-group select.custom-size-unit.error:focus {
  border-color: var(--stickerine-danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
  width: 90%;
}

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

/* ===================================== */
/* ADD TO CART BUTTONS                  */
/* ===================================== */
.configurator-add-to-cart-container {
  margin-top: var(--stickerine-space-10);
  padding-top: var(--stickerine-space-8);
  border-top: 1px solid var(--stickerine-gray-200);
  width: 100%;
}

.configurator-add-to-cart {
  width: 100%;
  background: var(--stickerine-gradient-primary);
  color: white;
  border: none;
  border-radius: var(--stickerine-radius-xl);
  font-family: var(--stickerine-font-family);
  font-weight: var(--stickerine-font-weight-bold);
  cursor: pointer;
  transition: all var(--stickerine-transition);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: var(--stickerine-shadow-xl);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.configurator-add-to-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left var(--stickerine-transition-slow);
}

.configurator-add-to-cart:hover {
  background: var(--stickerine-gradient-secondary);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.configurator-add-to-cart:active {
  transform: translateY(-1px) scale(1.01);
}

.cart-button-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--stickerine-space-6);
  padding: var(--stickerine-space-4) var(--stickerine-space-6);
}

.cart-button-main {
  display: flex;
  align-items: center;
  gap: var(--stickerine-space-3);
  flex: 1;
}

.cart-button-main .btn-icon {
  font-size: var(--stickerine-font-size-xl);
  line-height: 1;
}

.cart-button-main .btn-text {
  font-size: var(--stickerine-font-size-lg);
  font-weight: var(--stickerine-font-weight-bold);
  line-height: 1.2;
}

.cart-button-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--stickerine-space-2);
  flex-shrink: 0;
  min-width: 120px;
}

.cart-button-price .btn-price {
  font-size: var(--stickerine-font-size-xl);
  font-weight: var(--stickerine-font-weight-bold);
  background: rgba(255, 255, 255, 0.25);
  padding: var(--stickerine-space-2) var(--stickerine-space-4);
  border-radius: var(--stickerine-radius-full);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all var(--stickerine-transition);
}

.cart-button-price .btn-quantity {
  font-size: var(--stickerine-font-size-sm);
  font-weight: var(--stickerine-font-weight-medium);
  opacity: 0.9;
  line-height: 1;
}

.configurator-add-to-cart:hover .cart-button-price .btn-price {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}

/* ===================================== */
/* STICKY CART BUTTON - SIMPLIFIED      */
/* ===================================== */
.configurator-sticky-cart-container.right-positioned {
  position: sticky;
  bottom: 20px;
  z-index: 9;
  margin-top: 20px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  padding: var(--stickerine-space-4);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 70%, transparent 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--stickerine-gray-200);
  border-left: 1px solid var(--stickerine-gray-200);
  border-right: 1px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-lg) var(--stickerine-radius-lg) 0 0;
  opacity: 0;
  transition: all var(--stickerine-transition-slow);
  pointer-events: none;

}

.configurator-sticky-cart-container.right-positioned:not(.visible) {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* Hide sticky button completely during configurator loading */
.configurator-sticky-cart-container.configurator-loading {
  display: none !important;
}

.configurator-sticky-cart-container.right-positioned.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 3;
}

.configurator-sticky-cart-container.right-positioned .sticky-cart-button {
  width: 100%;
  background: linear-gradient(135deg, var(--stickerine-primary) 0%, var(--stickerine-secondary) 100%);
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  color: white;
  font-family: var(--stickerine-font-family);
  font-size: var(--stickerine-font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.configurator-sticky-cart-container.right-positioned .sticky-cart-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.configurator-sticky-cart-container.right-positioned .sticky-cart-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.configurator-sticky-cart-container.right-positioned .sticky-cart-button:disabled {
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 2px 8px rgba(107, 114, 128, 0.2);
}

.sticky-cart-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.sticky-cart-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cart-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.btn-price {
  font-weight: 700;
  font-size: var(--stickerine-font-size-base);
}

.btn-quantity {
  font-size: var(--stickerine-font-size-xs);
  opacity: 0.9;
}

/* ===================================== */
/* RESPONSIVE DESIGN                    */
/* ===================================== */
@media (max-width: 640px) {
  .configurator-v2 {
    padding: 0px;
    margin: var(--stickerine-space-5) 0;
    border: none;
    box-shadow: none;
  }
  
  .configurator-shape-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(3, 1fr) !important;
    gap: var(--stickerine-space-3) !important;
  }
  
  .shape-visual {
    width: 85px;
    height: 80px;
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: clamp(4px, 0.4vw, 6px);
    padding: clamp(9px, 0.3vw, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: var(--stickerine-radius);
    transition: var(--stickerine-transition);
  }
  
  .configurator-shape-option {
    min-height: 100px;
    padding: var(--stickerine-space-8) !important;
  }
  
  /* Fix savings bubble stretching on mobile */
  .quantity-savings-column.has-savings {
    display: inline-block !important;
    width: auto !important;
    max-width: fit-content !important;
  }
  
  /* Reduce padding and maximize width for mobile */
  .configurator-option {
    padding: var(--stickerine-space-4) !important;
    margin-bottom: var(--stickerine-space-6) !important;
  }
  
  /* Increase width utilization of inner containers */
  .configurator-shape-grid,
  .configurator-material-grid,
  .configurator-quantity-list {
    width: 100% !important;
    max-width: none !important;
  }
  
  /* Keep quantity grid content on one row with smaller sizing */
  .quantity-grid-content {
    grid-template-columns: 1fr auto auto !important;
    gap: var(--stickerine-space-2) !important;
    font-size: var(--stickerine-font-size-sm) !important;
  }
  
  .quantity-savings-column {
    grid-column: auto !important;
    margin-top: 0 !important;
    text-align: right !important;
  }
  
  /* Move quantity label text away from radio button */
  .quantity-info-column {
    margin-left: var(--stickerine-space-8) !important;
  }
  
  /* Clean up cart button for mobile */
  .cart-button-content {
    gap: var(--stickerine-space-4) !important;
    padding: var(--stickerine-space-4) var(--stickerine-space-5) !important;
    border-radius: var(--stickerine-radius-lg) !important;
  }
  
  .configurator-add-to-cart {
    border-radius: var(--stickerine-radius-lg) !important;
    padding: 0 !important;
  }
  
  .configurator-add-to-cart * {
    border-radius: var(--stickerine-radius-lg) !important;
  }
  
  .configurator-material-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--stickerine-space-3) !important;
  }
  
  .configurator-material-option {
    min-height: 90px;
    padding: var(--stickerine-space-4);
  }
  
  .qr-position-buttons {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--stickerine-space-2);
  }
  
  .qr-position-btn {
    padding: var(--stickerine-space-3) var(--stickerine-space-2);
    min-height: 50px;
    font-size: var(--stickerine-font-size-xs);
    gap: var(--stickerine-space-1);
  }
  
  
  img.qr-position-icon.horizontal {
    height: 27px;
  }
  
  .position-label {
    font-size: var(--stickerine-font-size-xs);
  }
  
  .qr-mini,
  .art-mini {
    width: 8px;
    height: 8px;
    font-size: 4px;
  }
  
  .art-mini {
    font-size: 5px;
  }
  
  .custom-size-wrapper {
    grid-template-columns: 1fr;
    gap: var(--stickerine-space-4);
  }
  
  .custom-quantity-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--stickerine-space-3);
  }
  
  .custom-quantity-field {
    width: 100%;
    max-width: 200px;
  }
  
  .quantity-grid-content {
    grid-template-columns: 1fr auto;
    gap: var(--stickerine-space-3);
  }
  
  .quantity-savings-column {
    grid-column: 1 / -1;
    margin-top: var(--stickerine-space-2);
    text-align: left;
  }
  
  .configurator-quantity-label {
    padding: var(--stickerine-space-5) var(--stickerine-space-8);
  }
  
  .quantity-info-column {
    font-size: var(--stickerine-font-size-lg);
  }
  
  .quantity-price-column {
    font-size: var(--stickerine-font-size-xl);
    min-width: 100px;
  }
  
  .cart-button-content {
    gap: var(--stickerine-space-8);
    padding: var(--stickerine-space-6) var(--stickerine-space-8);
  }
  
  .cart-button-price {
    min-width: 140px;
  }
  
  .cart-button-price .btn-price {
    font-size: var(--stickerine-font-size-2xl);
    padding: var(--stickerine-space-3) var(--stickerine-space-5);
  }
  
  .cart-button-price .btn-quantity {
    font-size: var(--stickerine-font-size-base);
  }
  
  .configurator-add-to-cart {
    min-height: 80px;
  }
  
  .configurator-sticky-cart-container.right-positioned {
    bottom: 30px;
    margin-top: 30px;
  }
  
  .configurator-sticky-cart-container.right-positioned .sticky-cart-button {
    padding: 18px 24px;
    font-size: var(--stickerine-font-size-base);
  }
  
  .btn-price {
    font-size: var(--stickerine-font-size-lg);
  }
  
  .btn-quantity {
    font-size: var(--stickerine-font-size-sm);
  }
}

/* ===================================== */
/* ACCESSIBILITY & FOCUS STATES         */
/* ===================================== */
.configurator-shape-option:focus-visible,
.configurator-material-option:focus-visible,
.configurator-qr-position-option:focus-visible,
.configurator-select:focus-visible,
.configurator-add-to-cart:focus-visible {
  outline: 3px solid var(--stickerine-primary);
  outline-offset: 2px;
}

.configurator-add-to-cart:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.configurator-sticky-cart-container.right-positioned .sticky-cart-button:focus-visible {
  outline: 2px solid var(--stickerine-accent-color);
  outline-offset: 2px;
}

/* ===================================== */
/* ANIMATION KEYFRAMES                   */
/* ===================================== */
@keyframes slideInFromLeft {
  from {
    width: 0;
  }
  to {
    width: 4px;
  }
}

.configurator-quantity-item.selected::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--stickerine-secondary);
  animation: slideInFromLeft 0.3s ease-out;
}

/* ===================================== */
/* UTILITY CLASSES                      */
/* ===================================== */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================== */
/* REMOVED: All duplicate styles        */
/* REMOVED: Legacy CSS overrides        */
/* REMOVED: Conflicting sticky buttons  */
/* REMOVED: Redundant color definitions */
/* REMOVED: Unused complex animations   */
/* ===================================== */

/* ===================================== */
/* V2 MODULE INTEGRATION STYLES         */
/* ===================================== */

/* Artwork Section Styling */
.artwork-section {
  width: 100%;
  margin-bottom: var(--stickerine-space-8);
}

.artwork-options {
  display: flex;
  gap: var(--stickerine-space-4);
  margin-bottom: var(--stickerine-space-6);
  flex-wrap: wrap;
}

.artwork-option-btn {
  flex: 1;
  min-width: 120px;
  padding: var(--stickerine-space-4) var(--stickerine-space-6);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-md);
  background: var(--stickerine-white);
  color: var(--stickerine-gray-700);
  font-weight: var(--stickerine-font-weight-medium);
  font-size: var(--stickerine-font-size-sm);
  cursor: pointer;
  transition: all var(--stickerine-transition);
  text-align: center;
}

.artwork-option-btn:hover {
  border-color: var(--stickerine-primary);
  background: var(--stickerine-gray-50);
  transform: translateY(-1px);
}

.artwork-option-btn.active {
  border-color: var(--stickerine-primary);
  background: rgba(99, 102, 241, 0.1);
  color: var(--stickerine-primary);
  font-weight: var(--stickerine-font-weight-semibold);
}

/* Upload Interface */
.upload-dropzone {
  border: 2px dashed var(--stickerine-gray-300);
  border-radius: var(--stickerine-radius-lg);
  padding: var(--stickerine-space-16);
  text-align: center;
  background: var(--stickerine-gray-50);
  transition: all var(--stickerine-transition);
  cursor: pointer;
  margin-bottom: var(--stickerine-space-6);
}

.upload-dropzone:hover,
.upload-dropzone.drag-over {
  border-color: var(--stickerine-primary);
  background: rgba(99, 102, 241, 0.05);
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--stickerine-space-4);
}

.upload-icon {
  font-size: 2.5rem;
  margin-bottom: var(--stickerine-space-4);
}

.upload-text {
  color: var(--stickerine-gray-700);
}

.upload-text strong {
  font-size: var(--stickerine-font-size-lg);
  color: var(--stickerine-gray-900);
}

.upload-text p {
  margin: var(--stickerine-space-4) 0;
  color: var(--stickerine-gray-600);
}

.upload-text small {
  color: var(--stickerine-gray-500);
  font-size: var(--stickerine-font-size-sm);
}

.browse-btn {
  background: none;
  border: none;
  color: var(--stickerine-primary);
  cursor: pointer;
  text-decoration: underline;
  font-weight: var(--stickerine-font-weight-medium);
}

.browse-btn:hover {
  color: var(--stickerine-primary-hover);
}

/* QR Section Styling */
.qr-section {
  width: 100%;
  margin-bottom: var(--stickerine-space-8);
}

.qr-options {
  display: flex;
  gap: var(--stickerine-space-4);
  margin-bottom: var(--stickerine-space-6);
  flex-wrap: wrap;
}

.qr-option-btn {
  flex: 1;
  min-width: 120px;
  padding: var(--stickerine-space-4) var(--stickerine-space-6);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-md);
  background: var(--stickerine-white);
  color: var(--stickerine-gray-700);
  font-weight: var(--stickerine-font-weight-medium);
  font-size: var(--stickerine-font-size-sm);
  cursor: pointer;
  transition: all var(--stickerine-transition);
  text-align: center;
}

.qr-option-btn:hover {
  border-color: var(--stickerine-primary);
  background: var(--stickerine-gray-50);
  transform: translateY(-1px);
}

.qr-option-btn.active {
  border-color: var(--stickerine-primary);
  background: rgba(99, 102, 241, 0.1);
  color: var(--stickerine-primary);
  font-weight: var(--stickerine-font-weight-semibold);
}

/* QR Input Interface */
.qr-input-container {
  display: flex;
  gap: var(--stickerine-space-4);
  align-items: stretch;
}

.qr-url-input {
  flex: 1;
  padding: var(--stickerine-space-4) var(--stickerine-space-5);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius);
  font-size: var(--stickerine-font-size-base);
  transition: border-color var(--stickerine-transition);
}

.qr-url-input:focus {
  outline: none;
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-glow);
}

.qr-generate-btn {
  padding: var(--stickerine-space-4) var(--stickerine-space-8);
  background: var(--stickerine-primary);
  color: white;
  border: none;
  border-radius: var(--stickerine-radius);
  font-weight: var(--stickerine-font-weight-medium);
  cursor: pointer;
  transition: all var(--stickerine-transition);
  white-space: nowrap;
}

.qr-generate-btn:hover {
  background: var(--stickerine-primary-hover);
  transform: translateY(-1px);
}

/* Canvas styling */
#artwork-preview-canvas,
#qr-preview-canvas,
#contour-preview-canvas {
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-md);
  background: white;
  box-shadow: var(--stickerine-shadow-sm);
  max-width: 100%;
  height: auto;
}

/* Mobile responsive for V2 modules */
@media (max-width: 768px) {
  .artwork-options,
  .qr-options {
    flex-direction: column;
  }
  
  .artwork-option-btn,
  .qr-option-btn {
    min-width: auto;
  }
  
  .qr-input-container {
    flex-direction: row;
    gap: var(--stickerine-space-2);
  }
  
  .qr-generate-btn {
    padding: var(--stickerine-space-3) var(--stickerine-space-4);
    font-size: var(--stickerine-font-size-sm);
    min-width: 80px;
  }
  
  .upload-dropzone {
    padding: var(--stickerine-space-12);
  }
  
  .upload-icon {
    font-size: 2rem;
  }
  
  .upload-text strong {
    font-size: var(--stickerine-font-size-base);
  }
  
  #artwork-preview-canvas,
  #qr-preview-canvas,
  #contour-preview-canvas {
    max-width: 280px;
  }
}

/* Force full width layout enforcement */
.configurator-v2,
.configurator-option,
.configurator-shape-grid,
.configurator-material-grid {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* ===================================== */
/* THEME-COMPATIBLE PRODUCT GRID LAYOUT */
/* ===================================== */

/* Fixed-width columns that stay centered and only shrink when constrained */
@media screen and (min-width: 1000px) {
  .product {
    margin: 0 auto !important;
    padding: 0 var(--container-gutter, 24px) !important;
    justify-content: center !important;
    gap: 48px !important;
    /* Use min() to only shrink when screen gets too small */
    max-width: min(1400px, 100vw) !important;
  }
  
  /* Media gets fixed width that only shrinks when screen constrains it */
  .product__media {
    width: min(800px, 45vw) !important;
    --product-media-width: min(800px, 45vw) !important;
    flex: none !important;
  }
  
  /* Info gets fixed width that only shrinks when screen constrains it */  
  .product__info {
    width: min(700px, 40vw) !important;
    --product-info-width: min(700px, 40vw) !important;
    flex: none !important;
  }
}

/* ===================================== */
/* PROPORTIONAL SCALING FOR CONFIGURATOR */
/* ===================================== */

/* Ensure configurator elements maintain proportions */
.product__info {
  /* Base font size that scales with container */
  font-size: clamp(14px, 1.2vw, 16px);
}

/* Shape options with proportional scaling */
.configurator-shape-option {
  /* Use relative units for padding and sizing */
  padding: clamp(12px, 1.5vw, 24px);
  min-height: clamp(80px, 8vw, 120px);
  /* Reduced gap to bring icons closer to labels */
  gap: clamp(4px, 0.4vw, 6px);
}

/* Material options with column layout and proportional scaling */
.configurator-material-option {
  padding: clamp(12px, 1.2vw, 20px);
  min-height: clamp(120px, 12vw, 160px);
  font-size: clamp(13px, 1.1vw, 14px);
  gap: clamp(8px, 0.8vw, 12px);
  /* Change to column layout */
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  justify-content: center !important;
}

/* Material sample circles - fixed 75px size */
.material-sample {
  width: 75px !important;
  height: 75px !important;
  /* No right margin needed in column layout */
  margin: 0 !important;
  /* Ensure samples don't get squished */
  flex-shrink: 0 !important;
}

/* Material option text container */
.material-info {
  /* Proportional padding around text content */
  padding: clamp(4px, 0.4vw, 8px) 0;
  /* Ensure text has proper line height at all sizes */
  line-height: clamp(1.3, 1.4, 1.5);
}

/* Button scaling */
.configurator-add-to-cart {
  min-height: clamp(56px, 5.5vw, 72px);
  font-size: clamp(14px, 1.3vw, 18px);
  padding: clamp(12px, 1.2vw, 20px) clamp(20px, 2vw, 32px);
}

/* Grid gaps scale proportionally */
.configurator-shape-grid,
.configurator-material-grid {
  gap: clamp(12px, 1.2vw, 24px) !important;
}

/* Section titles scale proportionally */
.configurator-section-title {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
}

/* Tablet responsive layout */
@media screen and (min-width: 750px) and (max-width: 999px) {
  .product {
    max-width: 100% !important;
    padding: 0 var(--container-gutter, 24px) !important;
    gap: 40px !important;
  }
}

/* END OF CLEANED CSS */

/* Additional mobile optimizations */
@media (max-width: 480px) {
  .configurator-quantity-label {
    padding: var(--stickerine-space-3) var(--stickerine-space-4);
  }
  
  .quantity-info-column {
    font-size: var(--stickerine-font-size-sm);
    gap: var(--stickerine-space-1);
  }
  
  .quantity-price-column {
    font-size: var(--stickerine-font-size-base);
    min-width: 60px;
  }
  
  .configurator-quantity-item:hover,
  .configurator-quantity-item.selected {
    transform: translateX(0);
  }
  
  .cart-button-content {
    gap: var(--stickerine-space-4);
    padding: var(--stickerine-space-3) var(--stickerine-space-4);
  }
  
  .cart-button-main .btn-text {
    font-size: var(--stickerine-font-size-base);
  }
  
  .cart-button-main .btn-icon {
    font-size: var(--stickerine-font-size-lg);
  }
  
  .cart-button-price {
    min-width: 100px;
    gap: var(--stickerine-space-1);
  }
  
  .cart-button-price .btn-price {
    font-size: var(--stickerine-font-size-lg);
    padding: var(--stickerine-space-1) var(--stickerine-space-3);
  }
  
  .configurator-add-to-cart {
    min-height: 68px;
  }

  
  .helper-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--stickerine-space-1);
  }
  
  .helper-constraint {
    margin-left: 0;
    white-space: normal;
  }
  
  .size-helper-text {
    padding: var(--stickerine-space-3);
  }
  
  .input-group input[type="number"],
  .input-group select.custom-size-unit {
    width: 100%;
  }
  
  .input-group input[type="number"]:focus,
  .input-group select.custom-size-unit:focus,
  .input-group input[type="number"].error,
  .input-group select.custom-size-unit.error,
  .input-group input[type="number"].error:focus,
  .input-group select.custom-size-unit.error:focus {
    width: 100%;
  }
  
  .configurator-sticky-cart-container.right-positioned {
    bottom: 15px;
    margin-top: 15px;
  }
  
  .configurator-sticky-cart-container.right-positioned .sticky-cart-button {
    padding: 14px 16px;
    border-radius: 10px;
  }
  
  .btn-price {
    font-size: var(--stickerine-font-size-sm);
  }
  
  .btn-quantity {
    font-size: var(--stickerine-font-size-xs);
  }
}

/* Tablet optimizations */
@media (min-width: 641px) and (max-width: 900px) {
  .configurator-shape-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
  }
  
  .configurator-material-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ===================================== */
/* CSS CONTINUATION FILE                */
/* Add this after the main CSS file    */
/* ===================================== */

/* Complete the large desktop media query that was cut off */
@media (min-width: 1200px) {
  .configurator-v2 {
    padding: var(--stickerine-space-10);
  }
  
  .configurator-qr-position-option {
    padding: var(--stickerine-space-3) var(--stickerine-space-4);
    min-height: 40px;
  }
  
  .qr-position-label-compact {
    font-size: var(--stickerine-font-size-sm);
  }
  
  .qr-position-icon-compact {
    width: 20px;
    height: 20px;
  }
  
  /* Scale QR position icons to appear same visual size on mobile */
  img.qr-position-icon.horizontal {
    height: 32px !important;
    width: auto !important;
  }
  
  img.qr-position-icon.vertical {
    height: 26px !important;
    width: auto !important;
    transform: scale(1.2) !important;
  }
  
  .configurator-quantity-label {
    padding: var(--stickerine-space-5) var(--stickerine-space-8);
  }
  
  .quantity-info-column {
    font-size: var(--stickerine-font-size-lg);
  }
  
  .quantity-price-column {
    font-size: var(--stickerine-font-size-xl);
    min-width: 100px;
  }
  
  .cart-button-content {
    gap: var(--stickerine-space-8);
    padding: var(--stickerine-space-6) var(--stickerine-space-8);
  }
  
  .cart-button-price {
    min-width: 140px;
  }
  
  .cart-button-price .btn-price {
    font-size: var(--stickerine-font-size-2xl);
    padding: var(--stickerine-space-3) var(--stickerine-space-5);
  }
  
  .cart-button-price .btn-quantity {
    font-size: var(--stickerine-font-size-base);
  }
  
  .configurator-add-to-cart {
    min-height: 80px;
  }
  
  .configurator-sticky-cart-container.right-positioned {
    bottom: 30px;
    margin-top: 30px;
  }
  
  .configurator-sticky-cart-container.right-positioned .sticky-cart-button {
    padding: 18px 24px;
    font-size: var(--stickerine-font-size-base);
  }
  
  .btn-price {
    font-size: var(--stickerine-font-size-lg);
  }
  
  .btn-quantity {
    font-size: var(--stickerine-font-size-sm);
  }
}

/* ===================================== */
/* ACCESSIBILITY & FOCUS STATES         */
/* ===================================== */
.configurator-shape-option:focus-visible,
.configurator-material-option:focus-visible,
.configurator-qr-position-option:focus-visible,
.configurator-select:focus-visible,
.configurator-add-to-cart:focus-visible {
  outline: 3px solid var(--stickerine-primary);
  outline-offset: 2px;
}

.configurator-add-to-cart:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.configurator-sticky-cart-container.right-positioned .sticky-cart-button:focus-visible {
  outline: 2px solid var(--stickerine-primary);
  outline-offset: 2px;
}

/* ===================================== */
/* ANIMATION KEYFRAMES                   */
/* ===================================== */
@keyframes slideInFromLeft {
  from {
    width: 0;
  }
  to {
    width: 4px;
  }
}

.configurator-quantity-item.selected::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--stickerine-secondary);
  animation: slideInFromLeft 0.3s ease-out;
}

/* ===================================== */
/* UTILITY CLASSES                      */
/* ===================================== */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================== */
/* V2 MODULE INTEGRATION STYLES         */
/* ===================================== */

/* Artwork Section Styling */
.artwork-section {
  width: 100%;
  margin-bottom: var(--stickerine-space-8);
}

.artwork-options {
  display: flex;
  gap: var(--stickerine-space-4);
  margin-bottom: var(--stickerine-space-6);
  flex-wrap: wrap;
}

.artwork-option-btn {
  flex: 1;
  min-width: 120px;
  padding: var(--stickerine-space-4) var(--stickerine-space-6);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-md);
  background: var(--stickerine-white);
  color: var(--stickerine-gray-700);
  font-weight: var(--stickerine-font-weight-medium);
  font-size: var(--stickerine-font-size-sm);
  cursor: pointer;
  transition: all var(--stickerine-transition);
  text-align: center;
}

.artwork-option-btn:hover {
  border-color: var(--stickerine-primary);
  background: var(--stickerine-gray-50);
  transform: translateY(-1px);
}

.artwork-option-btn.active {
  border-color: var(--stickerine-primary);
  background: rgba(99, 102, 241, 0.1);
  color: var(--stickerine-primary);
  font-weight: var(--stickerine-font-weight-semibold);
}

/* Upload Interface */
.upload-dropzone {
  border: 2px dashed var(--stickerine-gray-300);
  border-radius: var(--stickerine-radius-lg);
  padding: var(--stickerine-space-16);
  text-align: center;
  background: var(--stickerine-gray-50);
  transition: all var(--stickerine-transition);
  cursor: pointer;
  margin-bottom: var(--stickerine-space-6);
}

.upload-dropzone:hover,
.upload-dropzone.drag-over {
  border-color: var(--stickerine-primary);
  background: rgba(99, 102, 241, 0.05);
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--stickerine-space-4);
}

.upload-icon {
  font-size: 2.5rem;
  margin-bottom: var(--stickerine-space-4);
}

.upload-text {
  color: var(--stickerine-gray-700);
}

.upload-text strong {
  font-size: var(--stickerine-font-size-lg);
  color: var(--stickerine-gray-900);
}

.upload-text p {
  margin: var(--stickerine-space-4) 0;
  color: var(--stickerine-gray-600);
}

.upload-text small {
  color: var(--stickerine-gray-500);
  font-size: var(--stickerine-font-size-sm);
}

.browse-btn {
  background: none;
  border: none;
  color: var(--stickerine-primary);
  cursor: pointer;
  text-decoration: underline;
  font-weight: var(--stickerine-font-weight-medium);
}

.browse-btn:hover {
  color: var(--stickerine-primary-hover);
}

/* QR Section Styling */
.qr-section {
  width: 100%;
  margin-bottom: var(--stickerine-space-8);
}

.qr-options {
  display: flex;
  gap: var(--stickerine-space-4);
  margin-bottom: var(--stickerine-space-6);
  flex-wrap: wrap;
}

.qr-option-btn {
  flex: 1;
  min-width: 120px;
  padding: var(--stickerine-space-4) var(--stickerine-space-6);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-md);
  background: var(--stickerine-white);
  color: var(--stickerine-gray-700);
  font-weight: var(--stickerine-font-weight-medium);
  font-size: var(--stickerine-font-size-sm);
  cursor: pointer;
  transition: all var(--stickerine-transition);
  text-align: center;
}

.qr-option-btn:hover {
  border-color: var(--stickerine-primary);
  background: var(--stickerine-gray-50);
  transform: translateY(-1px);
}

.qr-option-btn.active {
  border-color: var(--stickerine-primary);
  background: rgba(99, 102, 241, 0.1);
  color: var(--stickerine-primary);
  font-weight: var(--stickerine-font-weight-semibold);
}

/* QR Input Interface */
.qr-input-container {
  display: flex;
  gap: var(--stickerine-space-4);
  align-items: stretch;
}

.qr-url-input {
  flex: 1;
  padding: var(--stickerine-space-4) var(--stickerine-space-5);
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius);
  font-size: var(--stickerine-font-size-base);
  transition: border-color var(--stickerine-transition);
}

.qr-url-input:focus {
  outline: none;
  border-color: var(--stickerine-primary);
  box-shadow: var(--stickerine-shadow-glow);
}

.qr-generate-btn {
  padding: var(--stickerine-space-4) var(--stickerine-space-8);
  background: var(--stickerine-primary);
  color: white;
  border: none;
  border-radius: var(--stickerine-radius);
  font-weight: var(--stickerine-font-weight-medium);
  cursor: pointer;
  transition: all var(--stickerine-transition);
  white-space: nowrap;
}

.qr-generate-btn:hover {
  background: var(--stickerine-primary-hover);
  transform: translateY(-1px);
}

/* Canvas styling */
#artwork-preview-canvas,
#qr-preview-canvas,
#contour-preview-canvas {
  border: 2px solid var(--stickerine-gray-200);
  border-radius: var(--stickerine-radius-md);
  background: white;
  box-shadow: var(--stickerine-shadow-sm);
  max-width: 100%;
  height: auto;
}

/* Mobile responsive for V2 modules */
@media (max-width: 768px) {
  .artwork-options,
  .qr-options {
    flex-direction: column;
  }
  
  .artwork-option-btn,
  .qr-option-btn {
    min-width: auto;
  }
  
  .qr-input-container {
    flex-direction: row;
    gap: var(--stickerine-space-2);
  }
  
  .qr-generate-btn {
    padding: var(--stickerine-space-3) var(--stickerine-space-4);
    font-size: var(--stickerine-font-size-sm);
    min-width: 80px;
  }
  
  .upload-dropzone {
    padding: var(--stickerine-space-12);
  }
  
  .upload-icon {
    font-size: 2rem;
  }
  
  .upload-text strong {
    font-size: var(--stickerine-font-size-base);
  }
  
  #artwork-preview-canvas,
  #qr-preview-canvas,
  #contour-preview-canvas {
    max-width: 280px;
  }
}

/* Force full width layout enforcement */
.configurator-v2,
.configurator-option,
.configurator-shape-grid,
.configurator-material-grid {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}

/* ===================================== */
/* THEME-COMPATIBLE PRODUCT GRID LAYOUT */
/* ===================================== */

/* Fixed-width columns that stay centered and only shrink when constrained */
@media screen and (min-width: 1000px) {
  .product {
    margin: 0 auto !important;
    padding: 0 var(--container-gutter, 24px) !important;
    justify-content: center !important;
    gap: 48px !important;
    /* Use min() to only shrink when screen gets too small */
    max-width: min(1400px, 100vw) !important;
  }
  
  /* Media gets fixed width that only shrinks when screen constrains it */
  .product__media {
    width: min(800px, 45vw) !important;
    --product-media-width: min(800px, 45vw) !important;
    flex: none !important;
  }
  
  /* Info gets fixed width that only shrinks when screen constrains it */  
  .product__info {
    width: min(700px, 40vw) !important;
    --product-info-width: min(700px, 40vw) !important;
    flex: none !important;
  }
}

/* ===================================== */
/* PROPORTIONAL SCALING FOR CONFIGURATOR */
/* ===================================== */

/* Ensure configurator elements maintain proportions */
.product__info {
  /* Base font size that scales with container */
  font-size: clamp(14px, 1.2vw, 16px);
}

/* Shape options with proportional scaling */
.configurator-shape-option {
  /* Use relative units for padding and sizing */
  padding: clamp(12px, 1.5vw, 24px);
  min-height: clamp(80px, 8vw, 120px);
  /* Reduced gap to bring icons closer to labels */
  gap: clamp(4px, 0.4vw, 6px);
}

/* Material options with column layout and proportional scaling */
.configurator-material-option {
  padding: clamp(12px, 1.2vw, 20px);
  min-height: clamp(120px, 12vw, 160px);
  font-size: clamp(13px, 1.1vw, 14px);
  gap: clamp(8px, 0.8vw, 12px);
  /* Change to column layout */
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  justify-content: center !important;
}

/* Material sample circles - fixed 75px size */
.material-sample {
  width: 75px !important;
  height: 75px !important;
  /* No right margin needed in column layout */
  margin: 0 !important;
  /* Ensure samples don't get squished */
  flex-shrink: 0 !important;
}

/* Material option text container */
.material-info {
  /* Proportional padding around text content */
  padding: clamp(4px, 0.4vw, 8px) 0;
  /* Ensure text has proper line height at all sizes */
  line-height: clamp(1.3, 1.4, 1.5);
}

/* Button scaling */
.configurator-add-to-cart {
  min-height: clamp(56px, 5.5vw, 72px);
  font-size: clamp(14px, 1.3vw, 18px);
  padding: clamp(12px, 1.2vw, 20px) clamp(20px, 2vw, 32px);
}

/* Grid gaps scale proportionally */
.configurator-shape-grid,
.configurator-material-grid {
  gap: clamp(12px, 1.2vw, 24px) !important;
}

/* Section titles scale proportionally */
.configurator-section-title {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: clamp(16px, 1.6vw, 24px);
}

/* Tablet responsive layout */
@media screen and (min-width: 750px) and (max-width: 999px) {
  .product {
    max-width: 100% !important;
    padding: 0 var(--container-gutter, 24px) !important;
    gap: 40px !important;
  }
}


/* ===================================== */
/* END OF CSS CONTINUATION              */
/* ===================================== */

