/* ===========================
   SMART LIVING FINDS
   "Shop The Most Wanted" section
   =========================== */

/* Section wrapper for the 3 cards */
.gift-section {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
}

/* Each product card */
.gift-card {
  background: #181818;                /* deep charcoal, not pure black */
  border-radius: 18px;
  color: #fff;
  width: 310px;                        /* keeps them same width in a row */
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(255,255,255,0.07); /* faint edge so it doesn’t melt into bg */
}

/* card hover motion / glow */
.gift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* small label row at the top of each card
   ex: "#1 Hydration Gift", "Teen Favorite", "Budget Win"
*/
.gift-card .gift-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  max-width: max-content;
}

/* image frame container */
.gift-img-wrap {
  width: 100%;
  background: #faf9f7;         /* cozy warm white */
  border: 1px solid #e6ded0;    /* warm beige border */
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;            /* forces consistent height even if img is shorter */
  padding: 0.75rem;
  margin-bottom: 1rem;
  text-align: center;
  overflow: hidden;
}

/* teen variant (light blush tint) */
.gift-img-wrap.teen {
  background: #fef8f9;
  border-color: #f3d8dd;
}

/* cozy / under $25 variant (soft cream) */
.gift-img-wrap.cozy {
  background: #f9f7f3;
  border-color: #e9e2d8;
}

/* the actual product image */
.gift-img-wrap img {
  max-width: 300px;   /* controls how big the cup appears */
  width: 100%;
  height: auto;
  display: block;
}

/* Product title link (ex: "Stanley Quencher Tumblers") */
.gift-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: #ffffff;
  text-align: left;
}

.gift-card h3 a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gift-card h3 a:hover {
  text-decoration-thickness: 2px;
}

/* Description text under the title */
.gift-card p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #dcdcdc;
  margin: 0 0 1rem;
  text-align: left;
}

/* CTA button at bottom of card */
.gift-card .gift-cta {
  display: inline-block;
  background: #ffffff;
  color: #000;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.65rem 1rem;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  border: 0;
  cursor: pointer;
}

.gift-card .gift-cta:hover {
  background: #f4f1ec;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* tiny arrow in button if you add one */
.gift-card .gift-cta .arrow {
  margin-left: 0.4rem;
  font-weight: 600;
}
/* mobile tweaks */
@media (max-width: 768px) {
  .gift-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .gift-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .gift-img-wrap {
    min-height: 200px;
  }

  .gift-img-wrap img {
    max-width: 150px;
  }

  .gift-card h3 {
    text-align: left;
  }

  .gift-card p {
    text-align: left;
  }

  .gift-card .gift-cta {
    width: 100%;
    text-align: center;
  }
	}
.gift-card {
  background: #111;               /* dark card */
  color: #fff;
  border-radius: 16px;
  padding: 16px 16px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  font-family: -apple-system, BlinkMacSystemFont,
               "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gift-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(#2a2a2a, #000);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 10px;
  width: fit-content;
  box-shadow: 0 8px 24px rgba(0,0,0,0.8);
}
.gift-card-badge span {
  display: inline-block;
}
.gift-img-wrap {
  background: #fff;                     /* white box behind product */
  border-radius: 10px;
  padding: 16px;
  min-height: 180px;                    /* keeps it tall on all cards */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border: 1px solid rgba(0,0,0,0.4);    /* subtle frame so it doesn't float */
}

.gift-img {
  width: 100%;
  max-width: 300px;                     /* <-- this is the “make it big” knob */
  height: auto;
  object-fit: contain;
  display: block;
}
.gift-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

.gift-card-title {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: underline;          /* looks like your screenshot */
  text-underline-offset: 2px;
}

.gift-card-title:hover {
  color: #fff;                          /* keep white */
  text-decoration: underline;
  text-decoration-thickness: 2px;       /* bolder underline on hover = that “hover” effect you lost */
}
/* --- Make product image area larger and balanced --- */
.gift-img-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  min-height: 260px;              /* taller image box */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 1px solid rgba(0,0,0,0.3);
}

