/** Shopify CDN: Minification failed

Line 169:8 Expected identifier but found whitespace
Line 169:10 Unexpected "{"
Line 169:19 Expected ":"
Line 174:8 Expected identifier but found whitespace
Line 174:10 Unexpected "{"
Line 174:19 Expected ":"
Line 191:2 Unexpected "{"
Line 191:3 Expected identifier but found "%"
Line 193:2 Unexpected "{"
Line 193:3 Expected identifier but found "%"
... and 29 more hidden warnings

**/


/* CSS from section stylesheet blocks */
/* Center-align the content of the author section */
.author-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* Increased space between elements */
  padding: 30px; /* Add padding for better spacing */
}

.author-image {
  width: 200px; /* Adjust based on your needs */
  height: 200px; /* Equal width and height to maintain aspect ratio */
  border-radius: 50%; /* Makes the image round */
  object-fit: cover; /* Ensures the image covers the area nicely */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.author-position, .author-name {
  margin: 0 auto; /* Center these elements */
    text-align: center; /* Ensure text is centered */

}

.author-position {
  font-size: 0.9em; /* Adjust the font size as needed */
  color: #999; /* Light gray color for position */
    text-align: center; /* Ensure text is centered */

}

.author-name {
  font-size: 1.5em; /* Larger font size for name */
  color: #222; /* Darker color for name */
    text-align: center; /* Ensure text is centered */

}

.author-info {
  max-width: 600px; /* Adjust the maximum width of the author info to control the bio width */
  margin: auto; /* Center the container */
  text-align: left; /* Center-align the content */
}

.author-bio {
  font-size: 1em; /* Adjust the font size as needed */
  color: #555; /* Slightly darker color for bio text */
  line-height: 1.6; /* Increase line height for better readability */
  overflow-wrap: break-word; /* Enable word wrapping */
  padding-left: 20px;
}

@media (max-width: 768px) {
  .author-info {
    padding: 0 20px; /* Adds padding on smaller screens to ensure the text doesn't touch the edges */
  }
}
.image-text-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* Allow items to wrap as needed */
  justify-content: center; /* Center items horizontally in the container */
  gap: 10px;
  background-color: #f0f0f0; /* Grey background for the section */
  padding: 5px; /* Uniform padding for all sides */
}

.image-text-block {
  display: flex;
  flex-direction: row; /* Horizontal layout for items */
  align-items: center; /* Center items vertically */
  background-color: #f0f0f0; /* Seamless background with the section */
  border-radius: 5px; /* Rounded corners */
  flex: 1; /* Grow and shrink as needed */
  min-width: 0; /* Prevents flex items from not shrinking */
  padding: 0; /* No internal padding to keep the block compact */
}

.image-text-image {
  flex: 0 0 auto; /* Allow width to auto adjust based on the image_width setting */
  height: auto; /* Keep aspect ratio of the image */
  padding: 5px; /* Padding around the image */
  background-color: #f0f0f0; /* Matching section background */
}

.image-text-text {
  padding: 5px; /* Padding around the text */
  flex-grow: 1; /* Allow text to fill the remaining space */
  background-color: #f0f0f0; /* Matching section background */
  overflow-wrap: break-word; /* Prevent text from overflowing */
}

@media (max-width: 768px) {
  .image-text-block {
    flex-direction: column; /* Stack image and text vertically on smaller screens */
    align-items: center; /* Center items within the block */
    text-align: center; /* Center-align the text */
  }

  .image-text-image img {
    width: auto; /* Use auto width for better aspect ratio control */
    max-width: 100%; /* Ensure image is not wider than its container */
    height: auto; /* Maintain aspect ratio of the image */
  }

  .image-text-text {
    display: none; /* Hide text by default on mobile screens */
    font-size: smaller; /* Adjust text size for mobile screens */
    margin-top: 10px; /* Add space between the image and the text */
  }
  .image-tooltip {
  display: none; /* Initially hidden */
  position: absolute; /* Position absolutely to place correctly */
  pointer-events: none; /* Ignore pointer events */
}

}
.image-inline-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px;
  background-size: cover;
  background-position: center center;
  flex-wrap: wrap;
  position: relative;
}

.section-overlay,
.image-inline {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  z-index: 2;
}

.section-overlay {
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 2;
}

.section-overlay h1 {
  font-size: 28px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: {{ section.settings.heading_color }};
  font-family: Aldrich, sans-serif; /* Same as heading */
}

.section-overlay p {
  color: {{ section.settings.text_color }};
  margin-top: 10px;
  margin-bottom: 0px;
  font-family: Aldrich, sans-serif; /* Same as heading */
}

.image-inline {
  width: 300px;
  height: auto;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 12px 8px;
  border-radius: 8px;
  z-index: 2;
  {% if section.settings.hide_background %}
    background-color: transparent;
  {% else %}
    background-color: rgba(255, 255, 255, 0.4);
  {% endif %}
}

.image-inline img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}

.image-inline img:hover {
  transform: rotate(5deg);
}

.image-inline .image-name {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
  color: {{ section.settings.image_name_color }};
}

.image-inline button {
  margin-top: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 16px;
}

.section-bottom-button {
  position: absolute;
  bottom: 40px; /* Adds more space to the bottom */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: black;
  font-size: 18px; /* Same as heading */
  font-family: Aldrich, sans-serif; /* Same as heading */
  z-index: 3;
  transition: background-color 0.3s ease-in-out;
}

