/** Shopify CDN: Minification failed

Line 195:0 Unexpected "}"

**/
.product-recommendations .card__media img,
.related-products .card__media img {
  object-fit: contain !important;
  object-position: center !important;
  padding: 4px;
}

/* LC Manual Related Products - prevent product image cropping */
img {
  object-fit: contain;
}


/* Make the carousel products stack vertically */
#mrp-carousel .glide__slides {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Individual product row */
#mrp-carousel .mrp-product-card {
    display: grid !important;
    grid-template-columns: 64px minmax(0, 1fr) 110px;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;

    width: 100% !important;
    margin: 0 !important;
    padding: 12px;

    border-bottom: 2px solid #e5e5e5;
    box-sizing: border-box;
}

/* IMAGE
   The first direct <a> inside the card contains the product image */
#mrp-carousel .mrp-product-card > a:first-child {
    grid-column: 1;
    grid-row: 1 / 3;

    display: block;
    width: 64px;
    height: 64px;
}

/* Override the existing aspect-ratio spacer */
#mrp-carousel .mrp-product-card .mrp-image-container {
    width: 64px;
    height: 64px;
}

#mrp-carousel .mrp-product-card .mrp-image--spacer {
    width: 64px;
    height: 64px;
    padding-bottom: 0 !important;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

#mrp-carousel .mrp-product-card .mrp-product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    position: static !important;
}


/* PRODUCT TITLE */
#mrp-carousel .mrp-product-title {
    grid-column: 2;
    grid-row: 1;

    margin: 0 0 4px !important;
    align-self: end;

    font-size: 14px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    font-weight: 600 !important;
}


/* PRICE */
#mrp-carousel .mrp-product-price {
    grid-column: 2;
    grid-row: 2;

    margin: 0 !important;
    align-self: start;

    font-size: 14px !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}


/* ADD BUTTON */
#mrp-carousel .mrp-product-cta-wrapper {
    grid-column: 3;
    grid-row: 1 / 3;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#mrp-carousel .mrp-product-cta {
    width: 110px !important;
    min-height: 36px;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 4px;
    background: #d7a963!important;
    color: #fff !important;

    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
}


/* Optional: added/disabled state */
#mrp-carousel .mrp-product-cta:disabled {
    background: #898782 !important;
    opacity: 1;
}


/* Mobile adjustment */
@media (max-width: 480px) {
    #mrp-carousel .mrp-product-card {
        grid-template-columns: 64px minmax(0, 1fr) 108px;
        column-gap: 12px;
        padding: 12px;
    }

    #mrp-carousel .mrp-product-cta {
        width: 108px !important;
    }
}


#mrp-carousel .mrp-product-card .mrp-product-image {
  position: absolute!important; 
}

#mrp-carousel .mrp-product-cta {
    position: relative;
    vertical-align: middle;
    top: -10px;
}

#mrp-carousel .mrp-product-card {
  border-bottom: 0; 
}

h2.mrp-title {
    font-size: 24px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.mrp-product-title a {
    text-decoration: none;
    color: inherit;
    font-size: 18px;
    font-weight: 300;
}

.mrp-related-products-section {
  padding-top: 0!important; 
}


/*PRODUCTS  */

.product--title {
  font-size: 20px;
}
.product--price {
  font-size: 17px;
}
}

.featured-collection--title {
  text-align: left;
}

.footer-logo-img {
  max-width: 150px; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
}

.footer-logo {
  text-align: center; /* Center the logo */
  margin-bottom: 10px; /* Add space below the logo */
}

.footer-social-icons {
  display: flex; /* Arrange icons in a row */
  justify-content: flex-start; /* Align icons to the left */
  align-items: center; /* Vertically align icons */
  gap: 5px; /* Reduce space between icons */
  margin-top: 10px; /* Space between logo and icons */
  margin-left: 20px; /* Adjust left margin for positioning */
}

.footer-social-icons img {
  width: 35px; /* Standard icon size */
  height: 35px; /* Standard icon size */
  object-fit: contain; /* Ensure proper scaling of the SVG */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.footer-social-icons img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

