/** Shopify CDN: Minification failed

Line 31:2 Expected ":"
Line 32:2 Expected ":"
Line 33:2 Expected ":"

**/
/* Custom styles for Featured Product section - Desktop Only */
@media screen and (min-width: 768px) {
  /* This makes the container wider */
  .cc-featured-product .container {
    max-width: 1400px; /* Adjust this value as needed */
    padding-left: 20px;
    padding-right: 20px;
  }

  /* This is the border style from before */
  .cc-featured-product .product.media-with-text {
    border-radius: 25px !important;
    padding: 24px !important;
    border: 1px solid #E5E7EB !important;
    background-color: #ffffff !important;
    box-shadow: none !important;
  }
}

/* --- Make all image containers rounded (but not product images) --- */
.media:not(.product__media),
[class*="--media"]:not(.product__media),
[class*="__media"]:not(.product__media) {
  border-radius: 16px !important;
  overflow: hidden !important;
  -webkit-mask-image: -webkit-radial-gradient(white, black) !important; /* Safari fix */
}

/* --- EXCEPTION: Keep slideshow containers square --- */
.slideshow .media,
.slideshow [class*="--media"],
.slideshow [class*="__media"] {
  border-radius: 0 !important;
}


article.card.card--article {
    border: 1px solid #DEDDDD; /* A nice light grey border */
    border-radius: 24px;
    overflow: hidden; /* Ensures contents stay within rounded border */
    background-color: var(--color-background);
}

/* 2. Add padding around the image container *inside* the card */
article.card.card--article .card__media {
    padding: 10px; /* Adjust this value as needed for more/less space around the image */
}

/* 3. Slightly larger font size for the blog post title */
article.card.card--article .card__title {
    font-size: 1.50rem; /* Increased slightly for better readability */
    line-height: 1.4;
    font-weight: 600;
}

/* 4. Ensure standard padding for the text content inside the card */
article.card.card--article .card__info {
    padding: 1.5rem;
}

/* 5. Add equal spacing (padding) around the cards on smaller screens */
@media (max-width: 768px) {
  .cc-featured-blog .container,
  .cc-main-blog .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Add padding to the multi-column images */
.padded-images .card__media {
  padding: 15px;
  box-sizing: border-box;
}

/* --- Fix for Featured Product Button Margin --- */
.cc-featured-product .shopify-payment-button__button {
  margin-top: 0 !important;
}

.cc-featured-product .shopify-payment-button {
  margin-top: 0 !important;
}


/* --- 
  FINAL Fix for "Buy Now" button text in Featured Product.
  This version hides text without collapsing the button.
--- */

/* 1. Make the button a container and hide original text */
.cc-featured-product .shopify-payment-button__button--unbranded {
  position: relative;
  /* Hides the original "Buy it now" text */
  color: transparent !important;
}

/* 2. Add the new "Buy Now" text */
.cc-featured-product .shopify-payment-button__button--unbranded::after {
  content: "Buy Now";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Set text color to white */
  color: #2A0001 !important; 
  
  /* Restore font styles for the new text */
  font-size: var(--btn-text-size); 
  font-weight: 700;
  line-height: 1.2em;
  text-transform: var(--btn-text-transform, none);
}