/** Shopify CDN: Minification failed

Line 23:1 Expected ";" but found "{"
Line 113:2 Comments in CSS use "/* ... */" instead of "//"
Line 117:2 Comments in CSS use "/* ... */" instead of "//"
Line 119:4 Comments in CSS use "/* ... */" instead of "//"
Line 122:4 Comments in CSS use "/* ... */" instead of "//"
Line 127:17 Comments in CSS use "/* ... */" instead of "//"
Line 130:4 Comments in CSS use "/* ... */" instead of "//"
Line 131:16 Comments in CSS use "/* ... */" instead of "//"
Line 145:6 Comments in CSS use "/* ... */" instead of "//"
Line 562:2 Expected "}" to go with "{"

**/

@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
  
    @import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;700&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
@import url("https://use.typekit.net/dmb8kll.css")


*{
  margin:0;
  padding:0;
}
body{
  background-color:#FAF7EB;
  padding:0;
  margin:0;
  font-family: alga, serif;
font-style: normal;
font-weight: 300;
}
h3,h4,h5,h6, p{
  font-family: "muli", sans-serif;
}
h1,h2{

  font-family: "alga", serif;
  font-optical-sizing: auto;  
  font-style: normal;
}
 .custom-collection-title {
      font-family:"alga", serif !important;
    color:#d5878b;
    text-align: center;  
    font-size: 32px;
    font-weight: 600 !important;
  }
/* Responsive Styles */
@media (max-width: 1024px) {
    .custom-collection-title {
        font-size: 28px; /* Slightly smaller on tablets */
    }
}

@media (max-width: 768px) {
    .custom-collection-title {
        font-size: 24px; /* Smaller on mobile */
        font-weight: 500; /* Reduce boldness for better readability */
    }
  .__salemaximize .salemaximize__progress-lable-text{
    left:-250px !important;
  }
}

@media (max-width: 480px) {
    .custom-collection-title {
        font-size: 20px; /* Even smaller on very small screens */
    }
}



 .add-to-cart-btn, .card-read-more, .contact-form-btn {
        font-weight:200;        
  
        display: flex;
        padding: 10px 20px !important;
        background-color: #d5878b !important;
        color: white !important;
        text-decoration: none;
        border: none !important;
        border-radius: 4px;
        cursor: pointer;
   align-items: end;
        transition: background-color 0.3s ease;
      }

      .add-to-cart-btn:hover {
        background-color: #b26a5b;
      }

  .add-to-cart-form, .custom-product-grid__item-form{
    display:flex;
    justify-content:center;
  }
 
a{
  text-decoration:none;
}

h2{
  font-size:34px;
  font-weight:600;
}

.collection-hero__image{
  width:100%;
}
.collection-page {
  // Overall page styles
}

.collection-header {
  // Header styles
  .collection-hero {
    // Hero image and title styles
  }
  .collection-title {
    // Title styles
  }
}

.collection-content {
  display: flex; // Use flexbox for layout
  
  .collection-filters {
    // Filter styles
    width: 25%; // Adjust as needed
    
    .filter-group {
      margin-bottom: 20px;
    }
    
    label {
      display: block;
      margin-bottom: 5px;
    }
    
    select,
    .btn,
    .clear-btn {
      // Style form elements
    }
  }
  
  /* Product grid container */
/* Product grid container */
.collection-products {
  width: 100%;
  max-width: var(--container-width, 1440px);
  margin: 0 auto;
  padding: 0 20px;
}

/* Product grid layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Product card styles */
.product-card {
  position: relative;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

/* Hover effects */
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Product image container */
.product-card__image {
  position: relative;
  padding-bottom: 100%; /* 1:1 Aspect ratio */
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

/* Product image */
.product-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}


/* Image hover zoom effect */
.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

/* Product content */
.product-card__content {
  padding: 16px;
}

/* Product title */
.product-card__title {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price styles */
.product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.price--regular {
  font-weight: 600;
  color: var(--color-text);
}

.price--compare {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-size: 14px;
}

/* Sale badge */
.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  z-index: 1;
}

/* Sold out overlay */
.product-card__sold-out {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-text);
  font-weight: 500;
  z-index: 1;
}

.header-logo {
    margin-left: 25.2% !important;
  }

/* Quick view button */
.product-card__quick-view {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: white;
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-card__quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .collection-products {
    padding: 0 16px;
  }
  
  .product-card__content {
    padding: 12px;
  }
  
  .product-card__quick-view {
    display: none; /* Hide quick view on mobile */
  }
}

@media (max-width: 480px) {
   
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card__title {
    font-size: 15px;
  }
}

/* Loading skeleton styles */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.product-card--loading .product-card__image,
.product-card--loading .product-card__title,
.product-card--loading .product-card__price {
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

.product-card--loading .product-card__title {
  height: 20px;
  width: 80%;
  margin-bottom: 8px;
}

.product-card--loading .product-card__price {
  height: 16px;
  width: 60%;
}

.cart-page {
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.cart-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
}

.cart table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.cart th, .cart td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.cart-item {
  display: flex;
  align-items: center;
}

.cart-item__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.cart-item__image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-right: 20px;
}

.cart-item__title {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.cart-item__variant {
  font-size: 0.9em;
  color: #777;
}

.cart-item__price,
.cart-item__total {
  font-weight: bold;
}

.cart-item__quantity-input {
  width: 60px;
  padding: 5px;
  border: 1px solid #ddd;
}

.cart-item__remove {
  color: #c97f6a; 
  text-decoration: none;
}

.cart-summary {
  margin-bottom: 30px;
}

.cart-summary__subtotal,
.cart-summary__shipping,
.cart-summary__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: bold;
}

.cart-update-btn,
.cart-checkout-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c97f6a;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cart-recommendations {
  text-align: center;
}

.product-item {
  display: inline-block;
  margin: 0 10px; 
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-image img {
  width: 100px; 
  height: auto;
}

  .hero-banner {
  text-align: center;
  color: white;
  padding: 100px 20px;
  background-size: cover;
  background-position: center;
}
#shopify-section-about-us-hero-banner{
  height:300px;
}
  .add-to-cart-btn {
  padding: 10px 20px;
  background-color: #c97f6a;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

  
.search-modal {
  opacity: 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  min-height: calc(100% + var(--inputs-margin-offset) + (2 * var(--inputs-border-width)));
  height: 100%;
}

.search-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 5rem 0 1rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  position: relative;
}

.search-modal__content-bottom {
  bottom: calc((var(--inputs-margin-offset) / 2));
}

.search-modal__content-top {
  top: calc((var(--inputs-margin-offset) / 2));
}

.search-modal__form {
  width: 100%;
}

.search-modal__close-button {
  position: absolute;
  right: 0.3rem;
}

 .slick-prev::before, .slick-next::before{
    font-size:0px!important;
  }

@media screen and (min-width: 750px) {
  .search-modal__close-button {
    right: 1rem;
  }

  .search-modal__content {
    padding: 0 6rem;
  }
}

@media screen and (min-width: 990px) {
  .search-modal__form {
    max-width: 74.2rem;
  }

  .search-modal__close-button {
    position: initial;
    margin-left: 0.5rem;
  }
}
  

  