/** Shopify CDN: Minification failed

Line 617:16 Expected identifier but found whitespace
Line 617:17 Unexpected "1px"
Line 1048:0 Expected "}" to go with "{"

**/
/* ===================================
   Product Bundle Section Styles
   =================================== */

.product-bundle-section {
  position: relative;
}

.bundle-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* ===================================
   Products Grid
   =================================== */

.bundle-products {
  flex: 1;
}

.bundle-products .products-grid {
  margin: 0 -10px;
}

.bundle-products .product-item-wrapper {
  padding: 10px;
}

/* Bundle Add Button */
.btn-bundle-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-bundle-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-bundle-add.added {
  background: #4caf50 !important;
  pointer-events: none;
}

.btn-bundle-add.added .btn-icon {
  display: none;
}

.btn-bundle-add .btn-icon {
  font-size: 18px;
  font-weight: bold;
}

/* ===================================
   Bundle Sidebar
   =================================== */

.bundle-sidebar {
  width: 100%;
  max-width: 400px;
}

.bundle-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bundle-card-header,
.bundle-card-body,
.bundle-card-footer {
  padding: 20px;
}

.bundle-card-header {
  border-bottom: 1px solid #e0e0e0;
}

.bundle-card-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #000;
}

.bundle-card-description {
  margin: 0 0 15px;
  font-size: 14px;
  color: #666;
}

.bundle-card-description p {
  margin: 0;
}

.bundle-card-description strong {
  color: #000;
  font-weight: 600;
}

/* ===================================
   Progress Bar
   =================================== */

.bundle-progress {
  margin-top: 15px;
}