/* --- Increase product image size --- */
.gift-img {
  width: 100%;
  max-width: 300px;              /* bumped from ~180px */
  height: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.15);        /* slight upscale for that “pop” */
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* --- Add hover zoom-in effect back --- */
.gift-img:hover {
  transform: scale(1.22);
  filter: brightness(1.05);
}
/* --- Responsive YouTube Embed Fix --- */
.responsive-video {
  position: relative;
  padding-bottom: 56.25%;  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 700px;        /* set your preferred desktop width */
  margin: 0 auto 24px auto; /* centers it and adds spacing below */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Optional: Slightly narrower on small screens */
@media (max-width: 768px) {
  .responsive-video {
    max-width: 100%;
    padding-bottom: 56.25%;
  }
}
/* --- Responsive YouTube Embed Fix --- */
.responsive-video {
  position: relative;
  padding-bottom: 56.25%;  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 700px;        /* set your preferred desktop width */
  margin: 0 auto 24px auto; /* centers it and adds spacing below */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Optional: Slightly narrower on small screens */
@media (max-width: 768px) {
  .responsive-video {
    max-width: 100%;
    padding-bottom: 56.25%;
  }
}
/* --- Mobile: make product images larger --- */
@media (max-width: 768px) {
  .gift-img-wrap {
    min-height: 380px;           /* slightly shorter white box for phones */
    padding: 16px;
  }

  .gift-img {
    max-width: 80vw;
		max-height: 80vw;
		width: auto
		height:auto
		/* allows much larger display within card */
    transform: scale(1.2);       /* gently enlarge the product */
  }

  .gift-card {
    padding: 14px 14px 18px;     /* keeps spacing tight but clean */
  }

  .gift-card-title {
    font-size: 17px;
		margin-top: 16px;
		line-height: 1.45;
		margin-bottom: 16px;
		/* improves readability on smaller screens */
  }

  .gift-card-desc {
    font-size: 14px;
  }

  .gift-card-button {
    font-size: 15px;
    padding: 13px 16px;
  }
	}
/* --- Mobile: make product images much larger --- */
@media (max-width: 768px) {
  .gift-img-wrap {
    min-height: 380px;           /* taller container for the larger image */
    padding: 8px;
  }

  .gift-img {
    max-width: 110%;             /* let it fill almost entire white area */
    transform: scale(1.5);      /* bigger image pop */
  }

  .gift-card {
    padding: 12px 12px 18px;
  }

  .gift-card-title {
    font-size: 16px;
  }

  .gift-card-desc {
    font-size: 15px;
  }

  .gift-card-button {
    font-size: 15px;
    padding: 13px 16px;
  }
}
/* --- Mobile: force product images to fill card --- */
@media (max-width: 768px) {
  .gift-img-wrap {
    min-height: 320px !important;      /* taller white background */
    padding: 0 !important;
    background: #fff !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gift-img {
    width: 95% !important;             /* nearly fills container */
    height: auto !important;
    max-height: 300px !important;
    object-fit: contain !important;    /* prevents stretching */
    transform: none !important;
  }

  .gift-card {
    padding: 12px 14px 20px;
  }

  .gift-card-title {
    font-size: 16px;
  }

  .gift-card-desc {
    font-size: 14px;
  }

  .gift-card-button {
    font-size: 14px;
    padding: 10px 16px;
  }
}
/* --- Mobile: oversized hero product image --- */
@media (max-width: 768px) {

  /* Card padding still comfy */
  .gift-card {
    padding: 12px 14px 20px;
  }

  /* Badge spacing tweak */
  .gift-card-badge {
    margin-bottom: 12px;
  }

  /* Image zone: bigger, less border */
  .gift-img-wrap {
    position: relative;
    background: #fff !important;
    border-radius: 8px;
    padding: 0 !important;
    min-height: 260px !important;        /* visible height of that white block */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;                    /* lets the image spill outside */
  }

  /* Make the product dominate */
  .gift-img {
    width: 150% !important;               /* goes a little past the white box edges */
    max-width: 150% !important;
    height: auto !important;
    max-height: 260px !important;
    object-fit: contain !important;
    transform: translateY(-6px);          /* nudge up so it feels centered */
  }

  /* Text section below image */
  .gift-card-title {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 16px;
  }

  .gift-card-desc {
    font-size: 14px;
    line-height: 1.45;
    margin-top: 8px;
  }

  .gift-card-button {
    font-size: 14px;
    padding: 10px 16px;
    margin-top: 16px;
  }
}
/* ============= CARD WRAPPER ============= */
.gift-card {
  background: radial-gradient(circle at 20% 20%, #1a1a1a 0%, #000 80%);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
  padding: 16px 16px 20px;
  color: #fff;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
}

/* space between cards on desktop */
.gift-card + .gift-card {
  margin-left: 16px;
}

/* ============= BADGE ============= */
.gift-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background:#000;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  box-shadow:0 8px 24px rgba(0,0,0,.9);
  font-size:14px;
  font-weight:600;
  line-height:1.3;
  padding:6px 10px;
  color:#fff;
  width:auto;
  max-width:fit-content;
}

/* ============= IMAGE BOX ============= */
.gift-img-wrap {
  background:#fff;
  border-radius:10px;
  box-shadow:0 12px 32px rgba(0,0,0,.6);
  border:1px solid rgba(0,0,0,.15);
  padding:16px;
  margin-top:12px;
  margin-bottom:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  /* This sets the visible "frame" height on desktop */
  min-height:260px;
}

/* the actual product image */
.gift-img {
  max-width: 200px;
  height: auto;
  display:block;
}

/* ============= TEXT AREA ============= */
.gift-card-body {
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* title link */
.gift-card-title {
  color:#fff;
  font-weight:600;
  font-size:16px;
  line-height:1.4;
  text-decoration:underline;
  text-underline-offset:3px;
}

.gift-card-title:hover {
  color:#fff;
  text-decoration-color:#fff;
  filter:brightness(1.2);
}

/* description */
.gift-card-desc {
  margin:0;
  color:#fff;
  font-size:14px;
  line-height:1.5;
}

/* ============= BUTTON ============= */
.gift-card-button {
  background: #fff;
  color:#000;
  font-size:14px;
  line-height:1.3;
  font-weight:500;
  border-radius:8px;
  padding:12px 16px;
  border:1px solid rgba(0,0,0,.7);
  box-shadow:0 10px 24px rgba(0,0,0,.6);
  text-decoration:none;
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:auto;
  max-width:fit-content;
  transition:all .16s ease;
}

.gift-card-button:hover {
  background:#000;
  color:#fff;
  border-color:#fff;
  box-shadow:0 16px 32px rgba(0,0,0,.9);
}
/* Responsive tuning */

@media (max-width: 768px) {
  .gift-card {
    max-width: 450%;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
  }

  .gift-img-wrap {
    min-height: 625px;
    padding: 10px;
  }

  .gift-img {
    max-width: 1200vw;
		max-height: 1200vw;
  }

  .gift-card-title {
    font-size: 17px;
  }

  .gift-card-desc {
    font-size: 15px;
    line-height: 1.5;
  }

  .gift-card-button {
    font-size: 15px;
    padding: 13px 16px;
  }
}

@media (min-width: 769px) {
  .gift-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    align-items: flex-start;
  }

  .gift-card {
    flex: 1 1 0;
    max-width: 150%;
  }

  .gift-img-wrap {
    min-height: 290px;
    padding: 3px;
  }

  .gift-img {
    max-width: 350px;
  }
}
.gift-card-button {
  position: relative;
  z-index: 10;
}
/* Hide Kadence / theme header+footer on the Gift Guide page only */
.page-id-53 .site-header,
.page-id-53 header.site-header,
.page-id-53 .site-footer,
.page-id-53 footer.site-footer,
.page-id-53 .storefront-handheld-footer-bar {
  display: none !important;
}

/* Remove weird top padding that Kadence normally gives the content container */
.page-id-53 .entry-content,
.page-id-53 .content-area,
.page-id-53 main,
.page-id-53 #primary,
.page-id-53 #content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Wrapper that holds just OUR header and then your cards */
.slf-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 16px 48px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #333;
}
/* kill native theme header/footer ONLY on this page */
.page-id-53 .site-header,
.page-id-53 header.site-header,
.page-id-53 .site-footer,
.page-id-53 footer.site-footer,
.page-id-53 .storefront-handheld-footer-bar {
  display: none !important;
}
/* kill native theme header/footer ONLY on this page */
.page-id-702 .site-header,
.page-id-702 header.site-header,
.page-id-702 .site-footer,
.page-id-702 footer.site-footer,
.page-id-702 .storefront-handheld-footer-bar {
  display: none !important;
}

/* overall wrapper */
.gift-page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 16px 64px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #333;
  background-color: #fff;
}

/* ===================== HEADER ===================== */

/* stack layout now: logo row on top, nav row below */
.slf-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #eee;
  padding-bottom: 16px;
  margin-bottom: 24px;
  gap: 12px; /* space between logo and nav row */
}

/* logo row */
.slf-logo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.slf-logo-img {
  width: 80px;   /* bigger logo */
  height: 80px;
  border-radius: 50%;
  border: 1px solid #000;
  object-fit: cover;
  display: block;
}

/* each top-level li */
.slf-item {
  position: relative;
}

/* pill button style */
.slf-link {
  display: inline-block;
  background: #f8f8f8;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease-in-out;
}

.slf-link:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ▼ caret for dropdown trigger */
.has-dropdown > .slf-link::after {
  content: " ▼";
  font-size: 11px;
  color: #666;
  margin-left: 4px;
}

/* dropdown menu */
.slf-dropdown {
  display: none;
  position: absolute;
  /* pull it right up under the pill */
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  padding: 8px 0;
  list-style: none;
  margin: 4px 0 0 0; /* small 4px gap instead of big space */
  z-index: 999;
}

/* show dropdown on hover */
.has-dropdown:hover .slf-dropdown {
  display: block;
}

/* dropdown links */
.slf-dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.slf-dropdown li a:hover {
  background: #f5f5f5;
  color: #7f54b3;
}

/* mobile tweaks */
@media (max-width: 600px) {
  .slf-header {
    align-items: flex-start;
  }

  .slf-nav-list {
    justify-content: flex-start;
  }
}

/* --- Smart Living Finds Gift Guide Header (Left Justified, Single-Border Logo) --- */

