/** Shopify CDN: Minification failed

Line 547:10 Unexpected "{"
Line 547:19 Expected ":"
Line 548:14 Expected identifier but found whitespace
Line 548:16 Unexpected "{"
Line 548:25 Expected ":"
Line 548:51 Expected ":"
Line 549:17 Expected identifier but found whitespace
Line 549:19 Unexpected "{"
Line 549:28 Expected ":"
Line 549:57 Expected ":"
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:main-collection-product-grid (INDEX:39, SCOPED:FALSE) */
/* COLLECTION PRODUCT CARDS - EXACT CAROUSEL STYLE */
.collection-grid-custom {
  gap: 30px 20px ;
}

.coll-product-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* EXACT ASPECT RATIO AS CAROUSEL */
.coll-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #5a5a5a;
}

.coll-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coll-product-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Second Image Hover Effect - EXACT AS CAROUSEL */
.coll-image-primary {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.coll-image-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coll-product-card:hover .coll-image-primary {
  transform: scale(1.05);
}

.coll-product-card:hover .coll-image-secondary {
  opacity: 1;
}

/* Sale Badge - EXACT AS CAROUSEL */
.coll-badge-sale {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 1px;
  background: #c00;
  color: white;
}

/* Quick View Button - EXACT AS CAROUSEL */
.coll-qv-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #000;
  border: 1px solid #000;
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 3;
  white-space: nowrap;
  text-transform: uppercase;
}

.coll-product-card:hover .coll-qv-button {
  opacity: 1;
}

.coll-qv-button:hover {
  background: #761834;
  color: white;
  border-color: #761834;
}

/* Product Info - EXACT AS CAROUSEL */
.coll-product-info {
  padding: 24px 12px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.coll-product-title {
   margin: 0 0 10px 0;
    font-size:28px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    min-height: 36px;
}

.coll-product-title a {
  color: #761834;
  text-decoration: none;
  transition: color 0.3s ease;
}

.coll-product-title a:hover {
  color: #761834;
}

.coll-product-price {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.coll-price-compare {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 15px;
}

.coll-price-sale {
  color: #c00;
  font-weight: 600;
}

.coll-price-regular {
  color: #000;
  font-weight: 400;
}

/* Quick View Modal */
.coll-qv-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.coll-qv-modal.active {
  display: block !important;
}

.coll-qv-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 999998;
  transition: background 0.3s ease;
  cursor: pointer;
}

.coll-qv-modal.active .coll-qv-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.coll-qv-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 999999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coll-qv-modal.active .coll-qv-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.coll-qv-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  font-size: 36px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  transition: background 0.3s ease;
  line-height: 1;
  color: #000;
  font-weight: 300;
}

.coll-qv-close:hover {
  background: #761834;
  color:  #FDFDFE;
}

.coll-qv-body {
  padding: 50px 40px 40px;
  min-height: 200px;
}

.coll-qv-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.coll-qv-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: collSpin 0.8s linear infinite;
}

@keyframes collSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.coll-qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.coll-qv-images {
  position: sticky;
  top: 20px;
}

.coll-qv-main-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 16px;
  position: relative;
}

.coll-qv-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coll-qv-main-img img.loaded {
  opacity: 1;
}

.coll-qv-img-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: collSpin 0.8s linear infinite;
}

.coll-qv-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.coll-qv-thumb {
  aspect-ratio: 1;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f5f5f5;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}

.coll-qv-thumb.active {
  border-color: #000;
}

.coll-qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coll-qv-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coll-qv-title {
   font-size: 40px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #761834;
  text-transform: capitalize;
}

.coll-qv-price-display {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

.coll-qv-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coll-qv-qty-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.coll-qv-qty-row label {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.coll-qv-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}

.coll-qv-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: white;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s;
}

.coll-qv-qty-btn:hover {
  background: #f5f5f5;
}

.coll-qv-qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 16px;
}

