
/* This is the original customized content at Appearance --> Customize */
/* ============================ */
/* Global Mobile H1 Fix         */
/* ============================ */
/* Allow H1s to stay large, but prevent broken word wrapping */
@media (max-width: 768px) {

    h1 {
        font-size: clamp(48px, 8vw, 60px) !important;
        /* Explanation:
           - Minimum: 48px (readable baseline)
           - Fluid: 8% of viewport width (keeps them big on mobile)
           - Maximum: 60px (so they don't get absurdly tall) */
        line-height: 1.2em !important;  /* Keeps multi-line titles readable */
        word-break: keep-all !important; /* Prevents breaking in the middle of words */
        hyphens: auto !important;        /* Allows natural hyphenation if needed */
    }

    /* Elementor's Dual Color Header widget sets font-size on both the h1
       AND the spans inside it, so we need to target both to override it */
    .elementor-element .eael-dual-header h1.title,
    .elementor-element .eael-dual-header h1.title span {
        font-size: clamp(40px, 8vw, 48px) !important;
        line-height: 1.2em !important;
    }

}
/* ============================ */
/* For Link In Bio Page (/links)     */
/* ============================ */

/* ---- shared shape for both button types ---- */
.link-in-bio-button-primary,
.link-in-bio-button-secondary {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  border-radius: 12px !important;
  padding: 14px 48px 14px 20px !important;
  width: 100% !important;
  text-decoration: none !important;
  cursor: pointer !important;
  position: relative !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12) !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}

.link-in-bio-button-primary:hover,
.link-in-bio-button-secondary:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.18) !important;
  transform: translateY(-1px);
}

.link-in-bio-button-primary::after,
.link-in-bio-button-secondary::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

/* ---- PRIMARY: red fill, white text ---- */
.link-in-bio-button-primary {
  background-color: #DF2525 !important;
  border: none !important;
}

.link-in-bio-button-primary::after {
  color: #ffffff;
}

.link-in-bio-button-primary strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin: 0;
}

.link-in-bio-button-primary span {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  display: block;
  margin: 2px 0 0 0;
}

/* ---- SECONDARY: white fill, red border, dark text ---- */
.link-in-bio-button-secondary {
  background-color: #ffffff !important;
  border: 2px solid #DF2525 !important;
}

.link-in-bio-button-secondary::after {
  color: #DF2525;
}

.link-in-bio-button-secondary strong {
  color: #222222;
  font-size: 1rem;
  font-weight: 700;
  display: block;
  margin: 0;
}

.link-in-bio-button-secondary span {
  color: #888888;
  font-size: 0.8rem;
  display: block;
  margin: 2px 0 0 0;
}

/* ============================ */
/* Buttons and Links Styling */
/* ============================ */



/* ============================ */
/* Hidden Elements */
/* ============================ */

/* Hides product metadata on single product pages */
.woocommerce-js div.product .product_meta {
    display: none; /* Removes the element from view */
}

/* Hides the "View Cart" success message */
.woocommerce-message {
    display: none; /* Removes the element from view */
}

/* Hides breadcrumbs from single blog posts */
.entry-meta {
    display: none; /* Removes the element from view */
}


/* ============================ */
/* Quantity Input Styling */
/* ============================ */

/* Hides spin buttons in WooCommerce quantity inputs */
.woocommerce-js .quantity input[type="number"]::-webkit-inner-spin-button,
.woocommerce-js .quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none; /* Removes spin buttons in WebKit browsers */
    margin: 0; /* Removes default margin */
}

.woocommerce-js .quantity input[type="number"] {
    -moz-appearance: textfield; /* Removes spin buttons in Firefox */
}

/* ============================ */
/* Wishlist Styling */
/* ============================ */

/* Styles for wcmamtx_intro_text1 */
.wcmamtx_intro_text1 {
    font-family: 'Aleo', serif !important; /* Uses Aleo font */
    font-weight: bold !important; /* Makes the text bold */
    font-size: 1.2em !important; /* Sets font size to 1.2em */
    color: #201F1D !important; /* Dark brown color */
    background-color: transparent !important; /* Removes background color */
}


/* ============================
   OLD Wishlist Counter Styling
   ============================ */
.wishlist_products_counter_number {
    position: absolute;
    background: #FF3737;
    color: white;
    padding-block: 0;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    width: 15px;
    height: 15px;
    left: 10px;
}
/* ============================ */

/* This was from post 2583 originally — the store page */

/*I added this CSS to make sure the buttons were present */

.woocommerce ul.products li.product.desktop-align-left .star-rating,
.woocommerce-page ul.products li.product.desktop-align-left .star-rating {
    display: none;
}