.slf-header {
  display: flex;
  align-items: left;
  justify-content: flex-start; /* left aligned layout */
  gap: 32px;                   /* space between logo and nav */
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  margin-bottom: 32px;
}

/* logo styling */
.slf-logo-img {
  width: 150px;      /* larger logo size */
  height: 150px;
  border-radius: 50%;
  border: 0px solid #000; /* single clean black border */
  object-fit: contain;
  display: block;
}

/* navigation container */
.slf-nav {
  display: flex;
  justify-content: flex-start;
  flex: 1;
}

/* top-level nav list */
.slf-nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: left;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* pill-style links */
.slf-link {
  display: inline-block;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  white-space: nowrap;
}

}

/* dropdown container */
.has-dropdown {
  position: relative;
}

//* dropdown menu */
.has-dropdown .slf-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px); /* tighter gap — change from +4px */
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  z-index: 999;
}


/* show dropdown on hover */
.has-dropdown:hover .slf-dropdown {
  display: block;
}

/* dropdown links */
.slf-dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

}
/* =========================
   FOOTER MATCH MAIN DOMAIN
   ========================= */

.slf-footer {
  background: #fafafa;            /* light gray like main site */
  border-top: 1px solid #e5e5e5;  /* subtle divider line */
  padding: 24px 16px 32px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #333;
}

.slf-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* disclosure line */
.slf-disclosure {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  font-weight: 400;
}

.slf-disclosure a {
  color: #333;
  text-decoration: none;
}

.slf-disclosure a:hover {
  text-decoration: underline;
}

/* social icons row */
.slf-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
}

.slf-social-row a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dcdcdc;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  transition: all .15s ease-in-out;
}

.slf-social-row a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* copyright / woo line */
.slf-bottomline {
  border-top: 1px solid #e5e5e5;
  margin: 16px auto 0;
  padding-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #777;
  font-weight: 400;
}

/* tighten on mobile */
@media (max-width: 480px) {
  .slf-footer {
    padding: 20px 12px 28px;
  }

  .slf-disclosure {
    font-size: 13px;
  }

  .slf-bottomline {
    font-size: 12px;
  }

  .slf-social-row a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
/* === Gift Guide Footer Styles === */
.slf-footer {
  border-top: 1px solid #e5e5e5;
  padding: 24px 16px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
  max-width: 1280px;
  margin: 0 auto;
}

.slf-footer a {
  color: #444;
  text-decoration: none;
}
.slf-footer a:hover {
  text-decoration: underline;
}

/* top row: text on left, icons on right */
.slf-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.slf-footer-text {
  margin: 0;
  max-width: 800px;
  font-size: 14px;
  color: #444;
}

/* icon row */
.slf-footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.slf-footer-social li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: #fff;
  font-size: 14px;
  line-height: 1;
}

.slf-footer-social li a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* bottom row: small, centered */
.slf-footer-bottom {
  font-size: 13px;
  color: #666;
  text-align: left;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

/* mobile stack: put icons under text */
@media (max-width: 600px) {
  .slf-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .slf-footer-bottom {
    text-align: left;
  }
}
/* === Gift Guide Footer Styles === */
.slf-footer {
  border-top: 1px solid #e5e5e5;
  padding: 24px 16px 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
  max-width: 1280px;
  margin: 0 auto;
}

.slf-footer a {
  color: #444;
  text-decoration: none;
}
.slf-footer a:hover {
  text-decoration: underline;
}

/* top row: text on left, icons on right */
.slf-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.slf-footer-text {
  margin: 0;
  max-width: 800px;
  font-size: 14px;
  color: #444;
}

/* icon row */
.slf-footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.slf-footer-social li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: #fff;
  font-size: 14px;
  line-height: 1;
}

