/** Shopify CDN: Minification failed

Line 127:10 Expected identifier but found whitespace
Line 127:15 Unexpected ";"

**/
/* Free Swatches Page Styles */

[v-cloak] {
  display: none;
}

.free-swatches-wrapper {
  padding: 0;
  background: #fff;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.page-width-full {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Filters Bar */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 5;
}

@media (max-width: 768px) {
  .filters-bar {
    padding: 12px 16px;
    flex-wrap: wrap;
  }
}

.filters-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filters-toggle:hover {
  background: #f9fafb;
}

.filters-groups {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 400px;
  background: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  overflow-y: auto;
  z-index: 700;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
}

.filters-groups.show {
  transform: translateX(0);
}

.filters-header {
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 8px;
}

.filters-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filters-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 699;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.filters-overlay.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
}
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.checkbox-item:hover {
  background: #f9fafb;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--btn-primary-bg-color, #000);
}

.checkbox-item span {
  font-size: 14px;
  color: #4b5563;
  user-select: none;
}

.checkbox-item input[type="checkbox"]:checked + span {
  color: #111827;
  font-weight: 500;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .toggle-switch {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
  }
}

.toggle-switch span {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

@media (max-width: 768px) {
  .toggle-switch span {
    font-size: 15px;
  }
}

.apply-filters-btn {
  display: none;
  width: 100%;
  padding: 14px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .apply-filters-btn {
    display: block;
  }
}

.apply-filters-btn:hover {
  background: #b91c1c;
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #dc2626;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.products-count {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Quick Filters */
.quick-filters {
  display: flex;
  gap: 12px;
  padding: 20px 40px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  overflow-x: auto;
  scrollbar-width: thin;
}

.quick-filters::-webkit-scrollbar {
  height: 6px;
}

.quick-filters::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.quick-filter-btn {
  padding: 8px 20px;
  background: white;
  border: 1.5px solid #d1d5db;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.quick-filter-btn:hover {
  border-color: var(--btn-primary-bg-color, #000);
  color: var(--btn-primary-bg-color, #000);
}

.quick-filter-btn.active {
  background: var(--btn-primary-bg-color, #000);
  border-color: var(--btn-primary-bg-color, #000);
  color: var(--btn-primary-color, #fff);
}

/* Layout */
.swatches-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  min-height: calc(100vh - 80px);
}

/* Main Content */
.swatches-main {
  padding: 40px;
  background: #f9fafb;
  overflow-y: auto;
}

.product-group {
  margin-bottom: 50px;
}

.product-group:last-child {
  margin-bottom: 0;
}

.product-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e5e5;
  gap: 20px;
}

.product-group-title {
  margin: 0;
  font-weight: 700;
  color: #333;
  flex: 1;
}

.view-product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--btn-primary-bg-color, #000);
  color: var(--btn-primary-color, #fff);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-product-btn:hover {
  background: var(--btn-primary-hover-bg-color, #333);
  transform: translateX(2px);
}

.view-product-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.view-product-btn:hover svg {
  transform: translateX(4px);
}

/* Sidebar */
.swatches-sidebar {
  position: sticky;
  top: 80px;
  height: fit-content;
  background: white;
  border-left: 1px solid #e5e7eb;
  padding: 30px 20px;
}

.sidebar-header {
  display: none;
}

.swatches-info-card {
  background: white;
}

.sidebar-title {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--color-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.selected-swatches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  min-height: 200px;
}

.selected-swatch-item {
  position: relative;
  aspect-ratio: 1;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

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

.remove-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.remove-badge:hover {
  background: #b91c1c;
}

.swatch-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 10px;
  padding: 4px;
  text-align: center;
  font-weight: 500;
}

.order-btn {
  width: 100%;
  padding: 16px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-btn:hover:not(:disabled) {
  background: #b91c1c;
}

.order-btn:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

/* Swatches Grid */
.swatches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

/* ==========================================
   RESPONSIVE STYLES - TABLET & MOBILE
   ========================================== */

@media (max-width: 1024px) {
  .swatches-content {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 60px);
  }

  .swatches-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    border-left: none;
    border-top: 2px solid #e5e7eb;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    padding: 0;
    max-height: 60px;
    transition: max-height 0.3s ease;
    background: white;
  }
  
  .swatches-sidebar.expanded {
    max-height: 380px;
  }
  
  .sidebar-header {
    display: block;
    background: white;
    position: relative;
    z-index: 3;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
  }
  
  .sidebar-header h3 {
    font-size: 13px;
    margin: 0;
    color: var(--color-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .toggle-panel-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .swatches-sidebar.expanded .toggle-panel-btn {
    transform: rotate(180deg);
  }
  
  .quick-filters {
    padding: 16px;
    gap: 8px;
  }
  
  .quick-filter-btn {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .swatches-info-card {
    padding: 16px 20px 20px;
    overflow-y: auto;
    max-height: 320px;
    background: white;
  }
  
  .sidebar-title {
    display: none;
  }
  
  .selected-swatches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    min-height: auto;
    max-height: 90vh;
    overflow-y: auto;
    margin-bottom: 12px;
  }
  
  .selected-swatch-item {
    aspect-ratio: 1;
  }
  
  .swatch-label {
    font-size: 9px;
    padding: 3px 2px;
  }
  
  .order-btn {
    padding: 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .swatches-main {
    padding: 20px 16px;
    padding-bottom: 180px;
  }
  
  .product-group {
    margin-bottom: 35px;
  }
  
  .product-group-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .product-group-title {
    font-size: 18px;
    margin-bottom: 0;
  }
  
  .view-product-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .swatches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ==========================================
   SWATCH CARDS
   ========================================== */

.swatch-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid #e5e7eb;
}

.swatch-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.swatch-card.selected {
  border-color: #dc2626;
}

.swatch-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
}

.swatch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-thumbnail {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 2;
}

.swatch-card:hover .swatch-image {
  transform: scale(1.05);
}

.info-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  color: #374151;
}

.swatch-card:hover .info-btn {
  opacity: 1;
}

.info-btn:hover {
  background: white;
  color: #dc2626;
}

.swatch-info {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swatch-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: var(--color-heading);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toggle-btn {
  background: white;
  border: 2px solid #dc2626;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  color: #dc2626;
  flex-shrink: 0;
  margin-left: 8px;
  transition: all 0.2s;
}

.toggle-btn:hover {
  background: #dc2626;
  color: white;
}

.toggle-btn.selected {
  background: #dc2626;
  color: white;
}


/* Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 600;
  padding: 20px;
}

.lightbox-content {
  background: white;
  border-radius: 12px;
  max-width:950px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  z-index: 601;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  padding: 10px;
}

.lightbox-image-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
}

.lightbox-carousel {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: none;
  font-size: 32px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  z-index: 10;
}

.lightbox-close:hover {
  background: #f3f4f6;
  color: #dc2626;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
  z-index: 5;
  color: #333;
  font-weight: 300;
  line-height: 1;
}

.carousel-btn:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 15px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator-dot.active {
  background: var(--btn-primary-bg-color);
  width: 24px;
  height: 8px;
  border-radius: 4px;
}

.indicator-dot:hover {
  background: #999;
}

.lightbox-info {
  display: flex;
  flex-direction: column;
}

/* Swatch Navigation Arrows */
.swatch-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--btn-primary-bg-color);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--btn-primary-color);
}

.swatch-nav-btn:hover {
  background: var(--btn-primary-hover-bg-color);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.swatch-nav-prev {
  left: 20px;
}

.swatch-nav-next {
  right: 20px;
}

@media (max-width: 768px) {
  .swatch-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 28px;
    left: 10px;
  }
  
  .swatch-nav-next {
    right: 10px;
    left: auto;
  }
}

/* Image Carousel Buttons (inside image area) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
  z-index: 5;
  color: #333;
  opacity: 0.7;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 1;
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
  display: none;
  margin-top: 20px;
  gap: 12px;
  padding: 0 20px;
}

@media (min-width: 1025px) {
  .gallery-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .carousel-indicators {
    display: none;
  }
}

.gallery-thumbnail-item {
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f3f4f6;
}

.gallery-thumbnail-item:hover {
  border-color: #9ca3af;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-thumbnail-item.active {
  border-color: var(--btn-primary-bg-color);
  box-shadow: 0 4px 12px var(--btn-primary-bg-color);
}

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

.lightbox-variant-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 20px;
}

.lightbox-variant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-info h2 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lightbox-info h3 {
  font-size: 28px;
  color: var(--color-heading);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.lightbox-details {
  margin-bottom: 24px;
  line-height: 1.6;
  color: var(--globalFontColor2);
}

.lightbox-add-btn {
  width: 100%;
  padding: 16px;
  background: var(--btn-primary-bg-color);
  color: var(--btn-primary-color);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lightbox-add-btn:hover {
  background: var(--btn-primary-hover-bg-color);
}

.lightbox-add-btn.selected {
  background: #374151;
}

.lightbox-add-btn.selected:hover {
  background: #1f2937;
}

/* Lightbox Mobile Styles */
@media (max-width: 768px) {
  .lightbox-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .lightbox-variant-image {
    display: none;
  }
  
  .lightbox-info h2 {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .lightbox-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .lightbox-details {
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
  
  .lightbox-add-btn {
    font-size: 13px;
    padding: 12px;
  }
  
  .gallery-thumbnail {
    width: 45px;
    height: 45px;
    bottom: 6px;
    right: 6px;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #ef4444;
}

.modal-content h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--color-heading);
}

.modal-subtitle {
  font-size: 15px;
  color: var(--globalFontColor2);
  margin-bottom: 30px;
}

/* Form */
.checkout-form {
  margin-top: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.selected-swatches-review {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.selected-swatches-review h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--color-heading);
}

.selected-swatches-review ul {
  list-style: none;
  padding: 0;
}

.selected-swatches-review li {
  padding: 6px 0;
  color: var(--globalFontColor2);
  font-size: 14px;
}

.submit-order-btn {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-order-btn:hover:not(:disabled) {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.submit-order-btn:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

/* Success */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
}

.success-content {
  background: white;
  border-radius: 16px;
  padding: 60px 40px;
  max-width: 500px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--btn-primary-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--btn-primary-color);
  margin: 0 auto 24px;
}

.success-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--color-heading);
}

.success-content p {
  font-size: 16px;
  color: var(--globalFontColor2);
  margin-bottom: 8px;
}

.success-detail {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 24px;
}

.success-btn {
  padding: 14px 32px;
  background: var(--btn-primary-bg-color);
  color: var(--btn-primary-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.success-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Info Section */
.swatches-info-section {
  background: white;
  padding: 60px 30px;
  border-radius: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  text-align: center;
  padding: 30px;
}

.info-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--color-heading);
}

.info-card p {
  font-size: 15px;
  color: var(--globalFontColor2);
  line-height: 1.6;
}