.coll-qv-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coll-qv-add-btn {
  width: 100%;
  padding: 18px 32px;
  background: #000;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.coll-qv-add-btn:hover:not(:disabled) {
  background: #761834;
}

.coll-qv-add-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.coll-qv-view-link {
  text-align: center;
  padding: 12px;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid #ddd;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
}

.coll-qv-view-link:hover {
  background: #f5f5f5;
  border-color: #000;
}

/* Remove focus outlines */
.coll-qv-button:focus,
.coll-qv-close:focus,
.coll-qv-thumb:focus,
.coll-qv-qty-btn:focus,
.coll-qv-add-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .coll-qv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .coll-qv-body {
    padding: 40px 30px 30px;
  }

  
  .coll-qv-images {
    position: static;
  }
}

@media screen and (max-width: 749px) {
  .collection-grid-custom {
    gap: 20px 16px;
  }
  
  .coll-qv-button {
    font-size: 11px;
    padding: 12px 28px;
    bottom: 16px;
  }
  
  .coll-product-info {
    padding: 20px 10px 16px;
  }
  
  .coll-product-title {
    min-height: 32px;
    font-size: 20px;
  }
  
  .coll-product-price {
    font-size: 14px;
  }
  
  .coll-qv-body {
    padding: 30px 20px 20px;
  }
  
  .coll-qv-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
  
  .coll-qv-content {
    width: 95%;
  }
  
  .coll-qv-grid {
    gap: 25px;
  }
  
  
  .coll-qv-price-display {
    font-size: 18px;
  }
}
/* END_SECTION:main-collection-product-grid */

/* START_SECTION:product-carousel-modular (INDEX:57, SCOPED:FALSE) */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.product-carousel-wrapper {
  position: relative;
  overflow: hidden;

}

.page-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.carousel-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 600;
  color: #761834;

}

.product-carousel-container {
  position: relative;
  padding: 0 60px;
}

.product-carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.carousel-item {
  flex: 0 0 auto;
  min-width: 0;
}

.product-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
  background-color: #f5f5f5;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover; /* This crops the image to fill the container */
  object-position: center; 
}

.product-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
}

/* Second Image Hover Effect */
.product-image-primary {
  transition: none;
}

.product-image-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image-primary {
  transform: scale(1.05);
}

.product-card:hover .product-image-secondary {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 1px;
}

.new-badge {
  background: #761834;
  color: white;
}

.quick-view-trigger {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #000;
  border: 1px solid #000;
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 3;
  white-space: nowrap;
  text-transform: uppercase;
}

.product-card:hover .quick-view-trigger {
  opacity: 1;
}

.quick-view-trigger:hover {
  background: #761834;
  color: white;
  border: 1px solid  #761834
}

.product-info {
  padding: 24px 12px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-title {
     margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    min-height: 36px;
}

.product-title a {
  color: #761834;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #761834;
}

.product-price {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.price-compare {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 15px;
}

.price-sale {
  color: #c00;
  font-weight: 600;
}

.price-regular {
  color: #000;
  font-weight: 400;
}

.carousel-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #F9E0EC;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: #F9E0EC;
}

.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  color: #000;
}

/* Quick View Modal - SMOOTH ANIMATIONS */
.qv-modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.qv-modal-container.qv-active {
  display: block !important;
}

.qv-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 999998;
  transition: background 0.3s ease;
  cursor: pointer;
}

.qv-modal-container.qv-active .qv-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.qv-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 999999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qv-modal-container.qv-active .qv-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.qv-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  font-size: 36px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  transition: background 0.3s ease;
  line-height: 1;
  color: #000;
  font-weight: 300;
}

.qv-close:hover {
  background: #761834;
  color:#FDFDFE;
}

.qv-body {
  padding: 50px 40px 40px;
  min-height: 200px;
}

/* Loading State */
.qv-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.qv-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: qvSpin 0.8s linear infinite;
}

@keyframes qvSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.qv-images {
  position: sticky;
  top: 20px;
}