.slf-footer-social li a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* bottom row: small, centered */
.slf-footer-bottom {
  font-size: 13px;
  color: #666;
  text-align: left;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

/* mobile stack: put icons under text */
@media (max-width: 600px) {
  .slf-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .slf-footer-bottom {
    text-align: left;
  }
}
/* FORCE heading block after hero to center + sit lower */
h2.wp-block-heading {
  text-align: center !important;
  margin-top: 40px !important;
  margin-bottom: 8px !important;
}

h2.wp-block-heading + p {
  text-align: center !important;
  max-width: 600px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}
/* Center product cards on mobile screens */
@media (max-width: 768px) {
  .wp-block-columns {
    justify-content: center !important;
  }
  .wp-block-column {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* ————— FORCE USE MY REAL HEADER, HIDE STARTER TEMPLATE HEADER ————— */

/* Hide the imported “one page / services / examples / faq” header block */
header.site-header-transparent,
header.site-header-transparent + .kadence-sticky-header,
.kadence-header-template,
.kadence-sticky-header .one-page-header,
.one-page-header,
header .main-navigation-wrap.one-page-nav,
.header-starter-area,
.header-area,
header .menu-example-nav,
header .menu-services-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* Make sure the real Kadence header row shows */
header#main-header,
header.site-header,
.kadence-header,
.kadence-header .site-branding,
.kadence-header .primary-navigation,
.kadence-header .primary-navigation ul,
.kadence-header .primary-navigation > ul.menu,
.kadence-header .primary-navigation .menu-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
}

/* Make sure menu items (Gift Header Menu) look like pills */
.kadence-header .primary-navigation > ul.menu > li > a {
    display: inline-block;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1.2;
    background: #fff;
    color: #111;
    text-decoration: none;
    margin: 4px 6px;
}

/* Hover: brand green */
.kadence-header .primary-navigation > ul.menu > li > a:hover {
    background: #7db9b6;
    color: #fff !important;
    border-color: #7db9b6;
}
/* Push custom hard-coded header down so it's not hidden under admin bar */
.slf-header-wrapper {
  margin-top: 60px;
}

/* When you're logged out (no admin bar), bring it back up a bit */
body:not(.admin-bar) .slf-header-wrapper {
  margin-top: 24px;
}
/* Center logo & align header perfectly in Safari and Chrome */
.slf-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.slf-header-wrapper img {
  display: block;
  max-width: 160px;
  height: auto;
  margin-bottom: 8px;
}

.slf-header-wrapper nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.slf-header-wrapper nav a {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  background: #fff;
  transition: all 0.25s ease;
}

.slf-header-wrapper nav a:hover {
  background: #111;
  color: #fff;
}
/* Brand teal hover + active link */
.slf-header-wrapper nav a:hover,
.slf-header-wrapper nav a:focus,
.slf-header-wrapper nav a.active {
  background-color: #b3d8cf;
  color: #111;
  border-color: #b3d8cf;
}
margin-top: 80px;

/* ======= BRANDED DROPDOWN STYLE ======= */
.slf-header-wrapper nav li ul {
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

.slf-header-wrapper nav li:hover ul {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

.slf-header-wrapper nav li ul li a {
  display: block;
  padding: 10px 20px;
  border: none;
  background: #fff;
  color: #111;
  transition: all 0.25s ease;
  font-weight: 500;
  font-size: 15px;
}

/* 🩵 Brand hover — teal highlight + rounded corners */
.slf-header-wrapper nav li ul li a:hover {
  background-color: #b3d8cf;
  color: #111;
  border-radius: 8px;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Brand teal hover and active state for all menu links */
.slf-header-wrapper nav a:hover,
.slf-header-wrapper nav a:focus,
.slf-header-wrapper nav a.active {
  background-color: #b3d8cf;  /* brand teal */
  color: #111;                /* readable dark text */
  border-color: #b3d8cf;
}

/* Keep dropdown open parent (Shop Catalog ▾) styled while hovered */
.slf-header-wrapper nav li:hover > a {
  background-color: #b3d8cf;
  color: #111;
  border-color: #b3d8cf;
}

/* Consistent hero padding across all Gift Guide pages */
.gift-hero-block {
  padding-top: 140px;
  padding-bottom: 90px;
}

@media (max-width: 768px) {
  .gift-hero-block {
    padding-top: 100px !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    text-align: center;
  }

  .gift-hero-block h1 {
    font-size: 1.4rem !important;
    line-height: 1.4 !important;
  }

  .gift-hero-block p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .gift-hero-block .wp-block-button__link {
    font-size: 0.95rem !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 999px !important;
  }
}
/* Force global header to sit above hero and stay visible */
.site-header {
  position: relative;
  z-index: 9999;
  background: #ffffff !important;   /* solid header, not transparent */
}

/* Make sure the hero on gift pages never sits under the header */
.gift-hero {
  padding-top: 120px;        /* desktop top spacing */
  margin-top: 0 !important;  /* stop it from pulling upward */
}

/* Mobile tweak so hero text doesn't hide under the hamburger menu */
@media (max-width: 768px) {
  .gift-hero {
    padding-top: 90px;
  }
}
/* === Smart Living Finds Gift Subdomain — Pill Navigation === */

/* Base menu link style */
.main-navigation .primary-menu > li > a {
  background-color: transparent;
  border-radius: 9999px; /* makes the pill shape */
  padding: 10px 18px;
  color: #111111; /* default text color */
  transition: all 0.25s ease;
  font-weight: 500;
}

/* Hover & active (teal pill) */
.main-navigation .primary-menu > li > a:hover,
.main-navigation .primary-menu > li.current-menu-item > a {
  background-color: #0fb9b1; /* teal hover color */
  color: #ffffff; /* white text when active or hovered */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Space out the pills a little */
.main-navigation .primary-menu > li {
  margin: 0 6px;
}

/* Optional: subtle transition smoothing for menu container */
.header-navigation {
  transition: all 0.25s ease;
}
/* Fallback for Kadence link wrappers */
.site-header .kadence-header-navigation .menu-item > a .menu-item-link-wrap {
  background-color: transparent !important;
  border-radius: 9999px !important;
  padding: 10px 18px !important;
  display: inline-block;
  transition: all 0.25s ease;
}
.site-header .kadence-header-navigation .menu-item > a:hover .menu-item-link-wrap,
.site-header .kadence-header-navigation .menu-item.current-menu-item > a .menu-item-link-wrap {
  background-color: #0fb9b1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
/* Smart Living Finds - pill nav with brand teal #91B6B9 */

/* default state */
header.site-header nav a,
header.site-header nav a .menu-item-link-wrap {
  background-color: transparent !important;
  border-radius: 9999px !important;
  padding: 10px 18px !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  color: #111111 !important;
  font-weight: 500 !important;
  border: none !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

/* hover + current/active */
header.site-header nav a:hover,
header.site-header nav .current-menu-item > a,
header.site-header nav a:hover .menu-item-link-wrap,
header.site-header nav .current-menu-item > a .menu-item-link-wrap {
  background-color: #91B6B9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
  text-decoration: none !important;
  transform: translateY(-1px) !important;
}

/* spacing between each pill */
header.site-header nav li.menu-item {
  margin: 0 6px !important;
}
/* --- Minor visual tune for Smart Living Finds pill nav --- */

/* Add a bit more vertical breathing room */
header.site-header nav li.menu-item {
  margin: 4px 8px !important;
}

/* Fix dropdown menu spacing so it aligns nicely under parent pills */
header.site-header nav ul ul.sub-menu {
  border-radius: 10px !important;
  padding: 6px 0 !important;
  background-color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
}

/* Dropdown links - make them feel lighter */
header.site-header nav ul ul.sub-menu a {
  border-radius: 8px !important;
  padding: 8px 14px !important;
  color: #111 !important;
  background: transparent !important;
}

/* Hover for dropdown links */
header.site-header nav ul ul.sub-menu a:hover {
  background-color: #91B6B9 !important;
  color: #fff !important;
}
/* Dropdown menu styling */
header.site-header nav ul ul.sub-menu {
  background-color: #ffffff !important;
  border-radius: 10px !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08) !important;
  padding: 6px 0 !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
}

/* Links inside dropdown */
header.site-header nav ul ul.sub-menu > li > a {
  background: transparent !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
  color: #111111 !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}

/* Hover inside dropdown */
header.site-header nav ul ul.sub-menu > li > a:hover {
  background-color: #91B6B9 !important;
  color: #ffffff !important;
}
/* --- Mobile menu styling to match pill/nav theme --- */

/* Background of the slide-out panel */
.kadence-navigation-drawer {
  background-color: #111111 !important;   /* deep charcoal for contrast */
}

/* Top-level links */
.kadence-navigation-drawer nav a {
  color: #f1f1f1 !important;
  font-weight: 500 !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
}

/* Hover + active link color */
.kadence-navigation-drawer nav a:hover,
.kadence-navigation-drawer nav .current-menu-item > a,
.kadence-navigation-drawer nav .current-menu-ancestor > a {
  background-color: #91B6B9 !important;   /* brand teal */
  color: #ffffff !important;
}

/* Dropdown (submenu) items */
.kadence-navigation-drawer nav ul ul.sub-menu a {
  padding-left: 24px !important;
  color: #e2e2e2 !important;
}

/* Dropdown hover */
.kadence-navigation-drawer nav ul ul.sub-menu a:hover {
  background-color: rgba(145,182,185,0.25) !important;
  color: #ffffff !
/* Show submenus in Storefront mobile menu */
.handheld-navigation .menu-item-has-children > a:after {
  content: "▾";
  float: right;
  font-size: 16px;
  margin-left: 8px;
}

.handheld-navigation .sub-menu {
  display: none;
  padding-left: 15px;
}

.handheld-navigation .menu-item-has-children.open > .sub-menu {
  display: block;
}
/* Force Storefront mobile menu to show all submenus */
@media (max-width: 782px){
  .handheld-navigation .sub-menu{
    display:block !important;      /* always visible */
    padding-left:16px;
  }
  /* keep parent tap from navigating if it's just a section label */
  .handheld-navigation .menu-item-has-children > a[href="#"],
  .handheld-navigation .menu-item-has-children > a[href=""]{
    pointer-events:none;
    opacity:.95;
  }
}
/* ===== SLF Mobile Nav — match main domain ===== */
:root{
  --slf-teal:#91B6B9;
  --slf-ink:#111;
  --slf-muted:#666;
  --slf-pill-bg:#fff;
  --slf-pill-bd:#e8eaec;
}

@media (max-width: 781px){
  /* Hamburger button */
  .menu-toggle,
  button.menu-toggle {
    border:1px solid var(--slf-pill-bd);
    background:#fff;
    color:var(--slf-ink);
    border-radius:999px;
    padding:10px 14px;
    line-height:1;
    font-weight:700;
  }
  .menu-toggle:hover,
  .menu-toggle:focus { background:var(--slf-teal); color:#fff; border-color:var(--slf-teal); }

  /* Handheld container (Storefront clones into .handheld-navigation) */
  .handheld-navigation,
  .main-navigation.toggled {
    background:#fff;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    border-radius:16px;
    margin:10px 12px;
    padding:10px;
  }

  /* Top-level links → pill style */
  .handheld-navigation ul.menu > li > a,
  .main-navigation.toggled ul.menu > li > a {
    display:block;
    background:var(--slf-pill-bg);
    border:1px solid var(--slf-pill-bd);
    color:var(--slf-ink);
    border-radius:999px;
    padding:12px 16px;
    margin:6px 4px;
    font-weight:800;
    text-decoration:none;
  }
  .handheld-navigation ul.menu > li > a:hover,
  .handheld-navigation ul.menu > li > a:focus,
  .main-navigation.toggled ul.menu > li > a:hover,
  .main-navigation.toggled ul.menu > li > a:focus,
  .handheld-navigation ul.menu > li.current-menu-item > a,
  .main-navigation.toggled ul.menu > li.current-menu-item > a {
    background:var(--slf-teal);
    color:#fff;
    border-color:var(--slf-teal);
  }

  /* Submenu block */
  .handheld-navigation ul.sub-menu,
  .main-navigation.toggled ul.sub-menu {
    margin:6px 0 8px 12px;
    padding-left:10px;
    border-left:2px solid color-mix(in srgb, var(--slf-teal) 55%, transparent);
  }
  .handheld-navigation ul.sub-menu a,
  .main-navigation.toggled ul.sub-menu a {
    background:#f9fbfb;
    border-color:#e9f0f0;
    font-weight:700;
  }
  .handheld-navigation ul.sub-menu a:hover,
  .main-navigation.toggled ul.sub-menu a:hover {
    background:var(--slf-teal);
    color:#fff;
    border-color:var(--slf-teal);
  }

  /* Open/close chevrons on items with children */
  .handheld-navigation .dropdown-toggle,
  .main-navigation .dropdown-toggle {
    width:30px; height:30px;
    margin-left:8px;
    border-radius:999px;
    border:1px solid var(--slf-pill-bd);
    background:#f6f9f9;
    color:var(--slf-teal);
  }
  .handheld-navigation .dropdown-toggle:hover,
  .main-navigation .dropdown-toggle:hover {
    background:var(--slf-teal);
    color:#fff; border-color:var(--slf-teal);
  }

  /* Improve spacing + tap targets */
  .handheld-navigation ul.menu,
  .main-navigation.toggled ul.menu { row-gap:4px; }
}

/* Optional: keep desktop colors consistent for hover */
@media (min-width: 782px){
  .main-navigation ul.menu > li > a:hover,
  .main-navigation ul.menu > li.current-menu-item > a {
    color:#fff !important;
    background:var(--slf-teal) !important;
    border-radius:999px;
  }
}
/* --- Smart Living Finds: Footer tidy + OneLink note --- */
.site-footer .slf-footer-note{
  max-width: 900px;
  margin: 0 auto 10px;
  text-align: center;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}
.site-footer .slf-footer-links a{
  color: #667085;
  text-decoration: none;
  font-weight: 600;
}
.site-footer .slf-footer-links a:hover{
  color: #91B6B9; /* your brand teal */
}

/* Remove accidental bullets/spacing in footer areas */
.site-footer .slf-footer-note ul,
.site-footer .slf-footer-note li,
.site-footer .widget ul,
.site-footer .widget li{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Stop slider/carousel pagination dots from showing in the footer */
.site-footer .slick-dots,
.site-footer .swiper-pagination,
.site-footer .swiper-pagination-bullets{
  display: none !important;
}

/* Optional: unify footer credit line */
.site-footer .site-info,
.footer-bottom{
  text-align: center;
  color: #777;
  font-size: 13px;
}
/* --- MOBILE NAV CLEAN FIX --- */

/* Panel background */
.off-canvas-panel {
  background: #0C1114 !important;
}

/* Main links */
.off-canvas-panel .mobile-navigation a {
  color: #F5F2EC !important; /* light cream text for contrast */
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  padding: 12px 20px !important;
}

/* Hover / active highlight */
.off-canvas-panel .mobile-navigation a:hover,
.off-canvas-panel .mobile-navigation .current-menu-item > a {
  color: #91B6B9 !important; /* TEAL highlight */
}

/* Divider lines — soft + shorter */
.off-canvas-panel .mobile-navigation li {
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  margin: 0 12px !important;
}

/* Remove left strip from earlier code */
.off-canvas-panel .mobile-navigation .sub-menu {
  border-left: none !important;
  padding: 6px 0 6px 26px !important;
}

/* Submenu link style */
.off-canvas-panel .mobile-navigation .sub-menu a {
  font-size: 15px !important;
  color: #D7D3CC !important;
}

/* Toggle icon (caret) color */
.off-canvas-panel .submenu-toggle-icon,
.off-canvas-panel .drawer-toggle .kadence-svg-icon {
  color: #91B6B9 !important;
}

/* Make X close icon visible */
.off-canvas-panel .drawer-close .kadence-svg-icon {
  color: #F5F2EC !important;
}
/* ============================
   Smart Living Finds – Unified Buttons
   Works for Gutenberg, Kadence, WooCommerce, WPForms, etc.
   ============================ */
:root{
  --slf-teal:#91B6B9;        /* brand teal */
  --slf-cream:#F8F3ED;       /* soft cream */
  --slf-ink:#111111;         /* dark text */
  --slf-radius:999px;        /* pill */
  --slf-pad-y:.6em;
  --slf-pad-x:1.6em;
  --slf-shadow-hover:0 4px 14px rgba(0,0,0,.15);
  --slf-focus:0 0 0 3px rgba(145,182,185,.35);
}

/* Base targets (buttons & submit inputs across the stack) */
button,
.button,
.wp-block-button__link,
input[type="submit"],
input[type="button"],
input[type="reset"],
/* WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.add_to_cart_button,
/* WPForms */
.wpforms-form button,
.wpforms-submit,
.wpforms-page-button {
  -webkit-appearance: none;
  appearance: none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:var(--slf-pad-y) var(--slf-pad-x);
  border-radius:var(--slf-radius);
  border:1px solid transparent;
  background:var(--slf-teal);
  color:#fff;
  font-weight:700;
  line-height:1.2;
  text-decoration:none !important;
  cursor:pointer;
  transition:background-color .2s ease, color .2s ease, border-color .2s ease,
             box-shadow .25s ease, transform .12s ease;
}

/* Hover / Focus (gentle lift) */
button:hover,
.button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.add_to_cart_button:hover,
.wpforms-form button:hover,
.wpforms-submit:hover,
.wpforms-page-button:hover,
button:focus,
.button:focus,
.wp-block-button__link:focus,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus,
.add_to_cart_button:focus,
.wpforms-form button:focus,
.wpforms-submit:focus,
.wpforms-page-button:focus {
  background:var(--slf-cream);
  color:var(--slf-ink);
  border-color:var(--slf-teal);
  box-shadow:var(--slf-shadow-hover), var(--slf-focus);
  transform:translateY(-1px);
  outline:0;
}

/* Active (tap) – tiny press */
button:active,
.button:active,
.wp-block-button__link:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active,
.woocommerce a.button:active,
.woocommerce button.button:active,
.woocommerce input.button:active,
.add_to_cart_button:active,
.wpforms-form button:active,
.wpforms-submit:active,
.wpforms-page-button:active {
  transform:translateY(0);
  box-shadow:var(--slf-shadow-hover);
}

/* Disabled */
button[disabled],
.button.disabled,
.wp-block-button__link[aria-disabled="true"],
input[type="submit"][disabled],
input[type="button"][disabled],
.woocommerce a.button.disabled,
.woocommerce button.button.disabled,
.woocommerce input.button.disabled,
.wpforms-submit[disabled] {
  opacity:.55;
  cursor:not-allowed;
  box-shadow:none;
  transform:none;
}

/* ===== Outline variant =====
   Applies automatically to Gutenberg "Outline" buttons,
   or anything you give the .outline or .btn-outline class. */
.wp-block-button.is-style-outline .wp-block-button__link,
.button.outline,
.btn-outline,
.wpforms-submit.outline {
  background:transparent;
  color:var(--slf-ink);
  border-color:var(--slf-teal);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.button.outline:hover,
.btn-outline:hover,
.wpforms-submit.outline:hover {
  background:var(--slf-teal);
  color:#fff;
  box-shadow:var(--slf-shadow-hover), var(--slf-focus);
}

/* Woo “added to cart” link style consistency */
.woocommerce a.added_to_cart {
  display:inline-flex;
  align-items:center;
  padding:var(--slf-pad-y) var(--slf-pad-x);
  border-radius:var(--slf-radius);
  border:1px solid var(--slf-teal);
  color:var(--slf-ink);
}
.woocommerce a.added_to_cart:hover {
  background:var(--slf-teal);
  color:#fff;
}

/* Ensure .wp-block-button wrapper doesn’t override radius */
.wp-block-button .wp-block-button__link { border-radius:var(--slf-radius); 
}
/* Off-canvas drawer to match main domain */
#mobile-drawer, .off-canvas-drawer, .kt-off-canvas-panel {
  background:#FFF4E8;
}

/* Menu text + dividers */
#mobile-drawer .menu a,
.kadence-mobile-menu a {
  color:#111111;
  font-weight:600;
  letter-spacing:.02em;
}

#mobile-drawer .menu li,
.kadence-mobile-menu li {
  border-bottom:1px solid #E8E1D9;
}

/* Hover for links */
#mobile-drawer .menu a:hover,
.kadence-mobile-menu a:hover {
  background:#F1EAE2;
  color:#111111;
}

/* Submenu padding */
#mobile-drawer .sub-menu a,
.kadence-mobile-menu .sub-menu a {
  padding:14px 22px;
}

/* Dark overlay behind the drawer */
.kadence-off-canvas-overlay { background: rgba(0,0,0,.55); }
/* === OneLink Globe + Tooltip (mobile-first) === */
.slf-onelink-flag.flag-tooltip{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;              /* globe size */
  line-height:1;
  width:28px; height:28px;
  margin:0 8px 0 6px;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}

.flag-tooltip .tip{
  position:absolute;
  right:0; top:30px;           /* sits just below the globe */
  background:#FFF4E8;          /* your cream */
  color:#111111;               /* ink */
  border:1px solid #E3DACC;    /* soft line */
  border-radius:8px;
  padding:8px 12px;
  font-size:13px;
  white-space:nowrap;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  opacity:0; visibility:hidden; transform:translateY(-4px);
  transition:opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 9999;
}

/* Show on hover (desktop) */
.flag-tooltip:hover .tip{ 
  opacity:1; visibility:visible; transform:translateY(0); transition-delay:0s;
}

/* Show on focus (keyboard) — accessibility */
.flag-tooltip:focus .tip,
.flag-tooltip:focus-within .tip{
  opacity:1; visibility:visible; transform:translateY(0); transition-delay:0s;
}

/* Show when activated via JS class (mobile tap) */
.flag-tooltip.is-open .tip{
  opacity:1; visibility:visible; transform:translateY(0); transition-delay:0s;
}
	.related-searches {
  background: #FAF7F2; /* cozy cream */
  padding: 24px 22px;
  border-radius: 14px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  border: 1px solid #f0ece6;
}

.related-searches h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #444;
  font-weight: 600;
}

.related-searches ul {
  padding-left: 20px;
  margin: 0;
}

.related-searches li {
  margin-bottom: 8px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.related-searches a {
  color: #6A8A8C; /* subtle cozy teal accent */
  text-decoration: none;
}

.related-searches a:hover {
  text-decoration: underline;
}
.slf-cozy-video {
    max-width: 780px;                /* cozy, not too wide */
    margin: 0 auto 40px auto;        /* center + cozy spacing below */
    background: rgba(255, 255, 255, 0.6);  /* soft white backdrop */
    padding: 18px;                   /* adds cozy breathing room */
    border-radius: 18px;             /* rounded corners */
    box-shadow: 0 8px 22px rgba(0,0,0,0.08); /* soft cozy shadow */
    backdrop-filter: blur(6px);      /* subtle glassy cozy feel */
}

/* Make the iframe responsive */
.slf-cozy-video iframe {
    width: 100%;
    height: 430px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .slf-cozy-video {
        padding: 14px;
        border-radius: 14px;
    }
    .slf-cozy-video iframe {
        height: 260px;               /* perfect mobile height */
    }
}
.slf-cozy-video {
    max-width: 760px;
    margin: 0 auto 40px auto;
    background: rgba(255, 255, 255, 0.55);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* Make the video responsive */
.slf-cozy-video iframe {
    width: 100%;
    height: 430px;
    border-radius: 14px;
    border: none;
}

@media (max-width: 768px) {
    .slf-cozy-video {
        padding: 14px;
        border-radius: 16px;
    }
    .slf-cozy-video iframe {
        height: 250px;
    }
}
.slf-cozy-video {
  max-width: 760px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.55);
  padding: 20px;
  border-radius: 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* Iframe inside */
.slf-cozy-video iframe {
  width: 100%;
  height: 430px;
  border-radius: 14px;
  border: none;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .slf-cozy-video {
    padding: 14px;
    border-radius: 16px;
  }

  .slf-cozy-video iframe {
    height: 250px;
  }
}
/* --- Cozy Video Container --- */
.slf-video-wrap {
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

/* --- Cozy Aesthetic Video Styling --- */
.slf-cozy-video {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  padding: 20px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

/* Responsive iframe */
.slf-cozy-video iframe {
  width: 100%;
  height: 430px;
  border-radius: 14px;
  border: none;
}
	/* Force product / card titles to be readable */
.kadence-product-grid a,
.kadence-product-grid h3,
.kadence-product-grid h4,
.kt-blocks-post-grid-item h2 a,
.kt-blocks-post-grid-item h3 a,
.kt-blocks-post-grid-item .entry-title a,
.kb-card a,
.kb-card-title,
.kb-adv-heading-link,
.kadence-image-grid-item a,
.kb-image-overlay .kb-image-link,
.kb-image-overlay .kb-image-link span {
    color: #222222 !important;   /* warm charcoal */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .slf-cozy-video {
    padding: 14px;
    border-radius: 16px;
  }
  .slf-cozy-video iframe {
    height: 250px;
  }
}
/* Fix product card title color (SLF brand cozy black) */
.kadence-product-title,
.kadence-card-title,
.product-grid-title,
.kb-title-text {
    color: #2b2b2b !important;  /* warm charcoal */
}

/* Ensure subtitle or price text stays visible */
.kadence-product-subtitle,
.kb-sub-title {
    color: #4a4a4a !important;
}

/* Fix overlay situations where background is white */
.kb-image-overlay,
.kadence-image-overlay {
    background: rgba(255, 255, 255, 0) !important;
}
	/* --- Emergency fix: make all link titles readable on Test Amazon Gift Guide page --- */
.page-id-1389 .entry-content a,
.page-id-1389 .entry-content h2,
.page-id-1389 .entry-content h3,
.page-id-1389 .entry-content h4 {
    color: #111827 !important;   /* dark cozy charcoal */
}
	/* Fix product card title color sitewide */
.entry-content .kt-blocks-products-grid a,
.entry-content .kt-blocks-products-grid a:visited {
    color: #222 !important;
}

/* Optional: dark title only for this page */
.page-id-1389 .kt-blocks-products-grid a {
    color: #222 !important;
}
	.page-id-1389 .kt-blocks-products-grid a {
    color: #3A3732 !important;  /* Warm cozy brown */
    font-weight: 600;
    letter-spacing: 0.2px;
}
.page-id-1389 h3 a {
    color: #222 !important;
}
.wp-block-html h3 a {
    color: #222 !important;
}
/* PAGE 1389 – force product titles + links to dark */
.page-id-1389 h3,
.page-id-1389 h3 a,
.page-id-1389 h3 a:visited {
  color: #222222 !important;
}

/* Make sure body text in those cards is readable too */
.page-id-1389 .gift-card p,
.page-id-1389 .gift p,
.page-id-1389 p {
  color: #374151 !important;
}
/* Cozy video styling */
.page-id-1389 .slf-cozy-video {
  max-width: 760px;
  margin: 0 auto 24px auto;
  background: rgba(255,255,255,0.95);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}

.page-id-1389 .slf-cozy-video iframe {
  width: 100%;
  height: 430px;
  border-radius: 14px;
  border: none;
}

@media (max-width: 768px) {
  .page-id-1389 .slf-cozy-video {
    padding: 12px;
  }
  .page-id-1389 .slf-cozy-video iframe {
    height: 250px;
  }
}
/* Fix giant spacing below product cards */
.gift-card, 
.gift-card.cozy {
    margin-bottom: 40px !important;
    padding-bottom: 0 !important;
}

/* Make sure nothing expands massively on mobile */
.gift-img-wrap img {
    max-height: 280px !important;
    object-fit: contain !important;
}

/* Force the section before your video to collapse correctly */
.kb-row-layout-wrap,
.wp-block-kadence-rowlayout {
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}
/* Stack product cards on mobile */
@media (max-width: 768px) {
  .gift-grid {
    grid-template-columns: 1fr !important;
  }

  .gift-card,
  .gift-card.cozy {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* =========================
   SLF GLOBAL LAYOUT SYSTEM
========================= */

/* Universal section wrapper */
.slf-section {
  max-width: 900px;
  margin: 48px auto;
  padding: 0 16px;
}

/* Headings */
.slf-section h2,
.slf-section h3 {
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Paragraphs */
.slf-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #475569;
}

/* Centered text blocks */
.slf-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Lists (Related Searches / Links) */
.slf-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.slf-section li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* FAQ consistency */
.slf-faq-wrap {
  max-width: 900px;
  margin: 56px auto;
  padding: 0 16px;
}

/* Video section */
.slf-video-wrap {
  max-width: 900px;
  margin: 48px auto;
  padding: 0 16px;
}
/* ============================
   SLF GIFT GUIDE DESIGN SYSTEM
============================ */

/* SECTION WRAPPER */
.slf-section {
  max-width: 900px;
  margin: 56px auto;
  padding: 0 16px;
}

/* CENTERED VARIANT */
.slf-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADINGS */
.slf-section h1,
.slf-section h2 {
  margin-bottom: 16px;
  line-height: 1.25;
}

.slf-section h3 {
  margin-bottom: 12px;
  line-height: 1.3;
}

/* PARAGRAPHS */
.slf-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #475569;
}

/* LINKS */
.slf-section a {
  font-weight: 500;
}

/* LISTS (Related / You May Also Like) */
.slf-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.slf-section li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* PRODUCT GRID */
.gift-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 16px;
}

/* PRODUCT CARD */
.gift-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(15,23,42,.08);
  display: flex;
  flex-direction: column;
}

/* BADGE */
.gift-badge {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* IMAGE */
.gift-img-wrap img {
  height: 240px;
  object-fit: contain;
}

/* CTA */
.gift-cta {
  margin-top: auto;
  border-radius: 999px;
}

/* FAQ */
.slf-faq-wrap {
  max-width: 900px;
  margin: 64px auto;
  padding: 0 16px;
}

/* VIDEO */
.slf-video-wrap {
  max-width: 900px;
  margin: 56px auto;
  padding: 0 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gift-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gift-section {
    grid-template-columns: 1fr;
  }
}
/* ============================
   SLF GIFT GUIDE BACKGROUND
   (Warm Cream White)
============================ */

/* Default page background */
body {
  background-color: #faf8f6;
}

/* Ensure gift guide sections inherit warmth */
.slf-section {
  background: transparent;
}
.slf-faq-wrap {
  max-width: 900px;
  margin: 56px auto;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 20px;
}

.slf-faq-item {
  margin-bottom: 18px;
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
/* ============================
   SLF Gift Guide Background
   Canonical cream tone
============================ */

body.page .wp-site-blocks,
body.single .wp-site-blocks {
  background-color: #faf8f5;
}
/* =====================================
   SLF GIFT GUIDE – CANONICAL BACKGROUND
   Overrides Kadence row + block drift
===================================== */

body.page,
body.single {
  background-color: #faf8f5 !important;
}

.wp-site-blocks,
.entry-content,
.wp-block-group,
.wp-block-kadence-rowlayout {
  background-color: transparent !important;
}
/* =====================================
   FORCE REMOVE KADENCE YELLOW BACKGROUNDS
===================================== */

/* Kill palette8 / yellow rows */
.wp-block-kadence-rowlayout.has-theme-palette-8-background-color,
.wp-block-kadence-rowlayout[class*="theme-palette8"],
.wp-block-kadence-rowlayout[style*="palette8"] {
  background: transparent !important;
}

/* Ensure consistent cream canvas */
body,
.wp-site-blocks,
.entry-content {
  background-color: #faf8f5 !important;
}
/* =========================================
   FORCE WIDTH CONSTRAINT INSIDE KADENCE ROW
========================================= */

.wp-block-kadence-rowlayout .slf-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Ensure product grids never stretch */
.wp-block-kadence-rowlayout .gift-section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/* === FORCE UNIFIED CREAM BACKGROUND FOR GIFT GUIDES === */

/* Page canvas */
body.page .site-content,
body.page .content-area,
body.page .entry-content {
  background: #faf8f5 !important;
}

/* Kadence inner wrappers */
body.page .content-wrap,
body.page .inner-wrap,
body.page .entry {
  background: #faf8f5 !important;
}

/* Ensure rows don’t reintroduce palette colors */
body.page .wp-block-kadence-rowlayout {
  background: transparent !important;
}
/* === REMOVE YELLOW FROM PRODUCT GRID ROW === */

/* Target the Kadence Row that wraps gift cards */
.wp-block-kadence-rowlayout#home,
.wp-block-kadence-rowlayout[anchor="home"] {
  background: #faf8f5 !important;
}

/* Safety net: remove any palette background vars */
.wp-block-kadence-rowlayout#home {
  --global-palette9: transparent !important;
  --global-palette8: transparent !important;
}
/* === FORCE REMOVE YELLOW BEHIND PRODUCT CARDS (KADENCE INNER WRAP) === */

/* Kadence inner content wrapper */
.wp-block-kadence-rowlayout .kt-row-column-wrap,
.wp-block-kadence-rowlayout .kt-inside-inner-col {
  background: #faf8f5 !important;
}

/* Extra safety: neutralize palette backgrounds */
.wp-block-kadence-rowlayout .kt-inside-inner-col {
  background-color: #faf8f5 !important;
  background-image: none !important;
}

/* Ensure gift sections inherit cream */
.gift-section {
  background: transparent !important;
}
/* === FORCE FULL-WIDTH CREAM CANVAS FOR GIFT GUIDES === */

.slf-gift-guide-outer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #faf8f5 !important;
}

.slf-gift-guide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 16px;
  background: transparent !important;
}

/* Kill any theme overlay beneath */
body.page .site-content,
body.page .content-area,
body.page .entry-content {
  background: transparent !important;
}
/* === FORCE GIFT CARD SURFACE (FIX BLACK CARDS) === */

.gift-card {
  background-color: #ffffff !important;
  color: #222222 !important;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Ensure text inside cards is readable */
.gift-card h3,
.gift-card p,
.gift-card a {
  color: #222222 !important;
}

/* Neutralize any dark-mode or theme inheritance */
.gift-card * {
  background-color: transparent;
}
/* === HARD RESET KADENCE DARK SURFACE INSIDE GIFT GUIDES === */

.slf-gift-guide-outer,
.slf-gift-guide,
.slf-gift-guide * {
  --global-palette1: #222222 !important;
  --global-palette2: #555555 !important;
  --global-palette8: #ffffff !important;
  --global-palette9: #ffffff !important;
  --color--surface: #ffffff !important;
  --color--background: #faf8f5 !important;
  color-scheme: light !important;
}

/* Force card surface explicitly */
.slf-gift-guide .gift-card {
  background: #ffffff !important;
  background-image: none !important;
  color: #222222 !important;
}

/* Ensure nothing inside reverts to dark */
.slf-gift-guide .gift-card * {
  background: transparent !important;
  color: inherit !important;
}
/* === FIX DARK STRIPS BETWEEN PRODUCT CARDS === */

.slf-gift-guide .gift-section {
  background: #faf8f5 !important;
}

/* Ensure grid itself is not inheriting dark */
.slf-gift-guide .gift-section * {
  background-color: transparent;
}
/* === FORCE REMOVE DARK KADENCE ROW BACKGROUNDS === */

/* Main Kadence rows on gift guides */
.wp-block-kadence-rowlayout {
  background: #faf8f5 !important;
}

/* Inner Kadence containers */
.wp-block-kadence-rowlayout .kt-row-layout-inner,
.wp-block-kadence-rowlayout .kt-inside-inner-col {
  background: transparent !important;
}

/* Safety: remove gradients or overlays */
.wp-block-kadence-rowlayout::before,
.wp-block-kadence-rowlayout::after {
  display: none !important;
}
/* === REMOVE KADENCE ROW OVERLAYS COMPLETELY === */

.kb-row-overlay,
.kt-row-overlay,
.wp-block-kadence-rowlayout .kb-row-overlay,
.wp-block-kadence-rowlayout .kt-row-overlay {
  display: none !important;
  opacity: 0 !important;
  background: none !important;
}
/* Force consistent cream background behind cards */
.wp-block-kadence-rowlayout {
  background-color: #faf8f5 !important;
}
/* ☢️ NUCLEAR RESET — REMOVE DARK CONTENT WRAPPERS */

/* Kadence site content layers */
.site-content,
.content-wrap,
.entry-content-wrap,
.kadence-content-area,
.wp-site-blocks {
  background: #faf8f5 !important;
}

/* Ensure page body is not dark */
body {
  background: #faf8f5 !important;
}

/* Remove any remaining gradients or overlays */
.site-content::before,
.site-content::after,
.content-wrap::before,
.content-wrap::after {
  display: none !important;
}
/* Hard-disable Kadence header overlays */
.header-overlay,
.site-header .kadence-transparent-header {
  background: #faf8f5 !important;
  opacity: 1 !important;
}
/* Disable Kadence transparent header overlay globally */
.kadence-transparent-header,
.kadence-transparent-header::before,
.site-header::before {
  background: #faf8f5 !important;
  opacity: 1 !important;
}
/* Force gift cards to light style */
.gift-card,
.slf-product,
.product-card {
  background: #ffffff !important;
  color: #222222 !important;
}

.gift-card h3,
.gift-card p {
  color: #222222 !important;
}
/* Force all gift cards to light style */
.gift-card {
  background: #ffffff !important;
  color: #222222 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gift-card h3,
.gift-card p {
  color: #222222 !important;
}
/* Light card styling ONLY inside gift guides */
.slf-gift-guide {
  background: #faf8f5;
  padding: 64px 16px;
}

.slf-gift-guide .gift-card {
  background: #ffffff !important;
  color: #222222 !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
  border-radius: 16px;
}

.slf-gift-guide .gift-card h3,
.slf-gift-guide .gift-card p {
  color: #222222 !important;
}
.slf-related-links {
  max-width: 900px;
  margin: 48px auto 64px;
  padding: 24px 20px;
  background: #faf8f5;
  border-radius: 16px;
}

.slf-related-links h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #2b2a28;
}

.slf-related-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slf-related-links li {
  margin-bottom: 8px;
}

.slf-related-links a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 500;
}

.slf-related-links a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .mobile-hero {
    min-height: 75vh !important;
    display: flex;
    align-items: center;
  }
}
/* Force Kadence desktop primary nav to display */
@media (min-width: 1024px) {
  .kadence-primary-nav,
  .site-header .primary-navigation,
  .site-header .primary-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Ensure WP Mobile Menu never appears on desktop */
  .mobile-menu,
  .wpmm-wrap {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .site-header,
  .kadence-header,
  .kadence-header-wrap {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
  }
}
.kadence-header {
  background: #f2f2f2 !important;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 1024px) {
  .kadence-header,
  .site-header,
  .primary-navigation {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}