/** Shopify CDN: Minification failed

Line 683:15 Unexpected "{"
Line 683:24 Expected ":"

**/
/* ============================================
   ALPHA PRODUCT SLIDER - SHOPIFY DAWN THEME
   Responsive CSS matching provided screenshot
   ============================================ */

/* Section Base Styles */
.alpha-product-slider {
  padding: 20px 0;
  overflow: hidden;
  background: #262b2f;
}
.price-item--regular{
  color: #232323 !important;
  opacity: 0.5;
}

.alpha-slider-wrapper {
  position: relative;
}
.alpha-quick-add-standard{
  display: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.alpha-header {
  text-align: center;
  margin-bottom: 40px;
}

.alpha-headline {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aeb5c4;
  margin-bottom: -8px;
}

.alpha-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

/* ============================================
   SLIDER CONTAINER & NAVIGATION
   ============================================ */

.alpha-slider-container {
  position: relative;
  padding: 0 50px;
}

/* Slick Slider Overrides */
.alpha-product-grid {
  margin: 0 -10px;
}

.alpha-product-grid .slick-slide {
  padding: 0 10px;
  outline: none;
}

.alpha-product-grid .slick-list {
  overflow: hidden;
  padding: 20px 0 !important;
  margin: -20px 0;
}

.alpha-product-grid .slick-track {
  display: flex;
  align-items: stretch;
}

/* Custom Navigation Arrows */
.alpha-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgb(229, 231, 235);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.alpha-arrow:hover {
  background: rgb(249, 250, 251);
  border-color: rgb(209, 213, 219);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.alpha-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.alpha-arrow-prev {
  left: 0;
}

.alpha-arrow-next {
  right: 0;
}

.alpha-arrow svg {
  width: 24px;
  height: 24px;
  color: rgb(31, 41, 55);
}

/* Slick Dots */
.alpha-product-grid .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.alpha-product-grid .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0;
}

.alpha-product-grid .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgb(209, 213, 219);
  border: none;
  cursor: pointer;
  font-size: 0;
  transition: all 0.3s;
}

.alpha-product-grid .slick-dots li.slick-active button {
  background: rgb(31, 41, 55);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   PRODUCT CARD STRUCTURE
   ============================================ */

.alpha-slide {
  height: auto;
}

.alpha-card-wrapper {
  height: 100%;
      
}

.alpha-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
      min-height: 450px;
}

.alpha-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* ============================================
   PRODUCT MEDIA (IMAGE AREA)
   ============================================ */

.alpha-product-media {
  position: relative;
  overflow: hidden;
  background: rgb(249, 250, 251);
  border-radius: 12px 12px 0 0;
}

.alpha-media-link {
  display: block;
  position: relative;
  text-decoration: none;
 
}

.alpha-media {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.alpha-media--square {
  padding-bottom: 100%;
   min-height: 400px;
}

.alpha-media--portrait {
  padding-bottom: 125%;
}

.alpha-product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Secondary Image Hover Effect */
.alpha-card--media .alpha-media--secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}

.alpha-card--media:hover .alpha-media--secondary {
  opacity: 1;
}

.alpha-card--media:hover .alpha-image--fade {
  opacity: 0;
}

/* Image Shape Options */
.alpha-media-shape--round .alpha-media {
  border-radius: 50%;
}

.alpha-media-shape--arch .alpha-media {
  border-radius: 50% 50% 0 0;
}

/* Badge Styles */
.alpha-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  background: white;
  color: rgb(17, 24, 39);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.alpha-swatch{
    display: block !important;
}

.alpha-badge--new {
  background: rgb(239, 68, 68);
  color: white;
}

/* Wishlist Button */
.alpha-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  display: none;
}

.alpha-card:hover .alpha-wishlist-btn {
  opacity: 1;
  transform: translateY(0);
}

