/** Shopify CDN: Minification failed

Line 129:17 Expected identifier but found whitespace
Line 129:19 Unexpected "{"
Line 129:28 Expected ":"
Line 129:61 Expected ":"

**/
/* Container for the offers */
.black-friday-offer-btn {
    /* Assuming a black background for the page/section, matching the image */
    /* background-color: #000;  */
    padding: 20px; /* Optional: Adds some space around the buttons */
}

/* Remove default list styling */
.black-friday-offer-btn ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Style for each list item (adds spacing between the two buttons) */
.black-friday-offer-btn li {
    margin-bottom: 10px;
}

/* Style for the main link container (the entire button) */
.black-friday-offer-btn a {
    display: flex; /* Allows elements inside (like the -10% and icon) to be side-by-side */
    align-items: center;
    text-decoration: none;
    color: #fff; /* Text color is white */
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    font-weight: 400;
    height: 40px; /* Set a fixed height for the button */
    overflow: hidden; /* Ensures borders/shadows don't overlap strangely */
    border-radius: 4px; /* Optional: Slightly rounded corners */
    padding-right: 15px;
}

/* Style for the percentage text box (e.g., -10%, -15%) */
.black-friday-offer-btn .offer {
    background-color: #000; 
    color: #fff; /* White text for the percentage */
    font-size: 14px;
    padding: 0px 25px;
    display: flex; /* To vertically center the text */
    align-items: center;
    justify-content: center;
    height: 100%; /* Take up the full height of the 'a' element */
    margin-right: 5px; /* Small gap/separator look */
    /* Add a subtle visual separation from the main body */
    border-radius: 4px;
}

/* Style for the main offer description area (e.g., 10% off all tiles) */
.black-friday-offer-btn a {
    /* This applies to the whole 'a' element, but acts as the background for the description part */
    background-color: #d9001b; /* The primary red color */
    padding-left:2px; /* Left padding for the text "10% off all tiles" */
    flex-grow: 1; /* Makes the red part take up the remaining space */
    padding-top: 2px;
  padding-bottom: 2px;
}

/* Style for the offer icon (the right-arrow) */
.black-friday-offer-btn .offer-icon {
    margin-left: auto; /* Pushes the icon to the far right */
    width: 40px; /* Fixed width for the icon area */
    height: 100%;
   background-color: transparent;
    position: relative;
}

/* Create the white right-arrow using a pseudo-element */
.black-friday-offer-btn .offer-icon::after {
    content: '\2192';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-15%, -50%);
    font-size: 18px;
    color: #d9001b;
    line-height: 1;
    font-weight: 800;
}

.black-friday-offer-btn .offer-icon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-26%, -50%);
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50px;
}


/* Optional: Hover effect for interactivity */
.black-friday-offer-btn a:hover {
    filter: brightness(1.1); /* Slightly brightens the red on hover */
}


.slideshow__text {
    justify-content: center;
    align-items: center;
}

.slideshow__text .text-overlay {
    padding-top: 180px;
}
.card__info-container .card__title {
    min-height: 50px;
}

/**************Header Announcement**********/

.desktop-only { display: none; }
  .mobile-only { display: block; }

  @media(min-width: 768px) {
    .desktop-only { 
      display: block; 
      margin-top: {{ section.settings.top_margin_desktop }}px;
    }
    .mobile-only { display: none; }
  }

  .bf-banner {
    background: #c41626;
    color: white;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
  }
/**************End Header Announcement**********/

/********
Collection page
**********/
.collection-discount-badge .price__discount-badge{
  background-color: #c41626;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 33px;
  font-size: 12px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  width: 100%;
  line-height: normal;
  margin-top: 10px;
}


product-recommendations .card__info-container .card__title {
  min-height: 96px;
}

.product-info__sticky .price__discount-badge {
      width:auto;
        background-color: #c41626;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 33px;
  font-size: 12px;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  line-height: normal;
  margin-top:0;
  margin-bottom: 10px;
}


@media(max-width: 768px) {

.slideshow__text .text-overlay {
  padding-top: 110px;
}

slide-show picture {
    min-height: 320px;
    height: auto !important;
}

.cc-nav-slideshow .slideshow {
  padding-bottom: 0 !important;
  transition: padding-bottom .2s ease-out;
}

.slideshow__slide.image-banner {
  min-height: auto !important;
  margin-bottom: 0;
  padding-bottom: 0 !important;
}

}