.section-bottom-button:hover {
  background-color: rgba(255, 215, 0, 0.6);
}

@media (max-width: 767px) {
  /* ... (existing mobile styles) ... */

  /* Hide the entire image-inline-section on mobile */
  .image-inline-section {
    display: none; /* Hides the slider on mobile devices */
  }
}

@media (min-width: 768px) {
  /* Show the image-inline-section on desktop */
  .image-inline-section {
    display: flex; /* Ensure the slider is visible on desktop */
    /* Rest of your desktop specific styles */
  }
}
#section-{{ section.id }} .content-left {
    width: {{ section.settings.content_left_width }}px;
    padding: 50px;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .image-with-button-section {
    position: relative;
    background-position: center center;
    background-size: cover;
    z-index: 0;
    transition: background-attachment 0.3s ease-in-out, opacity 0.3s ease-in-out;
    background-attachment: scroll;
  }

  .content-container {
    position: absolute;
    z-index: 1;
    font-family: Aldrich, sans-serif;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
  }

  .content-right {
    right: 0;
    left: auto;
    padding-left: 20px;
    padding-right: 0;
    justify-content: flex-end;
  }

  .left-middle-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: color 0.3s ease, font-size 0.3s ease, opacity 1s ease-in-out, transform 1s ease-in-out;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
  }

  .left-middle-button:hover {
    background-color: gold;
    border-color: #ffd700;
  }

  .content-visible {
    opacity: 1 !important;
    transform: translateY(0px) !important;
  }

  .content-top {
    align-items: flex-start;
  }

  .content-center {
    align-items: center;
  }

  .content-bottom {
    align-items: flex-end;
  }

  .content-left h1,
  .content-left h2,
  .content-left h3,
  .content-left div {
    transition: color 0.3s ease, font-size 0.3s ease, opacity 1s ease-in-out, transform 1s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
  }

  .content-left h1,
  .content-left h2,
  .content-left h3 {
    font-weight: bold;
    color: {{ section.settings.header_color }};
    font-size: {{ section.settings.header_size }}px;
  }

  .content-left div {
    color: {{ section.settings.text_color }};
    font-size: {{ section.settings.text_size }}px;
    font-weight: bold;
    font-family: Aldrich, sans-serif;
  }

  @media only screen and (max-width: 768px) {
    .image-with-button-section {
      display: none;
    }
  }
/* Your existing styles unchanged */
.custom-image-container img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove space below images */
}

@media only screen and (min-width: 750px) {
  .custom-image-desktop {
    display: block;
  }
  .custom-image-mobile {
    display: none;
  }
}

@media only screen and (max-width: 749px) {
  .custom-image-desktop {
    display: none;
  }
  .custom-image-mobile {
    display: block;
  }
}

.custom-image-desktop, .custom-image-mobile {
    width: 100%;
}
.announcement {
  position: relative;
  width: 100%;
  text-align: center;
  background-color: #b8860b;
  color: gold;
  height: {{ section.settings.announcement_height }}px;
}

.carousel-container {
  perspective: 1200px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 50%;
  width: 500px; 
  height: 100%;
  opacity: 0;
  transition: transform 1s, opacity 1s;
  text-align: center;
  transform: translateX(-50%);
  z-index: 1;
}

.carousel-item .product-content {
  position: absolute;
  bottom: 0; 
  left: 0;
  width: 100%;
  background-color: rgba(255, 215, 0, 0.6);
  color: #000; 
  padding: 2px;
  box-sizing: border-box;
  text-align: left;
  font-size: 0.7em;
  line-height: 1.2;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-item.active:hover .product-content {
  opacity: 1;
  transform: translateY(0);
}

.carousel-item.active {
  z-index: 2;
  opacity: 1;
}

.carousel-item.prev, .carousel-item.next {
  z-index: 1;
  opacity: 0.6;
  background-color: rgba(255, 215, 0, 0.6);
}

.carousel-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.carousel-item.active:hover img {
  transform: scale(1.1);
}

.product-title, .product-price {
  display: block;
  width: 100%;
  text-align: center; /* Align text to the center */
  margin-top: 2px;
  margin-bottom: 2px;
}

.buy-button {
  display: inline-block;
  background-color: #000; 
  color: #fff;
  padding: 10px 20px; /* Increase padding to make the button larger */
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1em; /* Increase font size to make the text larger */
  text-align: center; /* Align text to the center */
  width: 100%; /* Make button full width */
}

.buy-button:hover {
  background-color: #b8860b;
}

@media (max-width: 768px) {
  .carousel-container {
    display: none; /* This will hide the carousel on mobile screens */
  }
}
#modern-table-of-contents {
  width: 235px;
  padding: 20px;
  background-color: #ffffff;
  border: 2px solid #e5e5e5;
  font-family: 'Arial', sans-serif;
  position: fixed;
  top: 137px; /* Adjust this value as needed */
  right: 10px; /* Adjust this value as needed */
  max-height: calc(100vh - 120px); /* Adjust this value as needed */
  overflow-y: auto;
  z-index: 1000;
}

#modern-table-of-contents h2 {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Aldrich', sans-serif;
  font: bold
    width: 230px;
}

#modern-table-of-contents a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

#modern-table-of-contents a:hover,
#modern-table-of-contents a:focus {
  color: gold;
  text-decoration: none;
}

#modern-table-of-contents a.active {
  color: #007bff;
  font-weight: bold;
}