/** Shopify CDN: Minification failed

Line 869:8 Expected ":"

**/
/* ========================================
   PRODUCT HERO SECTION STYLES
   ======================================== */

.product-hero {
  padding: 60px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

/* ========================================
   PRODUCT GALLERY
   ======================================== */

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image {
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  background: #f8f9fa;
}

.main-image img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  display: block;
}

.main-image:hover img {
  transform: scale(1.05);
}

.badge-sale {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff4444;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  z-index: 10;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.thumbnail {
  flex: 0 0 80px;
  height: 80px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0,123,255,0.3);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  font-size: 12px;
}

/* ========================================
   PRODUCT INFO
   ======================================== */

.product-info {
  padding-left: 20px;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.3;
  color: #333;
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-count {
  color: #666;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

/* Feature Badges */
.feature-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-primary {
  background: #007bff;
  color: white;
}

.badge-info {
  background: #17a2b8;
  color: white;
}

/* ========================================
   PRICING
   ======================================== */

.product-pricing {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.price-compare {
  text-decoration: line-through;
  color: #999;
  font-size: 20px;
  margin-right: 10px;
}

.price-current {
  font-size: 36px;
  font-weight: 700;
  color: #ff4444;
}

.price-save {
  display: block;
  color: #28a745;
  font-weight: 600;
  margin-top: 5px;
  font-size: 14px;
}

/* ========================================
   VARIANT SELECTOR
   ======================================== */

.variant-selector {
  margin-bottom: 25px;
}

.variant-selector > label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  font-size: 15px;
}

.variant-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.variant-card {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background: white;
}

.variant-card:hover {
  border-color: #007bff;
  background: #f8f9fa;
}

.variant-card input[type="radio"] {
  margin-right: 12px;
  cursor: pointer;
}

.variant-card input[type="radio"]:checked ~ .variant-label {
  font-weight: 700;
}

.variant-label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.variant-price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* ========================================
   QUANTITY SELECTOR
   ======================================== */

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.quantity-selector > label {
  font-weight: 600;
  font-size: 15px;
}

.qty-input {
  display: flex;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.qty-btn:hover {
  background: #e5e5e5;
}

.qty-input input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.qty-input input::-webkit-inner-spin-button,
.qty-input input::-webkit-outer-spin-button {
  opacity: 1;
}

/* ========================================
   BUTTONS
   ======================================== */

.product-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: #007bff;
  color: white;
  flex: 1;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.btn-lg {
  padding: 18px 35px;
  font-size: 18px;
}

/* ========================================
   TRUST SIGNALS
   ======================================== */

.trust-signals {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.trust-item i {
  color: #28a745;
  font-size: 20px;
}

.trust-item strong {
  color: #333;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .product-info {
    padding-left: 0;
  }
  
  .product-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .product-hero {
    padding: 30px 0;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .price-current {
    font-size: 28px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
/* ========================================
   PRODUCT HERO SECTION
   ======================================== */

.product-hero {
  padding: 60px 0;
  background: #fff;
}

.product-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.product-hero .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.product-hero .col-lg-6,
.product-hero .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
}

/* ========================================
   PRODUCT GALLERY
   ======================================== */

.product-gallery {
  position: sticky;
  top: 100px;
}

.main-image {
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  background: #f8f9fa;
  aspect-ratio: 1 / 1;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  display: block;
}

.main-image:hover img {
  transform: scale(1.05);
}

.badge-sale {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ff4444;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: thin;
}

.thumbnail-gallery::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.thumbnail {
  flex: 0 0 80px;
  height: 80px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0,123,255,0.3);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  font-size: 12px;
  color: #666;
}

.video-thumb svg {
  margin-bottom: 4px;
}

/* ========================================
   PRODUCT INFO
   ======================================== */

.product-info {
  padding-left: 20px;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.3;
  color: #333;
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #ffc107;
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-count {
  color: #666;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}

.rating-count:hover {
  color: #007bff;
}

/* Feature Badges */
.feature-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badge-primary {
  background: #007bff;
  color: white;
}

.badge-info {
  background: #17a2b8;
  color: white;
}

.badge svg {
  flex-shrink: 0;
}

/* ========================================
   PRICING
   ======================================== */

.product-pricing {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-compare {
  text-decoration: line-through;
  color: #999;
  font-size: 20px;
  order: 1;
}

.price-current {
  font-size: 36px;
  font-weight: 700;
  color: #ff4444;
  order: 2;
}

.price-save {
  display: block;
  color: #28a745;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
  order: 3;
}

/* ========================================
   VARIANT SELECTOR
   ======================================== */

.variant-selector {
  margin-bottom: 25px;
}

.variant-selector > label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  font-size: 15px;
  color: #333;
}

.variant-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.variant-card {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  background: white;
  position: relative;
}

.variant-card:hover {
  border-color: #007bff;
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.variant-card.active {
  border-color: #007bff;
  background: #f0f8ff;
}

.variant-card input[type="radio"] {
  margin-right: 12px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  accent-color: #007bff;
}

.variant-card input[type="radio"]:disabled {
  cursor: not-allowed;
}

.variant-label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.variant-label strong {
  color: #333;
  font-size: 15px;
}

.variant-price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.badge-save {
  background: #28a745;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.variant-soldout {
  position: absolute;
  right: 15px;
  background: #dc3545;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

/* ========================================
   QUANTITY SELECTOR
   ======================================== */

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.quantity-selector > label {
  font-weight: 600;
  font-size: 15px;
  color: #333;
}

.qty-input {
  display: flex;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.qty-btn:hover {
  background: #007bff;
  color: white;
}

.qty-btn:active {
  transform: scale(0.95);
}

.qty-btn span {
  line-height: 1;
  display: block;
}

.qty-decrease span {
  font-size: 24px;
}

.qty-input input {
  width: 60px;
  height: 44px;
  border: none;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background: white;
}

.qty-input input::-webkit-inner-spin-button,
.qty-input input::-webkit-outer-spin-button {
  display: none;
}

/* ========================================
   BUTTONS
   ======================================== */

.product-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary {
  background: #007bff;
  color: white;
  flex: 1;
  min-width: 200px;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,123,255,0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 18px 35px;
  font-size: 18px;
}

.add-to-cart {
  position: relative;
  overflow: hidden;
}

.add-to-cart svg {
  flex-shrink: 0;
}

.add-to-cart:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.add-to-cart:disabled:hover {
  box-shadow: none;
}

/* ========================================
   TRUST SIGNALS
   ======================================== */

.trust-signals {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  margin-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.trust-item:last-child {
  margin-bottom: 0;
}

.trust-item svg {
  color: #28a745;
  flex-shrink: 0;
}

.trust-item strong {
  color: #333;
  font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
  .product-hero .col-lg-6,
  .product-hero .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .product-info {
    padding-left: 0;
  }
  
  .product-gallery {
    position: relative;
    top: auto;
  }
  
  .product-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .product-hero {
    padding: 30px 0;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .price-current {
    font-size: 28px;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .feature-badges {
    gap: 8px;
  }
  
  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .variant-card {
    padding: 12px;
  }
  
  .variant-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .trust-item {
    font-size: 13px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-info > * {
  animation: fadeIn 0.5s ease-out;
  animation-fill-mode: both;
}

.product-title {
  animation-delay: 0.1s;
}

.product-rating {
  animation-delay: 0.2s;
}

.feature-badges {
  animation-delay: 0.3s;
}

.product-pricing {
  animation-delay: 0.4s;
}

.variant-selector {
  animation-delay: 0.5s;
}

.product-actions {
  animation-delay: 0.6s;
}

.trust-signals {
  animation-delay: 0.7s;
}