.qv-main-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 16px;
  position: relative;
}

.qv-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.qv-main-img img.loaded {
  opacity: 1;
}

.qv-main-img .qv-img-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: qvSpin 0.8s linear infinite;
}

/* Thumbnails */
.qv-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.qv-thumb {
  aspect-ratio: 1;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f5f5f5;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}

.qv-thumb.active {
  border-color: #000;
}

.qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qv-title {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #761834;
  text-transform: capitalize;
}

.qv-price {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

.qv-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qv-qty-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qv-qty-wrap label {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qv-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}

.qv-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: white;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s;
}

.qv-qty-btn:hover {
  background: #f5f5f5;
}

.qv-qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 16px;
}

.qv-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qv-add-btn {
  width: 100%;
  padding: 18px 32px;
  background: #000;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.qv-add-btn:hover:not(:disabled) {
  background: #761834;
}
.qv-title:hover{
    color:  #761834;
}

.qv-add-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.qv-view-link {
  text-align: center;
  padding: 12px;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid #ddd;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
}

.qv-view-link:hover {
  background: #f5f5f5;
  border-color: #000;
}

@media screen and (max-width: 989px) {
  .product-carousel-container {
    padding: 0 50px;
  }
  .carousel-title {
    margin-bottom: 30px;
  }
  .carousel-nav {
    width: 44px;
    height: 44px;
  }
  .qv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .qv-body {
    padding: 40px 30px 30px;
  }

  .qv-images {
    position: static;
  }
}

@media screen and (max-width: 749px) {
  .product-carousel-container {
    padding: 0 40px;
  }
  .carousel-title {
    margin-bottom: 24px;
  }
  .carousel-track {
    gap: 16px;
  }
  .quick-view-trigger {
    font-size: 11px;
    padding: 12px 28px;
    bottom: 16px;
  }
  .product-info {
    padding: 20px 10px 16px;
  }
  .product-title {
    font-size: 20px;
    min-height: 32px;
  }
  .product-price {
    font-size: 14px;
  }
  .qv-body {
    padding: 30px 20px 20px;
  }
  .qv-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
  .qv-content {
    width: 95%;
  }
  .qv-grid {
    gap: 25px;
  }

  .qv-price {
    font-size: 18px;
  }
}
*:focus-visible {
       outline: none !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
}
@media screen and (max-width: 480px) {
  .product-carousel-container {
    padding: 0 35px;
  }
  .carousel-nav {
    width: 38px;
    height: 38px;
  }
  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }
  .product-badge {
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    font-size: 10px;
  }
}
/* END_SECTION:product-carousel-modular */

/* START_SECTION:product-related-carousel (INDEX:58, SCOPED:FALSE) */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.related-products-wrapper {
  position: relative;
  overflow: hidden;

}

.page-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 600;
  color: #761834;
}

.related-carousel-container {
  position: relative;
  padding: 0 60px;
}

.related-carousel {
  overflow: hidden;
  position: relative;
}

.related-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.related-item {
  flex: 0 0 auto;
  min-width: 0;
}

.product-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #5a5a5a;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}



.product-image-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-image-primary {
  transform: scale(1.05);
}

.product-card:hover .product-image-secondary {
  opacity: 1;
}

.quick-view-trigger {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #000;
  border: 1px solid #000;
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 3;
  white-space: nowrap;
  text-transform: uppercase;
}

.product-card:hover .quick-view-trigger {
  opacity: 1;
}

.quick-view-trigger:hover {
  background: #761834;
  color: white;
  border: 1px solid  #761834
}

