/** Shopify CDN: Minification failed

Line 572:13 Expected ":"
Line 573:4 Expected identifier but found ","

**/
/* custom css by nard start */
#shopify-section-sections--23621781553316__1731049837c2f732cf {
  display: none;
}
#location-name {
  font-size: 20px;
}
#flyout-store-select {
  background-color: #222; /* Dark background color */
  color: #ec2938; /* Light text color */
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 24px; /* Rounded corners */
  cursor: pointer;
  text-transform: uppercase;
}
#flyout-store-select:hover {
  color: #fff;
}
/* Align banner/slideshow with the header width */

/* General styling for the product card */
.slider__item .card--product {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
  text-align: center;
  max-width: 250px;
}

/* Styling for product image */
.card__media img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Label styling for "Reduced Price" */
.product-label--sold-out {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f55d60;
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Product title styling */
.card__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 10px 0;
}

/* Item number and quantity styling */
.card__info .item-details {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

/* Price styling */
.price__current {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

/* "Add to cart" button styling */
.card__quick-add .btn--primary {
  background-color: #ec2939;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  width: 100%;
}

/* "View details" button styling */
.quick-add-view-btn {
  background-color: #f5f5f5;
  color: #333;
  border: none;
  padding: 10px;
  border-radius: 4px;
  margin-top: 5px;
  display: block;
  width: 100%;
  text-align: center;
}
.slider__grid {
  gap: 8px; /* Default gap for smaller screens */
}

@media (min-width: 768px) {
  .slider__grid {
    gap: 12px; /* Gap for medium screens and up */
  }
}

@media (min-width: 1024px) {
  .slider__grid {
    gap: 16px; /* Gap for larger screens */
  }
}
/* Product Card Styling */
.card--product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow 0.3s ease;
}

.card--product:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Compare Checkbox Styling */
.card__compare {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
}

/* Product Image */
.card__media a {
  display: block;
  padding-top: 100%; /* Square aspect ratio */
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.card__main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card__media:hover .card__main-image {
  transform: scale(1.05);
}

/* Product Title */
.card__title {
  font-size: 16px;
  color: #333;
  margin: 12px 0 4px;
}

.card__title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.card__title a:hover {
  color: #0070f3;
}

/* Price Styling */
.price__current {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.price__was {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}

/* Add to Cart Button */
.card__quick-add button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: #0070f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card__quick-add button:hover {
  background-color: #37bf45;
}

/* View Details Button */
.quick-add-view-btn {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: #0070f3;
  text-decoration: underline;
}

/* Adjust spacing */
.card__info-container {
  padding: 8px 0;
}

.card__info-inner {
  margin-bottom: 8px;
}
/* Flyout Container */
.metastock-flyout {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.metastock-flyout.enabled-shift {
  transform: translateX(0);
}

/* Header Section */
.metastock-flyout-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.metastock-flyout-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.close-flyout-button {
  background: none;
  border: none;
  cursor: pointer;
}

.close-flyout-button .icon-close {
  width: 24px;
  height: 24px;
  fill: #333;
  transition: fill 0.2s ease;
}

.close-flyout-button:hover .icon-close {
  fill: #ff0000;
}

/* Address Search Form */
#metastock-geo-form-container {
  padding: 16px;
}

.metastock-store-search-input {
  width: calc(100% - 90px);
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.metastock-button {
  padding: 8px 16px;
  margin-left: 8px;
  font-size: 16px;
  color: #fff;
  background-color: #0070f3;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.metastock-button:hover {
  background-color: #37bf45;
}

/* Clear Address Button */
.metastock-clear-address-container {
  text-align: right;
  margin-top: 8px;
}

.metastock-button-clear-address {
  background: none;
  border: none;
  color: #666;
  font-size: 14px;
  cursor: pointer;
}

.metastock-button-clear-address:hover {
  color: #ff0000;
}

/* Location List Styling */
.metastock-location-list-container {
  padding: 16px;
  overflow-y: auto;
  max-height: calc(100% - 180px); 
}

.metastock-location-list-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.metastock-location-list-container li {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
}

.metastock-location-list-container li:hover {
  background-color: #f1f1f1;
}

/* Location Information */
.flyout-selection-container h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.flyout-location-information p {
  font-size: 14px;
  color: #666;
  margin: 8px 0 0;
}

/* Store Select Button */
.metastock-store-select-button {
  margin-top: 8px;
  padding: 8px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  background-color: #0070f3;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.metastock-store-select-button:hover {
  background-color: #37bf45;
}

.metastock-store-select-button-disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.button--disabled {
  pointer-events: none;
}
.btn--primary {
  background: #ec2939;
}
.btn--primary:hover {
  background-color: #e0e0e0; 
  color: #333; 
}

/* Cart Icon */
#cart-icon{
  color:#ec2939;
}

/* Drop Shipping Program */
.btn--extra-narrow {
  display: inline-block;
  padding: 5px 10px;
  /* font-size: 16px; */
  color: white;
  text-decoration: none;
  border: 2px solid #ec2939;
  border-radius: 25px;
  background-color:#333;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.btn--extra-narrown:hover {
  background-color: #ec2939;
  color: white;
   
}

/* .promo-strip__container{
  background-color:#191919;
  color:#fff;


}
 */
.color-scheme--2 .color-scheme {
  background-color:#191919;
}
/* Categories */
.card__collection--arrow{
  display:none;
}

/* Home Page header */
.section__heading {
  color: #ec2939;
  text-align: center;
  position: relative;
  font-size: 1.5em; 
  font-weight: bold; 
}

.section__heading::before,
.section__heading::after {
  content: "";
  position: absolute;
  top: 50%; 
  width: 100px; 
  height: 2px; 
  background-color: #ec2939; 
}

.section__heading::before {
  left: calc(50% - 230px); 
  transform: translateY(-50%);
}

.section__heading::after {
  right: calc(50% - 230px); 
  transform: translateY(-50%);
}


.breadcrumbs {
  display:none;
}

/* featured collections */
.card-link {
    font-size: 16px; 
    font-weight: bold;
    text-decoration: none;
    color: #333; 
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; 
    display: inline-block;
    max-width: 100%; 
}

.price__default {
    font-size: 18px; 
    font-weight: 600;
    color: #000; 
    margin-top: 8px; 
}

.product-inventory__status {
    font-size: 14px; 
    color: #28a745;
    text-transform: uppercase;
    margin-top: 12px;
    font-weight: bold;
}

.card__info-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    height: 100%; 
    background-color: #fff; 
    box-sizing: border-box; 
}

.container.products-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px; 
    padding: 16px; 
    justify-content: center; 
    align-items: start; 
    background-color: #f9f9f9; 
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}


.cleverapps-collections-add-to-cart-variant-selector {
  text-align:center;
}



.cleverapps-collections-add-to-cart-button-super-container{
  display: block !important; /* Or any other value */
  flex-direction: column !important;
}

.cleverapps-collections-add-to-cart-quantity-selector-plus-button{
  align-items:right !important;
}
.cleverapps-collections-add-to-cart-quantity-selector-container{
  display: block !important; /* Or any other value */
  flex-direction: column !important;
  border-style: none !important;
  margin: 0px 0px 0px 0px !important;
}

.cleverapps-collections-add-to-cart-quantity-selector-container,
.cleverapps-collections-add-to-cart-quantity-selector-container * {
    overflow-wrap: normal !important;
    white-space: normal !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    letter-spacing: 0px !important;
    height: 40px;
     min-height: 40px;
     font-family: Lato, &quot;
    Helvetica Neue&quot;
    , Arial, Helvetica, sans-serif;
    /* font-size: medium !important;
    color: inherit !important;
    background-color: transparent !important;
    border: none !important;
    margin: 0 !important;
    display: block !important;
    padding: 0 !important; */
}
/* custom css by nard end */