.progress-bar-wrapper {
  height: 8px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-bar {
  height: 100%;
  background: #2196f3;
  border-radius: 10px;
  transition: width 0.4s ease, background-color 0.3s ease;
}

.progress-text {
  margin: 0;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

/* ===================================
   Bundle Items List
   =================================== */

.bundle-card-body {
  max-height: 400px;
  overflow-y: auto;
  border-bottom: 1px solid #e0e0e0;
}

/* Custom Scrollbar */
.bundle-card-body::-webkit-scrollbar {
  width: 6px;
}

.bundle-card-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.bundle-card-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.bundle-card-body::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.bundle-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Empty State */
.bundle-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.bundle-empty-state svg {
  margin-bottom: 10px;
}

.bundle-empty-state p {
  margin: 0;
  font-size: 14px;
}

/* Bundle Item */
.bundle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  position: relative;
  transition: background 0.2s ease;
}

.bundle-item:hover {
  background: #f0f0f0;
}

.bundle-item-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.bundle-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-item-details {
  flex: 1;
  min-width: 0;
}

.bundle-item-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bundle-item-price {
  font-size: 13px;
  color: #666;
  font-weight: 500;
  margin-bottom: 6px;
}

/* Quantity Input */
.bundle-item-quantity {
  width: 60px;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}

.bundle-item-quantity:focus {
  outline: none;
  border-color: #2196f3;
}

.bundle-item-quantity-text {
  font-size: 12px;
  color: #666;
}

/* Remove Button */
.bundle-item-remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bundle-item-remove:hover {
  background: #fff;
  color: #f44336;
}

/* ===================================
   Bundle Footer (Pricing & CTA)
   =================================== */

.bundle-card-footer {
  background: #fafafa;
}

.bundle-pricing {
  margin-bottom: 15px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.price-row-total {
  font-size: 18px;
  padding-top: 8px;
  border-top: 1px solid #e0e0e0;
  margin-top: 8px;
}

.price-original {
  color: #999;
}

.price-total {
  color: #000;
}

.savings-row {
  padding: 8px 12px;
  background: #e8f5e9;
  border-radius: 4px;
  margin-top: 10px;
}

.savings-row .savings-text {
  color: #2e7d32;
  font-weight: 500;
}

.savings-row .savings-amount {
  color: #2e7d32;
  font-weight: 700;
}

/* Submit Button */
.btn-bundle-submit {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-bundle-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.btn-bundle-submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Bundle Messages
   =================================== */

.bundle-message {
  display: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
}

.bundle-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.bundle-message--error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.bundle-message--warning {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}

.bundle-message--info {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #90caf9;
}

/* ===================================
   Responsive Styles
   =================================== */

@media (max-width: 1024px) {
  .bundle-wrapper {
    flex-direction: column;
  }

  .bundle-sidebar {
    max-width: 100%;
  }

  .bundle-card {
    position: relative !important;
    top: auto !important;
  }
}

@media (max-width: 768px) {
  .bundle-card-header,
  .bundle-card-body,
  .bundle-card-footer {
    padding: 15px;
  }

  .bundle-card-title {
    font-size: 18px;
  }

  .price-row-total {
    font-size: 16px;
  }

  .btn-bundle-submit {
    font-size: 14px;
    padding: 12px 16px;
  }

  .bundle-item {
    padding: 10px;
  }

  .bundle-item-image {
    width: 50px;
    height: 50px;
  }

  .bundle-item-title {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .bundle-wrapper {
    gap: 20px;
  }

  .btn-bundle-add {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* ===================================
   Animations
   =================================== */

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bundle-item {
  animation: slideInUp 0.3s ease;
}

/* ===================================
   Sticky Sidebar Enhancement
   =================================== */

.sticky-top {
  position: sticky;
  transition: top 0.3s ease;
}

@media (min-width: 1025px) {
  .sticky-top {
    top: 100px;
  }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
  .btn-bundle-add,
  .bundle-item-remove,
  .btn-bundle-submit {
    display: none;
  }

  .bundle-card {
    box-shadow: none;
    border: 1px solid #000;
  }
}
/* Bundle Product Wrapper */
.bundle-product-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.bundle-product-wrapper .t4s-product {
  margin-bottom: 0;
}

/* Bundle Add Button */
.bundle-add-wrapper {
  padding: 0 10px;
  margin-top: 10px;
}

.btn-bundle-add {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--primary-color, #000);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-bundle-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

.btn-bundle-add.added {
  background: #4caf50 !important;
  pointer-events: none;
}

.btn-bundle-add.added .btn-icon {
  display: none;
}

.btn-bundle-add .btn-icon {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

/* Bundle Wrapper Layout */
.bundle-wrapper {
  gap: 30px;
  margin-top: 40px;
}

.bundle-products .t4s-products {
  margin: 0 -10px;
}

.bundle-products .t4s-col-item {
  padding: 10px;
}

/* Bundle Sidebar */
.bundle-sidebar {
  position: relative;
}

.bundle-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bundle-card-header,
.bundle-card-body,
.bundle-card-footer {
  padding: 24px;
}

.bundle-card-header {
  border-bottom: 1px solid #e0e0e
  /* Bundle Product Wrapper */
.bundle-product-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.bundle-product-wrapper .t4s-product {
  margin-bottom: 0;
}

/* Bundle Add Button */
.bundle-add-wrapper {
  padding: 0 10px;
  margin-top: 10px;
}

.btn-bundle-add {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--primary-color, #000);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-bundle-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

.btn-bundle-add.added {
  background: #4caf50 !important;
  pointer-events: none;
}

.btn-bundle-add.added .btn-icon {
  display: none;
}

.btn-bundle-add .btn-icon {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

/* Bundle Wrapper Layout */
.bundle-wrapper {
  gap: 30px;
  margin-top: 40px;
}

.bundle-products .t4s-products {
  margin: 0 -10px;
}

.bundle-products .t4s-col-item {
  padding: 10px;
}

/* Bundle Sidebar */
.bundle-sidebar {
  position: relative;
}

.bundle-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bundle-card-header,
.bundle-card-body,
.bundle-card-footer {
  padding: 24px;
}

.bundle-card-header {
  border-bottom: 1px solid #e0e0e0;
  background: #fafafa;
}

.bundle-card-title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.bundle-card-description {
  margin: 0 0 16px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Progress Bar */
.bundle-progress {
  margin-top: 16px;
}

.progress-bar-wrapper {
  height: 10px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar {
  height: 100%;
  background: #2196f3;
  border-radius: 10px;
  transition: width 0.4s ease, background-color 0.3s ease;
}

.progress-text {
  margin: 0;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

/* Bundle Items */
.bundle-card-body {
  max-height: 400px;
  overflow-y: auto;
  border-bottom: 1px solid #e0e0e0;
}

.bundle-card-body::-webkit-scrollbar {
  width: 6px;
}

.bundle-card-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.bundle-card-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.bundle-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Empty State */
.bundle-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.bundle-empty-state svg {
  margin-bottom: 16px;
  opacity: 0.5;
}

.bundle-empty-state p {
  margin: 0;
  font-size: 15px;
  color: #999;
}

/* Bundle Item */
.bundle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: background 0.2s ease;
  animation: slideInUp 0.3s ease;
}

.bundle-item:hover {
  background: #f0f0f0;
}

.bundle-item-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
}

.bundle-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bundle-item-details {
  flex: 1;
  min-width: 0;
}

.bundle-item-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
}

.bundle-item-price {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-bottom: 8px;
}

.bundle-item-quantity {
  width: 70px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

.bundle-item-quantity:focus {
  outline: none;
  border-color: #2196f3;
}

.bundle-item-remove {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.bundle-item-remove:hover {
  background: #fff;
  color: #f44336;
}

/* Footer */
.bundle-card-footer {
  background: #fafafa;
}

.bundle-pricing {
  margin-bottom: 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
}

.price-row-total {
  font-size: 20px;
  padding-top: 12px;
  border-top: 2px solid #ddd;
  margin-top: 12px;
}

.price-original {
  color: #999;
  text-decoration: line-through;
}

.savings-row {
  padding: 12px 16px;
  background: #e8f5e9;
  border-radius: 6px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.savings-row .savings-text {
  color: #2e7d32;
  font-weight: 600;
  font-size: 14px;
}

.savings-row .savings-amount {
  color: #2e7d32;
  font-weight: 700;
  font-size: 16px;
}

/* Submit Button */
.btn-bundle-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-color, #000);
  color: #fff;
}

.btn-bundle-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-bundle-submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Messages */
.bundle-message {
  display: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
}

.bundle-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.bundle-message--error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.bundle-message--warning {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffcc80;
}

.bundle-message--info {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #90caf9;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .bundle-wrapper {
    flex-direction: column;
  }
  
  .bundle-sidebar {
    margin-top: 30px;
  }
  
  .bundle-card {
    position: relative !important;
    top: auto !important;
  }
}

@media (max-width: 768px) {
  .bundle-card-header,
  .bundle-card-body,
  .bundle-card-footer {
    padding: 16px;
  }
  
  .bundle-card-title {
    font-size: 20px;
  }
  
  .price-row-total {
    font-size: 18px;
  }
  
  .btn-bundle-submit {
    padding: 14px 20px;
    font-size: 14px;
  }
}