.product-info {
  padding: 24px 12px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-title {
     margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1.4;
    min-height: 36px;
}

.product-title a {
  color: #761834;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #761834;
}

.product-price {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.price-compare {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 15px;
}

.price-sale {
  color: #c00;
  font-weight: 600;
}

.price-regular {
  color: #000;
  font-weight: 400;
}

.related-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.related-nav:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: #999;
}

.related-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.related-prev {
  left: 0;
}

.related-next {
  right: 0;
}

.related-nav svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.no-related {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 16px;
}

/* Quick View Modal - SMOOTH ANIMATIONS */
.qv-modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

.qv-modal-container.qv-active {
  display: block !important;
}

.qv-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 999998;
  transition: background 0.3s ease;
  cursor: pointer;
}

.qv-modal-container.qv-active .qv-overlay {
  background: rgba(0, 0, 0, 0.75);
}

.qv-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 999999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qv-modal-container.qv-active .qv-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.qv-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border: none;
  font-size: 36px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  transition: background 0.3s ease;
  line-height: 1;
  color: #000;
  font-weight: 300;
}

.qv-close:hover {
  background: #761834;
  color:#FDFDFE;
}

.qv-body {
  padding: 50px 40px 40px;
  min-height: 200px;
}

.qv-loading-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.qv-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000;
  border-radius: 50%;
  animation: qvSpin 0.8s linear infinite;
}

@keyframes qvSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.qv-images {
  position: sticky;
  top: 20px;
}

.qv-main-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 16px;
  position: relative;
}

.qv-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.qv-main-img img.loaded {
  opacity: 1;
}

.qv-main-img .qv-img-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #000;
  border-radius: 50%;
  animation: qvSpin 0.8s linear infinite;
}

.qv-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.qv-thumb {
  aspect-ratio: 1;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f5f5f5;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}

.qv-thumb.active {
  border-color: #000;
}

.qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qv-title {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: #761834;
  text-transform: capitalize;

}


.qv-price {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
}

.qv-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qv-qty-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qv-qty-wrap label {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qv-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}

.qv-qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: white;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s;
}

.qv-qty-btn:hover {
  background: #f5f5f5;
}

.qv-qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 16px;
}

.qv-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qv-add-btn {
  width: 100%;
  padding: 18px 32px;
  background: #000;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.qv-add-btn:hover:not(:disabled) {
  background: #761834;
}
.qv-title:hover{
    color:  #761834;
}

.qv-add-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.qv-view-link {
  text-align: center;
  padding: 12px;
  color: #000;
  text-decoration: none;
  font-size: 13px;
  border: 1px solid #ddd;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
}

.qv-view-link:hover {
  background: #f5f5f5;
  border-color: #000;
}

/* Remove ALL focus outlines - FIXED */
*:focus,
*:focus-visible,
button:focus,
a:focus,
input:focus,
.qv-thumb:focus,
.quick-view-trigger:focus,
.related-nav:focus {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
}

@media screen and (max-width: 989px) {
  .related-carousel-container {
    padding: 0 50px;
  }
  .related-title {
    margin-bottom: 30px;
  }
  .related-nav {
    width: 44px;
    height: 44px;
  }
  .qv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .qv-body {
    padding: 40px 30px 30px;
  }

  .qv-images {
    position: static;
  }
}

@media screen and (max-width: 749px) {
  .related-carousel-container {
    padding: 0 40px;
  }
  .related-title {
    margin-bottom: 24px;
  }
  .related-track {
    gap: 16px;
  }
  .quick-view-trigger {
    font-size: 11px;
    padding: 12px 28px;
    bottom: 16px;
  }
  .product-info {
    padding: 20px 10px 16px;
  }
  .product-title {
    font-size: 20px;
    min-height: 32px;
  }
  .product-price {
    font-size: 14px;
  }
  .qv-body {
    padding: 30px 20px 20px;
  }
  .qv-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
  .qv-content {
    width: 95%;
  }
  .qv-grid {
    gap: 25px;
  }

  .qv-price {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .related-carousel-container {
    padding: 0 35px;
  }
  .related-nav {
    width: 38px;
    height: 38px;
  }
  .related-nav svg {
    width: 20px;
    height: 20px;
  }
}
/* END_SECTION:product-related-carousel */