.alpha-wishlist-btn:hover {
  background: rgb(254, 226, 226);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.alpha-wishlist-btn svg {
  width: 20px;
  height: 20px;
  color: rgb(239, 68, 68);
  fill: none;
  transition: fill 0.3s;
}

.alpha-wishlist-btn:hover svg {
  fill: rgb(239, 68, 68);
}

/* ============================================
   PRODUCT CONTENT AREA
   ============================================ */

.alpha-content {
  padding: 10px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.alpha-vendor {
  font-size: 12px;
  font-weight: 500;
  color: rgb(107, 114, 128);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.alpha-product-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 12px;
  color: rgb(17, 24, 39);
}

.alpha-title-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}


 .alpha-title-link:hover {
  color: #ddd;
}

/* Rating */
.alpha-rating {
  margin-bottom: 12px;
}

/* Color Swatches */
.alpha-color-swatches {
  display: flex;
  gap: 8px;
  margin: 0 0 10px 0;
  flex-wrap: wrap;
}

.alpha-swatch {
  width: 24px;
  height: 24px;
  border-radius: 20%;
  border: 2px solid rgb(229, 231, 235);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.alpha-swatch:hover {
  transform: scale(1.15);
  border-color: rgb(31, 41, 55);
}

.alpha-swatch::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid transparent;
  border-radius: 20%;
  transition: border-color 0.3s;
}

.alpha-swatch:hover::after {
  border-color: #ddd;
}

/* Description */
.alpha-description {
  font-size: 14px;
  line-height: 1.5;
  color: rgb(107, 114, 128);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: none;
}

/* Price */
.alpha-price-wrapper {
  margin-bottom: 16px;
  margin-top: auto;
}

.alpha-price {
  font-size: 14px;
  font-weight: 400;
  color: rgb(17, 24, 39);
}

.alpha-price .price__sale {
  color: #232323;
  font-weight: 600;
}

.alpha-price .price__regular {
  text-decoration: line-through;
  color: rgb(156, 163, 175);
  font-size: 12px;
  margin-left: 8px;
}

/* ============================================
   QUICK ADD BUTTONS
   ============================================ */

/* Standard Quick Add Button */
.alpha-quick-add-standard {
  width: 100%;
}

.alpha-quick-view-btn {
  width: 100%;
  padding: 12px 20px;
  background: rgb(17, 24, 39);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alpha-quick-view-btn:hover:not(:disabled) {
  background: rgb(31, 41, 55);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.alpha-quick-view-btn:disabled {
  background: rgb(209, 213, 219);
  cursor: not-allowed;
}

/* Bulk Quick Add with Quantity */
.alpha-quick-add-bulk {
  width: 100%;
}

.alpha-quantity-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.alpha-quantity {
  display: flex;
  align-items: center;
  border: 1px solid rgb(229, 231, 235);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.alpha-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.alpha-qty-btn:hover {
  background: rgb(243, 244, 246);
}

.alpha-qty-btn svg {
  width: 16px;
  height: 16px;
  color: rgb(75, 85, 99);
}

.alpha-qty-input {
  width: 40px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.alpha-qty-input::-webkit-outer-spin-button,
.alpha-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.alpha-add-to-cart-btn {
  flex: 1;
  padding: 10px 16px;
  background: rgb(17, 24, 39);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alpha-add-to-cart-btn:hover:not(:disabled) {
  background: rgb(31, 41, 55);
}

.alpha-add-to-cart-btn:disabled {
  background: rgb(209, 213, 219);
  cursor: not-allowed;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.alpha-quick-add-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.alpha-quick-add-modal.is-open {
  display: flex;
}

.alpha-modal-content {
  position: relative;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  background: white;
  border-radius: 16px;
  padding: 40px;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.alpha-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(243, 244, 246);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}

.alpha-modal-close:hover {
  background: rgb(229, 231, 235);
  transform: rotate(90deg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1199px) */
@media screen and (max-width: 1199px) {
  .alpha-product-slider {
    padding: 40px 0;
  }

  .alpha-slider-container {
    padding: 0 40px;
  }

  .alpha-arrow {
    width: 40px;
    height: 40px;
  }

  .alpha-arrow svg {
    width: 20px;
    height: 20px;
  }

  .alpha-content {
    padding: 12px;
  }

  .alpha-product-title {
    font-size: 15px;
  }

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

/* Mobile (below 750px) */
@media screen and (max-width: 749px) {
  .alpha-product-slider {
    padding: 30px 0;
  }
.alpha-media--square{
    min-height: auto !important;
}
#alpha-slider-{{ section.id }} .price{
  font-size: 1.0rem !important;
}
  .alpha-header {
    margin-bottom: 30px;
  }
   .price-item--regular{
    font-size: 0.8rem !important;
  }

  .alpha-headline {
    font-size: 12px;
  }

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

  .alpha-slider-container {
    padding: 0;
  }

  .alpha-arrow {
    display: none;
  }

  .alpha-product-grid {
    margin: 0 -8px;
  }

  .alpha-product-grid .slick-slide {
    padding: 0 8px;
  }

  .alpha-card {
    border-radius: 8px;
        min-height: 350px;
  }

  .alpha-content {
    padding: 12px;
  }

  .alpha-product-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .alpha-description {
    font-size: 13px;
    margin-bottom: 12px;

  }

  .alpha-price {
    font-size: 15px;
  }

  .alpha-color-swatches {
    gap: 6px;
  }

  .alpha-swatch {
    width: 20px;
    height: 20px;
  }

  .alpha-quick-view-btn,
  .alpha-add-to-cart-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .alpha-badge {
    padding: 4px 8px;
    font-size: 10px;
  }

  .alpha-wishlist-btn {
    width: 32px;
    height: 32px;
  }

  .alpha-wishlist-btn svg {
    width: 18px;
    height: 18px;
  }

  .alpha-modal-content {
    padding: 24px;
    width: 95%;
  }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
  .alpha-title {
    font-size: 20px;
  }
  .alpha-media--square{
    min-height: auto !important;
  }
  .alpha-content {
    padding: 10px;
  }

  .alpha-product-title {
    font-size: 13px;
  }

  .alpha-quantity-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .alpha-quantity {
    width: 100%;
    justify-content: space-between;
  }

  .alpha-qty-input {
    flex: 1;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

/* Loading State */
.alpha-card.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

/* Smooth Transitions */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Focus Styles for Accessibility */
.alpha-arrow:focus-visible,
.alpha-quick-view-btn:focus-visible,
.alpha-add-to-cart-btn:focus-visible,
.alpha-qty-btn:focus-visible,
.alpha-wishlist-btn:focus-visible {
  outline: 2px solid rgb(59, 130, 246);
  outline-offset: 2px;
}