/** Shopify CDN: Minification failed

Line 1581:0 Unexpected "}"

**/
/* FD: Typography Base Styles */

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-body);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
  font-weight: 600;
}

/* FD: Layout Base Styles */

.page-width {
  max-width: var(--page-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-spacing {
  padding-top: var(--section-spacing-desktop);
  padding-bottom: var(--section-spacing-desktop);
}

/* Mobile override */
@media (max-width: 749px) {
  .section-spacing {
    padding-top: var(--section-spacing-mobile);
    padding-bottom: var(--section-spacing-mobile);
  }
}

/* FD: Button Styles */
.button {
  border-radius: var(--button-radius);
  border-width: var(--button-border-thickness);
  border-style: solid;
  border-color: rgba(0, 0, 0, calc(var(--button-border-opacity) / 100));
  box-shadow: var(--button-shadow-x) var(--button-shadow-y)
    var(--button-shadow-blur)
    rgba(0, 0, 0, calc(var(--button-shadow-opacity) / 100));
}

/* FD: Input Styles */
input,
textarea,
select {
  border-radius: var(--input-radius);
  box-shadow: var(--input-shadow-x) var(--input-shadow-y)
    var(--input-shadow-blur)
    rgba(0, 0, 0, calc(var(--input-shadow-opacity) / 100));
}

/* FD: Card Styles */
.card,
.product-card,
.collection-card,
.blog-card {
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow-x) var(--card-shadow-y) var(--card-shadow-blur)
    rgba(0, 0, 0, calc(var(--card-shadow-opacity) / 100));
}




/* FD: Header background color*/
.header-wrapper {
  background-color: #ffffff;
}

/* FD: Ensure icons inherit white as currentColor */
.header__icon--search,
.header__icon--cart {
  display: none !important;
}



/* Patents info styling - matches shipping offers */
.patents-info {
  color: white;
  font-weight: 600;
  font-size: 15px;
  font-family: "Assistant", sans-serif;
}

/* --------------------------------------------
   Even horizontal spacing between header icons
--------------------------------------------- */
.header__icons {
  display: none !important;
}


/* Mobile logo sizing and header layout - BIGGER SIZES */
@media screen and (max-width: 990px) {
  /* Main FlexDeez logo */
  .header__heading-logo-wrapper {
    max-width: 80px !important;
    width: 80px !important;
  }

  .header__heading-logo {
    max-width: 80px !important;
    width: 80px !important;
    height: auto !important;
  }

  /* Hall of Flex logo - match FlexDeez size */
  .header__hall-logo img {
    height: 60px !important; /* Bigger */
    width: auto !important;
    max-width: 80px !important;
  }

/* Header spacing */
.header {
  padding-left: 0.8rem !important;
  padding-right: 0.8rem !important;
  justify-content: space-between !important;
}


  .header__icons {
    gap: 0.5rem !important;
  }
}

/* Breadcrumbs Styling */
.breadcrumbs {
  font-size: 17px;
  letter-spacing: 0.96px;
  line-height: 29px;
  color: #121212;
  margin: 0;
  padding: 1rem 0;
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__link {
  color: #121212;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: #c1130f;
  text-decoration: underline;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: rgba(18, 18, 18, 0.5);
}

.breadcrumbs__item--current {
  font-weight: 500;
  color: rgba(18, 18, 18, 0.7);
}

/* Product Title Styling */
.product__title {
  font-size: 32px; /* Adjust to match concept */
  font-weight: 600; /* Bold/semi-bold */
  margin-bottom: 1.5rem; /* Add space after title */
  line-height: 1.2; /* Improve readability */
}

/* ===============================================
   Product Page Custom CSS - FlexDeez Theme
   All styles for product page elements excluding breadcrumbs
   =============================================== */

/* Product Title Styling */
.product__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Product Variant Buttons */
.product-form__input input[type="radio"] + label {
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  border: 1px solid #d9d9d9;
  font-size: 15px;
  transition: all 0.2s ease;
  min-width: 100px;
  text-align: center;
}

.product-form__input input[type="radio"]:checked + label {
  background-color: #121212;
  color: #ffffff;
  border-color: #121212;
}

.product-form__input input[type="radio"] + label:hover {
  border-color: #121212;
}

/* Add to Cart Button */
.product-form__submit {
  background-color: #121212;
  color: #ffffff;
  border-radius: 30px !important;
  width: 100%;
  margin-bottom: 16px !important; /* Increased from 1rem to 16px for more space */
  padding: 1rem;
  font-size: 16px;
  border: 1px solid #121212 !important;
  transition: all 0.2s ease;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  overflow: hidden !important; /* Helps prevent rectangular artifacts */
}

.product-form__submit:hover {
  background-color: #333333;
  border-color: #333333;
}

/* Additional fix for any form button container */
.product-form__buttons {
  border: none !important;
  outline: none !important;
  margin-bottom: 20px !important; /* Extra space between buttons */
}

/* Buy it Now Button */
.shopify-payment-button {
  margin-top: 0 !important;
}

.shopify-payment-button__button {
  border-radius: 30px !important;
  padding: 1rem !important;
  font-size: 16px !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.shopify-payment-button__button--unbranded {
  background-color: #121212 !important;
  color: #ffffff !important;
  border: 1px solid #121212 !important;
  border-radius: 30px !important;
  overflow: hidden;
}

.shopify-payment-button__button--unbranded:hover {
  background-color: #333333 !important;
  border-color: #333333 !important;
}

.shopify-payment-button__button--unbranded::after {
  border-radius: 30px !important;
}

/* Button containers */
.product-form__buttons,
.shopify-payment-button {
  border: none !important;
  outline: none !important;
}

/* Installation Guide Link */
.installation-guide-link {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #121212;
  text-decoration: none;
  margin: 1rem 0;
  background-color: #f8f8f8;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.installation-guide-link::before {
  content: "📁";
  margin-right: 0.5rem;
}

.installation-guide-link:hover {
  background-color: #eeeeee;
}

/* Product Tabs */
.tabs-wrapper .tab-button {
  background-color: #ffffff;
  color: #121212;
  border: 1px solid #d9d9d9;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  min-width: 150px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tabs-wrapper .tab-button.active {
  background-color: #121212;
  color: #ffffff;
  border-color: #121212;
}

.tabs-wrapper .tab-button:hover:not(.active) {
  border-color: #121212;
}

/* Tab content styling */
.tabs-wrapper .tab-content {
  padding: 2rem 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Product Description Content */
.product__description {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

.product__description h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.product__description ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.product__description li {
  margin-bottom: 0.5rem;
}

/* Product notice text */
.product-notice {
  font-size: 16px;
  font-weight: 500;
  margin: 1rem 0;
  color: #121212;
}

/* Quantity selector */
.quantity__input {
  border-radius: 5px;
  min-height: 44px;
  text-align: center;
}

/* Vendor/subtitle text */
.product__vendor {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0.5rem;
}

/* Mobile optimizations */
@media screen and (max-width: 749px) {
  .product__title {
    font-size: 28px;
  }

  .tabs-wrapper .tab-button {
    min-width: 120px;
    padding: 0.5rem 1rem;
    font-size: 14px;
  }

  .product-form__submit,
  .shopify-payment-button__button {
    padding: 0.75rem !important;
    font-size: 15px !important;
  }
}

/* Consistent text sizing for product notices */
.product-notice,
.each-set-notice,
.set-includes-text {
  font-size: 15px; /* More balanced size for info text */
  line-height: 1.5;
  margin: 1rem 0;
  color: #333333;
  font-weight: 400; /* Regular weight for better readability */
}

/* Fix for tiny text under share button */
.share-caption,
.product__share-wrapper .share-button__label,
.product__share .share-button__label,
.share-button__label {
  font-size: 14px !important; /* Increase from 10px to 14px */
  line-height: 1.4 !important;
  color: #333333 !important;
}

/* Improve installation guide link appearance */
.installation-guide-link {
  display: inline-flex;
  align-items: center;
  font-size: 15px; /* Consistent with other secondary text */
  color: #121212;
  text-decoration: none;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background-color: #f8f8f8;
  border-radius: 5px;
  transition: background-color 0.2s ease;
}

.installation-guide-link::before {
  content: "📁";
  margin-right: 0.5rem;
}

/* Make sure all product information text is consistent */
.product__info-wrapper p,
.product__description p {
  font-size: 15px;
  line-height: 1.5;
  color: #333333;
}


/* 
 * FlexDeez Three-Column Footer Implementation
 * Add this CSS to your assets/custom.css file
 */

/* 
 * FlexDeez Three-Column Footer Implementation
 * Add this CSS to your assets/custom.css file
 * 
 * Strategy: Override Dawn's grid completely with our own layout
 */

/* === OVERRIDE DAWN'S FOOTER GRID COMPLETELY === */
@media screen and (min-width: 990px) {
  /* Remove Dawn's grid classes and create our own */
  .footer__blocks-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 4rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  /* Make each footer block equal width */
  .footer__blocks-wrapper .footer-block {
    flex: 1 !important;
    max-width: none !important;
    width: auto !important;
    min-width: 250px !important;
  }

  /* Override all of Dawn's grid classes */
  .footer__blocks-wrapper.grid,
  .footer__blocks-wrapper.grid--1-col,
  .footer__blocks-wrapper.grid--2-col,
  .footer__blocks-wrapper.grid--4-col-tablet,
  .footer__blocks-wrapper.grid--3-col-tablet {
    display: flex !important;
    grid-template-columns: none !important;
  }
}

/* === Social Footer Block Styling === */
.footer-block--social-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.custom-social-icons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-social-link {
  display: inline-block;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-social-link:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

.custom-social-link .icon {
  width: 24px;
  height: 24px;
  fill: white !important;
  color: white !important;
  display: block;
}

/* === HIDE DAWN'S NATIVE SOCIAL ICONS WHEN OUR BLOCK IS PRESENT === */
.footer__blocks-wrapper:has(.footer-block--social-footer)
  ~ .footer-block--newsletter
  .footer__list-social {
  display: none !important;
}

/* Also hide any other native social icon sections */
.footer__blocks-wrapper:has(.footer-block--social-footer) .footer__list-social {
  display: none !important;
}

.footer-brand-info {
  text-align: center;
}

.footer-brand-info p {
  font-size: 12px;
  color: white;
  font-weight: 600;
  line-height: 1.4;
  margin: 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === Responsive Behavior === */
@media screen and (max-width: 989px) {
  .footer__blocks-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .footer__blocks-wrapper .footer-block {
    flex: none !important;
    width: 100% !important;
  }

  .custom-social-icons {
    gap: 1.2rem;
  }

  .custom-social-link .icon {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 749px) {
  .custom-social-icons {
    gap: 1rem;
  }

  .footer-brand-info p {
    font-size: 11px;
  }
}

/* === Footer Menu Link Styling === */
.footer-block--menu .footer-block__details-content a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}

.footer-block--menu .footer-block__details-content a:hover {
  opacity: 0.8;
}

/* === Footer Headings === */
.footer-block__heading {
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* === Text Block Content === */
.footer-block__details-content.rte {
  color: white;
  font-size: 14px;
  line-height: 1.6;
}

.footer-block__details-content.rte p {
  margin-bottom: 0.75rem;
}

/* === Clean up default footer styling conflicts === */
.footer .footer-block {
  margin-bottom: 0;
}

.footer .footer-block:not(:last-child) {
  margin-bottom: 0;
}

/* ====================================================================
   FLEXDEEZ HOMEPAGE STYLING
   Custom CSS for FlexDeez Dawn 2.0 Theme Homepage Implementation
   ==================================================================== */


/* ====================================================================
   2. FEATURED COLLECTION STYLING
   ==================================================================== */

/* Product Card Titles - Centered and Properly Sized */
.card__heading {
  font-size: 18px !important;
  text-align: center !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}

.card__heading a {
  font-size: 18px !important;
  text-align: center !important;
  display: block !important;
}

/* Product Card Prices - Centered and Proportionally Sized */
.price .price-item {
  font-size: 14px !important;
}

/* Product Card Content - Center All Elements */
.card-information,
.price,
.card__content,
.card__information {
  text-align: center !important;
}

.price {
  justify-content: center !important;
}

/* ====================================================================
   3. PRODUCT CARD BUTTONS (BUY NOW)
   ==================================================================== */

/* Button Base Styling - FlexDeez Red Oval Buttons */
button.quick-add__submit {
  background-color: #c1130f !important;
  color: white !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  /* Oval Shape */
  border-radius: 25px !important;
  padding: 10px 20px !important;
  width: 60% !important;
  max-width: 150px !important;
  min-width: 100px !important;
  height: auto !important;

  /* Center Positioning */
  margin: 0 auto !important;
  display: block !important;

  /* Typography */
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;

  /* Animation */
  transition: all 0.2s ease !important;
}

/* Button Hover Effects */
button.quick-add__submit:hover {
  background-color: #a00f0c !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(193, 19, 15, 0.25) !important;
}

/* Button Container Spacing */
.quick-add.no-js-hidden {
  margin-top: -8px !important;
  margin-bottom: 16px !important;
  padding: 0 !important;
}

/* Remove Default Button Pseudo-Elements */
button.quick-add__submit::after,
button.quick-add__submit::before,
.button::after,
.quick-add__submit::after {
  display: none !important;
  content: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* ====================================================================
   4. CUSTOM IMAGE LINKS (NAVIGATION SECTION)
   ==================================================================== */

/* Image Link Cards - Base Styling */
.multicolumn .multicolumn-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Image Link Cards - Hover Effects */
.multicolumn .multicolumn-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.multicolumn .multicolumn-card:hover .multicolumn-card__image {
  transform: scale(1.1);
}

/* Image Aspect Ratio */
.multicolumn .multicolumn-card__image-wrapper {
  aspect-ratio: 1;
}

.multicolumn .multicolumn-card__image {
  transition: transform 0.3s ease;
}

/* Overlay Text Positioning */
.multicolumn .multicolumn-card__info {
  position: absolute;
  top: 33%; /* Positioned 1/3 from top */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
}

/* Overlay Text Styling - Large White Text with Shadow */
.multicolumn .multicolumn-card__info .card__heading,
.multicolumn .multicolumn-card__info h3,
.multicolumn .multicolumn-card__info .inline-richtext {
  background-color: transparent !important;
  color: white !important;
  padding: 0.5rem !important;
  border: none !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.2em !important;
  margin: 0 !important;
  font-size: 2.4rem !important;
  display: inline-block !important;
  backdrop-filter: none !important;
  transition: all 0.3s ease !important;

  /* Multiple Text Shadows for Maximum Clarity */
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 0 8px rgba(0, 0, 0, 0.8),
    2px 2px 0 rgba(0, 0, 0, 0.9) !important;
}

/* Overlay Text Hover Effects */
.multicolumn .multicolumn-card:hover .card__heading,
.multicolumn .multicolumn-card:hover h3,
.multicolumn .multicolumn-card:hover .inline-richtext {
  transform: scale(1.05) !important;
  color: white !important;

  /* Enhanced Shadow on Hover */
  text-shadow:
    0 3px 6px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(0, 0, 0, 0.8),
    3px 3px 0 rgba(0, 0, 0, 0.9) !important;
}

/* ====================================================================
   END FLEXDEEZ HOMEPAGE STYLING
   ==================================================================== */

/* ==================================================
   FlexDeez Sticky Contact Button Styles
   ================================================== */

.flexdeez-contact-wrapper {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
}

.flexdeez-contact-trigger-fixed {
  position: fixed;
  pointer-events: auto;
}

/* Desktop positioning - right side, centered vertically */
.flexdeez-contact-trigger-fixed--right {
  right: 0;
  top: 50vh;
  transform: translateY(-50%);
  position: fixed;
}

/* Mobile positioning - bottom right */
@media screen and (max-width: 989px) {
  .flexdeez-contact-trigger-fixed--mobile-bottom {
    right: 20px;
    bottom: 100px; /* Avoid mobile navigation overlap */
    top: auto;
    transform: none;
  }
}

/* Button styling matching concept theme */
.flexdeez-contact-trigger-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(242, 242, 83) !important; /* Yellow background */
  color: rgb(44, 44, 44) !important; /* Dark text */
  border: none;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 600;
  padding: 12px 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  outline: none;
  min-height: 60px;
  min-width: 60px;
}

/* Desktop: Vertical button on right edge */
@media screen and (min-width: 990px) {
  .flexdeez-contact-trigger-button {
    flex-direction: column;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    border-radius: 8px 0 0 8px;
    padding: 20px 10px;
    min-height: 140px;
    min-width: 55px;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    gap: 4px; /* Reduce spacing between icon and text */
  }

  .flexdeez-contact-trigger-label {
    transform: rotate(180deg);
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: normal; /* Remove extra letter spacing */
    margin: 0;
  }

  .flexdeez-contact-trigger-icon {
    transform: rotate(-90deg);
    margin: 0;
  }
}

/* Mobile: Horizontal button */
@media screen and (max-width: 989px) {
  .flexdeez-contact-trigger-button {
    flex-direction: row;
    border-radius: 25px;
    padding: 12px 16px;
    min-height: 50px;
    min-width: auto;
  }

  .flexdeez-contact-trigger-label {
    margin-left: 8px;
    white-space: nowrap;
  }
}

/* Icon styling */
.flexdeez-contact-trigger-icon {
  width: 20px;
  height: 20px;
  fill: rgb(44, 44, 44) !important;
  flex-shrink: 0;
}

/* Hover effects */
.flexdeez-contact-trigger-button:hover {
  background-color: rgb(
    255,
    235,
    59
  ) !important; /* Brighter yellow, not orange */
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flexdeez-contact-trigger-button:focus {
  outline: 2px solid rgb(44, 44, 44);
  outline-offset: 2px;
}

/* Animation for button appearance */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Apply animations */
@media screen and (min-width: 990px) {
  .flexdeez-contact-trigger-fixed--right {
    animation: slideInFromRight 0.5s ease-out;
  }
}

@media screen and (max-width: 989px) {
  .flexdeez-contact-trigger-fixed--mobile-bottom {
    animation: slideInFromBottom 0.5s ease-out;
  }
}

/* Ensure button doesn't interfere with other elements */
.flexdeez-contact-trigger-button {
  isolation: isolate;
}

/* ==================================================
   FlexDeez Contact Modal Styles
   ================================================== */

/* Modal Overlay */
.flexdeez-contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.flexdeez-contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.flexdeez-contact-modal {
  background: linear-gradient(
    135deg,
    #c1130f 0%,
    #a00f0b 100%
  ); /* Enhanced gradient */
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 20px rgba(193, 19, 15, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.flexdeez-contact-modal-overlay.active .flexdeez-contact-modal {
  transform: scale(1);
}

/* Close Button */
.flexdeez-contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.flexdeez-contact-modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.flexdeez-contact-modal-close:focus {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

.flexdeez-contact-modal-close svg {
  width: 24px;
  height: 24px;
}

/* Modal Header */
.flexdeez-contact-modal-header {
  margin-bottom: 30px;
  text-align: left;
}

.flexdeez-contact-modal-title {
  background: linear-gradient(135deg, #ffd700 0%, #ffa000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flexdeez-contact-modal-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.flexdeez-contact-modal-subtitle p {
  margin: 0 0 12px 0;
}

.flexdeez-contact-modal-subtitle p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

/* Form Styling */
.flexdeez-contact-form {
  width: 100%;
}

.flexdeez-form-group {
  margin-bottom: 20px;
}

.flexdeez-form-label {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}

/* Style for the (required) text - override uppercase */
.flexdeez-form-label .required-text {
  text-transform: lowercase;
  font-weight: 400;
  opacity: 0.8;
}

.flexdeez-form-input,
.flexdeez-form-textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 16px;
  color: #333;
  background-color: rgba(255, 255, 255, 0.98);
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-weight: 500;
}

.flexdeez-form-input:focus,
.flexdeez-form-textarea:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow:
    0 0 0 4px rgba(255, 215, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.flexdeez-form-input::placeholder,
.flexdeez-form-textarea::placeholder {
  color: #999;
  font-weight: 400;
}

.flexdeez-form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

/* Submit Button */
.flexdeez-form-actions {
  text-align: center;
  margin-top: 30px;
}

.flexdeez-form-submit {
  background: linear-gradient(135deg, #ffd700 0%, #ffa000 100%);
  color: #333;
  border: none;
  border-radius: 30px;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 6px 20px rgba(255, 215, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.flexdeez-form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.flexdeez-form-submit:hover {
  background: linear-gradient(135deg, #ffa000 0%, #ff8f00 100%);
  transform: translateY(-2px);
  box-shadow:
    0 8px 25px rgba(255, 215, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.flexdeez-form-submit:hover::before {
  left: 100%;
}

.flexdeez-form-submit:active {
  transform: translateY(0);
}

.flexdeez-form-submit:focus {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

/* Loading State */
.flexdeez-form-submit:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
  transform: none;
}

/* Success/Error Messages */
.flexdeez-form-messages {
  margin-top: 25px;
  text-align: center;
}

.flexdeez-form-success {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.flexdeez-form-error {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
  .flexdeez-contact-modal {
    padding: 30px 25px;
    margin: 15px;
    max-height: 95vh;
    border-radius: 20px;
  }

  .flexdeez-contact-modal-title {
    font-size: 24px;
  }

  .flexdeez-contact-modal-subtitle {
    font-size: 15px;
  }

  .flexdeez-form-input,
  .flexdeez-form-textarea {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 14px 16px;
  }

  .flexdeez-form-submit {
    padding: 14px 40px;
    font-size: 15px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .flexdeez-contact-modal-overlay,
  .flexdeez-contact-modal,
  .flexdeez-form-submit {
    transition: none;
  }
}

/* Make FAQ content wider - better balance */
.faq-accordion {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.faq-list {
  max-width: 100% !important;
}

.faq-item {
  max-width: 100% !important;
}

/* FAQ Page Formatting */
/* Fix FAQ heading spacing to associate questions with their answers */
.faq-answer .rte h3 {
  margin-top: 2rem !important;
  margin-bottom: 0.5rem !important;
}

/* Ensure first question doesn't have excessive top margin */
.faq-answer .rte h3:first-of-type {
  margin-top: 1rem !important;
}

/* PRODUCT PAGE FORMATTING */
/* Enhanced Price Styling - Better Proportions */
div.price.price--large.price--show-badge {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin: 1.5rem 0 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

div.price.price--large.price--show-badge .price-item.price-item--regular {
  font-size: 28px !important;
  font-weight: 700 !important;
}

div.price.price--large.price--show-badge .price__regular {
  font-size: 28px !important;
  font-weight: 700 !important;
}

@media screen and (max-width: 749px) {
  div.price.price--large.price--show-badge,
  div.price.price--large.price--show-badge .price-item.price-item--regular,
  div.price.price--large.price--show-badge .price__regular {
    font-size: 24px !important;
  }
}

/* Payment icons in Social Footer Block */
.footer-social__payment {
  margin-top: 1.5rem;
  text-align: center;
}

.footer-social__payment .list-payment {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.footer-social__payment .list-payment__item {
  list-style: none;
}

.footer-social__payment .icon {
  width: 38px;
  height: 24px;
}

@media screen and (max-width: 989px) {
  .footer-social__payment .list-payment {
    gap: 0.3rem;
  }

  .footer-social__payment .icon {
    width: 32px;
    height: 20px;
  }
}

/* Patents Badge Button */
.patents-badge-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.patents-badge-button:hover {
  transform: scale(1.05);
}

/* Patents Modal */
.patents-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.patents-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.patents-modal {
  background: white;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.patents-modal-overlay.active .patents-modal {
  transform: scale(1);
}

.patents-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  border-radius: 4px;
}

.patents-modal-close:hover {
  background-color: #f5f5f5;
}

.patents-modal-content h2 {
  color: #c1130f;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.patents-modal-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.patents-modal-content p:last-child {
  margin-bottom: 0;
}

/* Patents Badge Button in Free Shipping Bar */
.free-shipping-bar .patents-badge-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
}

.free-shipping-bar .patents-badge-button:hover {
  transform: scale(1.05);
}

.free-shipping-bar .patents-badge-image {
  height: 90px;
  width: auto;
  object-fit: contain;
}


/* ==================================================
   FlexDeez Header — Centered Unit (Logo + Menu)
   FULL RESET — Header only
================================================== */

:root{
  --fd-gold:#F2B300;
  --fd-red:#E11B22;
  --fd-black:#111;
  --fd-unit-gap:48px; /* space between logo + menu */
  --fd-nav-gap:34px;  /* space between menu items */
}

/* Header only: white + gold top rule */
.section-header .header-wrapper,
.section-header .header{
  background:#fff !important;
}

.section-header .header-wrapper{
  border-top:3px solid var(--fd-gold);
}

/* Tighten header height */
.section-header .header{
  padding:0 0 !important;
  min-height:unset !important;
}


  /* Dawn header is grid-based; convert to flex so we can center the unit */
  .section-header .header{
    display:flex !important;
    justify-content:center !important; /* centers the UNIT */
    align-items:center !important;
    gap:var(--fd-unit-gap);
  }

  /* Stop Dawn from auto-pushing elements */
  .section-header .header__heading{
    margin:0 !important;
  }
  .section-header .header__inline-menu{
    margin:0 !important;
  }

  /* Keep menu on one line */
  .section-header .header__inline-menu .list-menu--inline{
    display:inline-flex !important;
    align-items:center !important;
    gap:var(--fd-nav-gap) !important;
    flex-wrap:nowrap !important;
    white-space:nowrap !important;
  }
}


.section-header .header__heading-logo{
  display:block;
  width:auto !important;
  height:auto !important;
  max-height:60px;
}

/* Menu typography */
.section-header .header__menu-item,
.section-header .header__menu-item span{
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.04em;
  font-size:16px;
  color:var(--fd-black) !important;
  text-decoration:none !important;
  padding:0 !important;
  margin:0 !important;
  line-height:1 !important;
}

/* Active / HOME red */
.section-header .header__menu-item[aria-current="page"],
.section-header .header__active-menu-item,
.section-header .header__menu-item[href="/"]{
  color:var(--fd-red) !important;
}

/* ==================================================
   FD: Multirow Hall — Desktop + Mobile (stack, bigger centered image)
   Scoped ONLY to .multirow
================================================== */

:root{
  --fd-red:#d90429;
  --fd-body:#4b4b4b;
  --fd-black:#111;
}

/* ========== DESKTOP (70/30 + 20px gap + vertical center) ========== */
@media (min-width: 990px){
  .multirow .image-with-text__grid{
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;          /* center left block vs right image */
    gap:20px !important;
    padding-top:0 !important;
  }

  .multirow .image-with-text__text-item{
    flex:0 0 70% !important;
    max-width:70% !important;
    min-width:0 !important;
    padding-right:0 !important;

    display:flex !important;                /* vertically center content block */
    align-items:center !important;
  }

  .multirow .image-with-text__content{
    width:100% !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
  }

  .multirow .image-with-text__media-item{
    flex:0 0 30% !important;
    max-width:30% !important;
    min-width:0 !important;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
  }

  .multirow .image-with-text__media img{
    max-width:360px !important;
  }
}

/* --- Remove Dawn content card styling (keep it clean) --- */
.multirow .image-with-text__content{
  background:transparent !important;
  box-shadow:none !important;
  border:0 !important;
  padding:0 !important;
  max-width:none !important;
}

/* --- LEFT: Headline --- */
.multirow .image-with-text__heading{
  color:var(--fd-red) !important;
  font-weight:900 !important;
  font-size:32px !important;
  line-height:1.2 !important;
  margin:0 0 14px 0 !important;
  letter-spacing:-0.1px !important;
}

/* --- LEFT: Body copy --- */
.multirow .image-with-text__text.rte,
.multirow .image-with-text__text.rte p{
  color:var(--fd-body) !important;
  font-size:18px !important;
  line-height:1.9 !important;
  margin:0 !important;
  font-weight:500 !important;
}

/* --- CTA line (button) --- */
.multirow .image-with-text__content .button{
  all:unset !important;

  display:inline-flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:14px !important;

  margin-top:22px !important;
  cursor:pointer !important;

  color:var(--fd-red) !important;
  font-weight:900 !important;
  font-style:italic !important;
  text-transform:uppercase !important;
  letter-spacing:.02em !important;
  font-size:22px !important;
  line-height:1.05 !important;

  position:relative !important;             /* keep pseudo-element behaved */
}

.multirow .image-with-text__content .button:hover{
  opacity:.85 !important;
}

/* Speech bubble icon (locked in-flow, left of text) */
.multirow .image-with-text__content .button::before{
  content:"";
  width:54px !important;
  height:40px !important;

  display:inline-block !important;
  flex:0 0 auto !important;

  position:static !important;
  inset:auto !important;
  transform:none !important;
  margin:0 !important;

  background-repeat:no-repeat !important;
  background-size:contain !important;
  background-position:center !important;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='80' viewBox='0 0 110 80'%3E%3Cg fill='none' stroke='%23d90429' stroke-width='5'%3E%3Cpath d='M16 10h70a12 12 0 0 1 12 12v28a12 12 0 0 1-12 12H44L22 74V62H16A12 12 0 0 1 4 50V22A12 12 0 0 1 16 10Z'/%3E%3Ccircle cx='34' cy='36' r='2.8'/%3E%3Ccircle cx='50' cy='36' r='2.8'/%3E%3Ccircle cx='66' cy='36' r='2.8'/%3E%3C/g%3E%3C/svg%3E") !important;
}

/* --- RIGHT: Image area (no borders/lines) --- */
.multirow .image-with-text__media,
.multirow .image-with-text__media.global-media-settings{
  border:0 !important;
  box-shadow:none !important;
  background:transparent !important;
  padding:0 !important;
  overflow:visible !important;
  height:auto !important;
}

.multirow .image-with-text__media img{
  position:static !important;
  width:auto !important;
  height:auto !important;
  display:block !important;
  object-fit:contain !important;
  object-position:center !important;
}

/* --- RIGHT: “VISIT THE HALL” copy --- */
.multirow .fd-hall-copy{
  margin-top:18px !important;
  text-align:center !important;
  width:100%;
}

.multirow .fd-hall-title{
  color:var(--fd-red);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  font-size:38px;
  line-height:1;
  margin:0 0 10px 0;
}

.multirow .fd-hall-sub{
  color:var(--fd-black);
  font-weight:800;
  font-size:18px;
  line-height:1.35;
  margin:0;
}

/* ========== MOBILE (stack + centered bigger image) ========== */
@media (max-width: 989px){
  /* force stack order: text first, image second */
  .multirow .image-with-text__grid{
    display:flex !important;
    flex-direction:column !important;
    gap:22px !important;
    align-items:stretch !important;
  }

  .multirow .image-with-text__text-item,
  .multirow .image-with-text__media-item{
    max-width:100% !important;
    width:100% !important;
  }

  /* make image centered and bigger */
  .multirow .image-with-text__media-item{
    order:2 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
  }

  .multirow .image-with-text__media{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
  }

  .multirow .image-with-text__media img{
    max-width:520px !important;  /* bigger on mobile */
    width:min(520px, 92vw) !important;
    height:auto !important;
  }

  /* keep the “VISIT THE HALL” block centered under the image */
  .multirow .fd-hall-copy{
    text-align:center !important;
  }

  /* mobile typography tweaks */
  .multirow .image-with-text__heading{ font-size:30px !important; }
  .multirow .image-with-text__content .button{ font-size:18px !important; }
  .multirow .fd-hall-title{ font-size:34px; }
}


/* ==================================================
   FLEXDEEZ FAQ — COMPLETE REBUILD
   Matches reference screenshot exactly
================================================== */

/* SECTION WRAPPER */
.shopify-section.section .collapsible-content{
  max-width:900px;
  margin:0 auto;
}

/* HEADER WRAPPER */
.shopify-section.section .collapsible-content__header{
  text-align:left !important;
  margin-bottom:0 !important;
  padding-bottom:18px !important;
  position:relative;
}

/* FAQ TITLE */
.shopify-section.section .collapsible-content__heading{
  text-align:center !important;
  color:#d90429 !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:.08em !important;
  font-size:28px !important;
  line-height:1.1 !important;
  margin:0 !important;
}

/* Divider under heading */
.shopify-section.section .collapsible-content__header:after{
  content:"";
  display:block;
  height:1px;
  background:#d9d9d9;
  width:100%;
  margin-top:18px;
}

/* REMOVE DEFAULT CARD STYLING */
.shopify-section.section .accordion{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

/* Remove Dawn caret */
.shopify-section.section summary .icon-caret{
  display:none !important;
}

/* ROW CONTAINER */
.shopify-section.section details{
  border-bottom:1px solid #d9d9d9;
}

/* QUESTION ROW */
.shopify-section.section summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
  cursor:pointer;
}

/* QUESTION TEXT */
.shopify-section.section .accordion__title{
  font-size:20px !important;
  font-weight:700 !important;
  color:#111 !important;
  margin:0 !important;
}

/* RED PLUS BUTTON */
.shopify-section.section summary::after{
  content:"+";
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:50%;
  background:#d90429;
  color:#fff;
  font-size:20px;
  font-weight:900;
  line-height:1;
  transition:transform .25s ease;
}

/* Rotate when open */
.shopify-section.section details[open] summary::after{
  transform:rotate(45deg);
}

/* ANSWER CONTENT */
.shopify-section.section .accordion__content{
  padding:0 0 22px 0;
  font-size:16px;
  line-height:1.7;
  color:#444;
}

/* REMOVE EXTRA ICONS IF PRESENT */
.shopify-section.section summary .svg-wrapper{
  display:none !important;
}

/* READ MORE LINK STYLE (if present below section) */
.shopify-section.section .rte a{
  color:#d90429;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* MOBILE */
@media (max-width:749px){
  .shopify-section.section .collapsible-content{
    padding:0 16px;
  }

  .shopify-section.section .accordion__title{
    font-size:18px !important;
  }

  .shopify-section.section summary{
    padding:16px 0;
  }

  .shopify-section.section summary::after{
    width:28px;
    height:28px;
    font-size:18px;
  }
}


/* ==================================================
   FD — Newsletter “Discount Signup” (match reference)
   FINAL TUNE — Mobile uses LEFT side of image
================================================== */

/* card/container */
.newsletter{
  padding:40px 16px!important;
  background:transparent!important;
}

/* main card */
.newsletter .newsletter__wrapper{
  max-width:1191px!important;
  margin:0 auto!important;
  border-radius:18px!important;
  overflow:hidden!important;

  background:url("https://storage.googleapis.com/msgsndr/AuOvjLnzLbCiL8dFMsxx/media/698cdbe430ec4a508739aee7.png")
    center center / cover no-repeat!important;

  padding:52px 56px!important;

  border:0!important;
  box-shadow:none!important;
}

/* keep all content left aligned */
.newsletter .newsletter__wrapper,
.newsletter .newsletter__wrapper *{
  text-align:left!important;
}

/* heading */
.newsletter h2{
  margin:0 0 12px!important;
  max-width:520px!important;
  color:#111!important;
  font-weight:900!important;
  letter-spacing:-.02em!important;
  line-height:1.08!important;
  font-size:40px!important;
}

/* subheading */
.newsletter .newsletter__subheading{
  margin:0 0 22px!important;
  max-width:520px!important;
}
.newsletter .newsletter__subheading p{
  margin:0!important;
  color:#111!important;
  font-style:italic!important;
  font-weight:500!important;
  font-size:22px!important;
}

/* form aligned */
.newsletter .newsletter-form{
  margin:0!important;
  max-width:520px!important;
}
.newsletter .newsletter-form__field-wrapper{
  margin:0!important;
}

/* field wrapper */
.newsletter .newsletter-form__field-wrapper .field{
  display:flex!important;
  align-items:stretch!important;
  gap:0!important;
  border:0!important;
  box-shadow:none!important;
  background:transparent!important;
  border-radius:12px!important;
  overflow:hidden!important;
}

/* remove label */
.newsletter .field__label{
  display:none!important;
}

/* input */
.newsletter .field__input{
  flex:1 1 auto!important;
  background:#fff!important;
  color:#111!important;
  border:0!important;
  box-shadow:none!important;
  outline:0!important;
  padding:16px 18px!important;
  min-height:56px!important;
  font-size:16px!important;
  line-height:1!important;
  border-radius:0!important;
}

/* button */
.newsletter .newsletter-form__button{
  flex:0 0 auto!important;
  background:#E11B22!important;
  color:#fff!important;
  border:0!important;
  border-radius:0!important;
  min-height:56px!important;
  width:170px!important;
  padding:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-weight:800!important;
  font-size:18px!important;
  letter-spacing:0!important;
}

/* remove arrow */
.newsletter .newsletter-form__button .svg-wrapper{
  display:none!important;
}
.newsletter .newsletter-form__button::after{
  content:"Subscribe";
  display:block;
  line-height:1!important;
}

/* remove focus glow */
.newsletter .field:focus-within{
  box-shadow:none!important;
  outline:0!important;
}
.newsletter .field__input:focus{
  box-shadow:none!important;
  outline:0!important;
}

/* =========================
   MOBILE — LEFT SIDE IMAGE
========================= */
@media (max-width: 749px){

  .newsletter{
    padding:28px 14px!important;
  }

  .newsletter .newsletter__wrapper{
    padding:28px 18px!important;
    border-radius:16px!important;

    /* 🔥 THIS is the only real change */
    background-position:left center!important;
  }

  .newsletter h2{
    font-size:30px!important;
    max-width:100%!important;
  }

  .newsletter .newsletter__subheading,
  .newsletter .newsletter-form{
    max-width:100%!important;
  }

  .newsletter .newsletter-form__field-wrapper .field{
    flex-direction:row!important;
  }

  .newsletter .newsletter-form__button{
    width:150px!important;
    font-size:16px!important;
  }
}


/* ==================================================
   FD — Footer AI Newsletter Signup (forces override)
   Works even if the block outputs its own <style>
================================================== */

/* 1) Make the footer area yellow like reference */
footer.footer{
  background: #FFC700 !important;
}

/* 2) Target ONLY the AI signup block in the footer */
footer.footer div[class^="ai-newsletter-signup-"]{
  background: transparent !important;
  padding: 36px 16px 28px !important;
  border-radius: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
}

/* Heading */
footer.footer h2[class^="ai-newsletter-signup__heading-"]{
  margin: 0 0 16px !important;
  color: #111 !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
}

/* Subtext (blue + underline look) */
footer.footer div[class^="ai-newsletter-signup__subtext-"]{
  margin: 10px 0 0 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #1a4fb3 !important; /* blue-ish like screenshot */
  text-decoration: underline !important;
}

/* Form wrapper width */
footer.footer div[class^="ai-newsletter-signup__form-wrapper-"]{
  max-width: 760px !important;
  margin: 0 auto !important;
}

/* Input + button row (single pill w/ shadow) */
footer.footer div[class^="ai-newsletter-signup__field-"]{
  display: flex !important;
  gap: 0 !important;
  justify-content: center !important;
  align-items: stretch !important;

  max-width: 640px !important;
  margin: 0 auto !important;

  border-radius: 12px !important;
  overflow: hidden !important;

  box-shadow: 0 14px 22px rgba(0,0,0,.18) !important;
}

/* Input */
footer.footer input[class^="ai-newsletter-signup__input-"]{
  flex: 1 1 auto !important;
  min-height: 54px !important;
  padding: 14px 18px !important;

  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #111 !important;

  font-size: 16px !important;
  outline: none !important;
}

/* Button */
footer.footer button[class^="ai-newsletter-signup__button-"]{
  width: 220px !important;
  min-height: 54px !important;

  background: #D90429 !important;
  color: #fff !important;

  border: 0 !important;
  border-radius: 0 !important;

  font-size: 18px !important;
  font-weight: 800 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Mobile */
@media (max-width: 749px){
  footer.footer div[class^="ai-newsletter-signup__field-"]{
    flex-direction: column !important;
  }
  footer.footer button[class^="ai-newsletter-signup__button-"]{
    width: 100% !important;
  }
}


/* FD: Kill the thin divider line in footer (Dawn border/pseudo element) */
footer.footer .footer__content-bottom,
footer.footer .footer__content-top{
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

footer.footer .footer__content-bottom::before,
footer.footer .footer__content-bottom::after,
footer.footer .footer__content-top::before,
footer.footer .footer__content-top::after{
  content: none !important;
  display: none !important;
}

/* If the line is coming from the page-width wrapper edge */
footer.footer .footer__content-bottom-wrapper,
footer.footer .footer__content-top.page-width{
  border: 0 !important;
  box-shadow: none !important;
}


/* FD: Mobile header layout — logo LEFT, hamburger RIGHT */
@media screen and (max-width: 989px){
  .section-header .header{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
    gap:12px !important;
  }

  /* logo left */
  .section-header .header__heading{
    order:1 !important;
    margin-right:auto !important;
  }

  /* hamburger right */
  .section-header header-drawer{
    order:2 !important;
    margin-left:auto !important;
  }

  /* keep icons hidden (you already do this) */
  .section-header .header__icons{
    display:none !important;
  }
}

/* ================================
   FD — FORCE Divider + Links styling
   Put this at the VERY BOTTOM of custom.css
================================ */

/* Make sure the wrapper is visible no matter what */
html body .fd-footer-signup-legal{
  display: block !important;
  width: 100% !important;
  margin-top: 18px !important;
  text-align: center !important;
}

/* Make divider wide + perfectly centered */
html body .fd-footer-signup-legal .fd-footer-signup-divider{
  display: block !important;
  height: 4px !important;

  width: 75vw !important;          /* 3/4 of screen */
  max-width: 1200px !important;    /* prevents it from getting insane on ultra-wide */

  background: #ffffff !important;
  border: 0 !important;
  border-radius: 999px !important;

  position: relative !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  margin: 20px 0 18px 0 !important;
}



/* Force the link row to match screenshot vibe */
html body .fd-footer-signup-legal .fd-footer-signup-links{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  margin: 0 !important;

  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #111 !important;
}

/* Kill default “blue link” styling */
html body .fd-footer-signup-legal .fd-footer-signup-links a,
html body .fd-footer-signup-legal .fd-footer-signup-link{
  color: #111 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

html body .fd-footer-signup-legal .fd-footer-signup-links a:hover,
html body .fd-footer-signup-legal .fd-footer-signup-link:hover{
  text-decoration: underline !important;
}

/* Dot separator */
html body .fd-footer-signup-legal .fd-footer-signup-sep{
  color: #111 !important;
  opacity: .9 !important;
  font-weight: 700 !important;
}

/* Mobile tune */
@media (max-width: 749px){
  html body .fd-footer-signup-legal .fd-footer-signup-divider{
    width: min(520px, 92%) !important;
    margin-bottom: 14px !important;
  }
  html body .fd-footer-signup-legal .fd-footer-signup-links{
    font-size: 15px !important;
    gap: 14px !important;
  }
}




/* Slideshow: hide the entire controls UI (arrows, dots, pause/play) */
slideshow-component .slideshow__controls,
slideshow-component .slideshow__controls--top,
slideshow-component .slider-buttons,
slideshow-component .slider-counter,
slideshow-component .slideshow__control-wrapper,
slideshow-component .slideshow__autoplay,
slideshow-component .slider-button,
slideshow-component .slider-counter__link {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Remove leftover spacing where controls were */
slideshow-component .slideshow__controls {
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}
