/*--------------------------------------------------------------

Template: Theme Name
Author:
Version:  1
Design and Developed by:

Note: This is the file where you can add your custom styles to change the look of the theme. But don't modify "style.css" file.

---------------------------------------------------------------*/

/* ----------------------------------------------------
	You can put your custom css code here:
-------------------------------------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap");

/* ========== Exotic Kingdom typography safeguards ==========
   Source files now carry the correct stacks:
     Headings / nav  → Book Antiqua …
     Body            → Montserrat 500
   Rules below handle edge-cases only.
   ========================================================== */

/* Icon fonts must never inherit from Book Antiqua */
.fa {
  font-family: FontAwesome !important;
}
.zmdi {
  font-family: "Material-Design-Iconic-Font" !important;
}

/* Search / text inputs: body font, normal casing */
input.single-input,
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
textarea {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

/* Header top-bar descriptive text (non-heading) */
.header-top-bar p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ========== Exotic Kingdom palette ==========
   Couture layer: warmer ivories, champagne hairlines, deep ink
   ============================================= */
:root {
  /* Vertical rhythm for stacked home / landing sections (matches .ptb-70 utilities) */
  --ek-section-y: 70px;
  --ek-primary: #1c2433;
  --ek-primary-dark: #0e1014;
  --ek-accent: #5a7340;
  --ek-platinum-1: #faf7f2;
  --ek-platinum-2: #ebe6de;
  --ek-platinum-3: #cfc6b8;
  --ek-text-on-dark: #f4f1eb;
  --ek-champagne: #c9b896;
  --ek-champagne-soft: rgba(201, 184, 150, 0.45);
  --ek-noir: #0a0b0d;
  --ek-couture-ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Premium accents (hairlines, sheen, depth) */
  --ek-hairline: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 184, 150, 0.55) 18%,
    rgba(244, 241, 235, 0.35) 50%,
    rgba(201, 184, 150, 0.55) 82%,
    transparent 100%
  );
  --ek-hairline-subtle: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 184, 150, 0.28) 50%,
    transparent 100%
  );
  --ek-card-elev:
    0 22px 56px rgba(14, 16, 20, 0.12), 0 0 0 1px rgba(201, 184, 150, 0.1) inset;
  --ek-card-elev-hover:
    0 28px 64px rgba(14, 16, 20, 0.16),
    0 0 0 1px rgba(201, 184, 150, 0.22) inset;
}

/* Primary surfaces */
.black-bg {
  background: var(--ek-primary) !important;
}

.footer-area {
  background-color: var(--ek-primary) !important;
  background-image:
    linear-gradient(
      180deg,
      rgba(28, 36, 51, 0.9) 0%,
      rgba(22, 29, 43, 0.68) 50%,
      rgba(14, 18, 28, 0.82) 100%
    ),
    url("../images/bg/bg-cover.png") !important;
  background-repeat: no-repeat, repeat !important;
  background-size: cover !important;
  background-position:
    center center,
    center top !important;
  background-blend-mode: normal, multiply !important;
  position: relative;
}

.footer-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 184, 150, 0.55) 22%,
    rgba(244, 241, 235, 0.35) 50%,
    rgba(201, 184, 150, 0.55) 78%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Keep footer content above the pattern/overlay layer */
.footer-area > .container {
  position: relative;
  z-index: 1;
}

/* Compact VIP newsletter strip (directly above .footer-area, all pages) */
.ek-vip-newsletter {
  background:
    radial-gradient(
      105% 140% at 100% 0%,
      rgba(201, 184, 150, 0.09) 0%,
      #bcb47f08 52%
    ),
    linear-gradient(168deg, #fdfbf8 0%, #faf6f0 40%, #f7f1e8 100%);

  border-top: 1px solid rgba(201, 184, 150, 0.35);
  border-bottom: 1px solid rgba(28, 36, 51, 0.1);
  padding: 20px 0 22px;
}

.ek-vip-newsletter__title {
  font-family:
    "Cormorant Garamond", "Book Antiqua", "Palatino Linotype", Palatino,
    Georgia, serif;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  color: var(--ek-primary);
  margin: 0 0 6px;
}

.ek-vip-newsletter__sub {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(28, 36, 51, 0.7);
}

.ek-vip-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  justify-content: flex-end;
}

.ek-vip-newsletter__input {
  flex: 1 1 200px;
  min-width: 0;
  margin: 0;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--ek-platinum-3);
  background: #fff;
  color: var(--ek-primary);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ek-vip-newsletter__input:focus {
  outline: none;
  border-color: rgba(90, 115, 64, 0.55);
  box-shadow: 0 0 0 3px rgba(90, 115, 64, 0.12);
}

.ek-vip-newsletter__btn {
  flex: 0 0 auto;
  margin: 0;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ek-accent);
  background: var(--ek-accent);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.ek-vip-newsletter__btn:hover {
  background: #48612a;
  border-color: #48612a;
  color: #fff;
}

@media (max-width: 991px) {
  .ek-vip-newsletter__form {
    justify-content: stretch;
    margin-top: 4px;
  }

  .ek-vip-newsletter__btn {
    flex: 1 1 auto;
  }
}

/* Business details: wide column (former business + newsletter); two-column list on large screens */
.single-footer.ek-footer-business {
  padding-bottom: 36px;
}

@media (min-width: 992px) {
  .footer-area .ek-footer-business > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(22px, 3.2vw, 44px);
    row-gap: 4px;
    align-items: start;
  }
}

.footer-bottom,
.footer-bottom.global-table {
  background: var(--ek-primary-dark) !important;
}

/* Adult-use compliance strip (below copyright row) */
.ek-compliance-bottom-bar {
  background: #07080a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 22px;
}

.ek-compliance-bottom-bar__text {
  margin: 0 auto;
  max-width: 1100px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  text-transform: none;
}

.ek-compliance-bottom-bar__text a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 2px;
}

.ek-compliance-bottom-bar__text a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .ek-compliance-bottom-bar__text {
    font-size: 12px;
  }
}

/*
 * Main nav bar height follows the logo (no stretch to match 90px search rail).
 * Menu + search are tightened so the black band ends at the bottom of the mark.
 */
.header-area .logo img {
  display: block;
  width: auto;
  max-width: min(240px, 52vw);
  height: auto !important;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

/* Kill theme .ptb-20 / responsive padding under the mark at every width */
#sticky-header .logo.ptb-20,
#sticky-header.sticky .logo.ptb-20,
.sticky #sticky-header .logo.ptb-20 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#sticky-header .logo > a {
  line-height: 0;
  display: inline-block;
  height: auto;
  background: #fff;
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
}

@media (min-width: 768px) {
  #sticky-header.header-middle-area
    .full-width-mega-dropdown
    > .container
    > .row {
    align-items: center;
    min-height: 0;
  }

  /* Columns hug content height (no table-cell stretch from search rail) */
  #sticky-header.header-middle-area .row > [class*="col-"] {
    display: flex;
    align-items: center;
    min-height: 0;
  }

  #sticky-header .logo.ptb-20,
  #sticky-header.sticky .logo.ptb-20 {
    display: block;
  }

  /*
	 * Inline-block <li> + text links leave a “baseline strut” gap under the menu row.
	 * Flex + block items removes that empty band under HOME / ABOUT / …
	 */
  #sticky-header #primary-menu {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 0 !important;
  }

  #sticky-header .main-menu {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    min-height: 0;
  }

  #sticky-header .main-menu > li {
    display: block;
    float: none;
    margin: 0;
  }

  #sticky-header .main-menu > li > a,
  #sticky-header.sticky .main-menu > li > a {
    display: block;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    line-height: 1.2 !important;
  }

  #sticky-header .ek-navbar-login {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  #sticky-header .ek-navbar-login .login-register-area ul {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    float: none;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #sticky-header .ek-navbar-login .login-register-area li {
    float: none !important;
  }

  #sticky-header .ek-navbar-login .login-register-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }

  #sticky-header .ek-navbar-login .login-register-area a {
    color: var(--ek-text-on-dark) !important;
    font-family:
      "Montserrat",
      system-ui,
      -apple-system,
      sans-serif !important;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Social strip moved into sticky row (single-bar index header) */
  #sticky-header .ek-navbar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
  }

  #sticky-header .ek-navbar-social .social-icon ul {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    float: none;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #sticky-header .ek-navbar-social .social-icon li {
    float: none;
    margin-right: 0.35rem;
  }

  #sticky-header .ek-header-cart-col,
  #sticky-header .ek-header-cart {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-width: 0;
  }

  #sticky-header .ek-header-cart-col .cart-currency-area ul,
  #sticky-header .ek-header-cart .cart-currency-area ul {
    float: none;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* Table layout was inheriting a tall row box from the old 90px search rail */
  #sticky-header .search-box,
  #sticky-header.sticky .search-box {
    display: flex !important;
    align-items: center;
    height: auto !important;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  #sticky-header .search-box .global-row,
  #sticky-header .search-box .global-cell {
    display: block;
    width: 100%;
    height: auto;
  }

  #sticky-header .search-box .input-box input,
  #sticky-header .search-box .input-box .single-input {
    height: 36px !important;
    padding-top: 0;
    padding-bottom: 0;
  }

  #sticky-header .search-box .src-btn {
    height: 36px !important;
    line-height: 36px !important;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }

  /* MeanMenu injects a bar inside .mobile-menu-area; keep it out of layout on desktop */
  #sticky-header .mobile-menu-area {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
}

.ek-footer-logo {
  margin-bottom: 1.25rem;
}

.ek-footer-logo a {
  display: inline-block;
  line-height: 0;
  background: #fff;
  padding: 0.35rem 0.55rem;
  border-radius: 2px;
}

.ek-footer-logo img {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 100%;
  opacity: 0.94;
}

/* Top bar + sticky-row socials: SVG align with Font Awesome icons */
.header-area .header-top-bar .ek-icon-instagram,
.header-area .header-top-bar .ek-icon-weedmaps,
#sticky-header .ek-navbar-social .ek-icon-instagram,
#sticky-header .ek-navbar-social .ek-icon-weedmaps {
  display: inline-block;
  vertical-align: middle;
}

/* Top utility strip + main navigation bar */
.header-area .header-top-bar {
  background: linear-gradient(
    90deg,
    #000000 0%,
    #0a0c0f 22%,
    #3d4d5e 50%,
    #0a0c0f 78%,
    #000000 100%
  ) !important;
}

/* Main navigation bar */
#sticky-header.header-middle-area,
.header-middle-area {
  background: linear-gradient(
    90deg,
    #000000 0%,
    #05080d 12%,
    #1e293b87 50%,
    #05080d 88%,
    #000000 100%
  ) !important;
  box-shadow: 0 1px 0 rgba(201, 184, 150, 0.22);
}

.sticky {
  background: rgba(0, 0, 0, 0.94) none repeat scroll 0 0 !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ek-champagne-soft);
}

.main-menu > li > a {
  color: var(--ek-text-on-dark) !important;
  letter-spacing: 0.18em !important;
  font-weight: 500 !important;
  transition:
    color 0.45s var(--ek-couture-ease),
    letter-spacing 0.45s var(--ek-couture-ease);
}

/*
 * Book Antiqua + wide tracking makes “HOME” read like “IIOME” at nav sizes; use Montserrat here
 * (still loaded via style.css) while dropdown submenus keep the theme stack from header.css.
 */
#sticky-header .main-menu > li > a,
#sticky-header.sticky .main-menu > li > a {
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    sans-serif !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
}

.current,
.main-menu > li:hover {
  background: rgba(255, 255, 255, 0.06) none repeat scroll 0 0 !important;
}

.wrapper {padding: 0px!important;}

/* Primary nav: Shop as CTA */
.main-menu > li.ek-nav-cta {
  background: transparent !important;
  margin-left: 6px;
}

.main-menu > li.ek-nav-cta > a {
  background: linear-gradient(
    155deg,
    rgba(201, 184, 150, 0.38) 0%,
    rgba(201, 184, 150, 0.12) 100%
  ) !important;
  border: 1px solid var(--ek-champagne-soft) !important;
  border-radius: 2px;
  color: var(--ek-champagne) !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  padding: 6px 1.15em !important;
  line-height: 1.2 !important;
}

.main-menu > li.ek-nav-cta:hover {
  background: transparent !important;
}

.main-menu > li.ek-nav-cta:hover > a {
  background: linear-gradient(
    155deg,
    rgba(201, 184, 150, 0.58) 0%,
    rgba(201, 184, 150, 0.28) 100%
  ) !important;
  border-color: var(--ek-champagne) !important;
  color: var(--ek-text-on-dark) !important;
}

.login-register-area li + li::before {
  background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0 !important;
}

.login-register-area a {
  color: var(--ek-text-on-dark) !important;
}

.cart-icon > a {
  color: var(--ek-text-on-dark) !important;
}

.search-box .input-box input {
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: var(--ek-text-on-dark) !important;
}

.search-box .input-box input::placeholder {
  color: rgba(232, 233, 235, 0.55);
}

.src-btn {
  color: rgba(232, 233, 235, 0.65) !important;
}

/* Mobile menu shell */
.mobile-menu-area {
  background: #000 !important;
}

.mean-container .mean-nav {
  background: var(--ek-primary) !important;
}

.mean-container .mean-nav ul li,
.mean-container .mean-nav ul li a {
  background: var(--ek-primary) !important;
  color: var(--ek-text-on-dark) !important;
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.mean-container .mean-nav ul li a:hover {
  background: rgba(90, 115, 64, 0.38) !important;
  color: #fff !important;
}

.mean-container .mean-nav ul li li a {
  background: var(--ek-primary-dark) !important;
  color: rgba(232, 233, 235, 0.85) !important;
}

.mean-container .mean-nav ul li a.mean-expand {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--ek-text-on-dark) !important;
}

/* Breadcrumb hero tint (blog + any .breadcumb-2 using .overlay) */
.breadcumb-area.overlay:before,
.breadcumb-area.overlay::before {
  background-color: rgba(23, 21, 22, 0.72);
}

/*
 * Blog index + posts: panoramic subheader.
 * Use !important + layered fallbacks so this wins if style.css loads later (background shorthand
 * on .breadcumb-2) or if blogsubheader.png is missing on disk. ::before tint scoped to .breadcumb-2
 * so it beats shortcode .overlay defaults.
 */
.breadcumb-area.breadcumb-2 {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 245px;
  margin-top: -100px !important;
  box-sizing: border-box;
  background-color: #050505 !important;
  background-image:
    url("../images/banner/blogsubheader.png"),
    url("../images/bg/leaves-bg.JPG") !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: center bottom, center center !important;
  background-size: cover, cover !important;
  background-attachment: scroll, scroll !important;
}

.breadcumb-area.breadcumb-2.overlay:before,
.breadcumb-area.breadcumb-2.overlay::before {
  background: rgba(23, 21, 22, 0.72) !important;
  opacity: 1 !important;
}

/* Blog index + posts: light article band under subheader (no busy image) */
.breadcumb-area.breadcumb-2 + .shop-main-area {
  background-color: #f4f1eb !important;
  background-image: none !important;
  color: #3a3f48;
}

.breadcumb-area.breadcumb-2 + .shop-main-area h1,
.breadcumb-area.breadcumb-2 + .shop-main-area h2,
.breadcumb-area.breadcumb-2 + .shop-main-area h3,
.breadcumb-area.breadcumb-2 + .shop-main-area h4,
.breadcumb-area.breadcumb-2 + .shop-main-area h5,
.breadcumb-area.breadcumb-2 + .shop-main-area h6,
.breadcumb-area.breadcumb-2 + .shop-main-area .sb-title {
  color: #1a1f26 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .blog-title h5 a,
.breadcumb-area.breadcumb-2 + .shop-main-area .font-bold a {
  color: #1a1f26 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area p,
.breadcumb-area.breadcumb-2 + .shop-main-area li,
.breadcumb-area.breadcumb-2 + .shop-main-area .blog-text {
  color: #3a3f48 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .like-comments-date a,
.breadcumb-area.breadcumb-2 + .shop-main-area .like-comments-date li,
.breadcumb-area.breadcumb-2 + .shop-main-area .blog-date a {
  color: #5c6470 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .like-comments-date a:hover,
.breadcumb-area.breadcumb-2 + .shop-main-area .blog-date a:hover {
  color: #2f3d24 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .blog-text a,
.breadcumb-area.breadcumb-2 + .shop-main-area .subject a,
.breadcumb-area.breadcumb-2 + .shop-main-area .related-post a,
.breadcumb-area.breadcumb-2 + .shop-main-area .total-blog-3 a {
  color: #48612a !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .blog-text a:hover,
.breadcumb-area.breadcumb-2 + .shop-main-area .subject a:hover,
.breadcumb-area.breadcumb-2 + .shop-main-area .related-post a:hover,
.breadcumb-area.breadcumb-2 + .shop-main-area .total-blog-3 a:hover {
  color: #2f3d24 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .read-more {
  color: #48612a !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .read-more:hover {
  color: #2f3d24 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .subject li:before {
  color: #6b7280 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .blockqot blockquote {
  background: #e8e4dc !important;
  border-left-color: #9a8f6e !important;
  color: #2a2d33 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .blockqot blockquote p {
  color: #2a2d33 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .leave-through-area,
.breadcumb-area.breadcumb-2 + .shop-main-area .leave-through-area em {
  color: #5c6470 !important;
}

.breadcumb-area.breadcumb-2 + .shop-main-area .leave-through-area a {
  color: #48612a !important;
}

/* Platinum gradient accent — primary buttons & metallic highlights */
a.btn-def.btn2 {
  background: linear-gradient(
    155deg,
    var(--ek-platinum-1) 0%,
    var(--ek-platinum-2) 45%,
    var(--ek-platinum-3) 100%
  ) !important;
  border: 1px solid #a8a59e !important;
  color: var(--ek-primary-dark) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* Filled platinum on dark / busy backgrounds (add with .btn-def) */
a.btn-def.btn-def--on-dark {
  background: linear-gradient(
    155deg,
    var(--ek-platinum-1) 0%,
    var(--ek-platinum-2) 45%,
    var(--ek-platinum-3) 100%
  ) !important;
  border: 1px solid #a8a59e !important;
  color: var(--ek-primary-dark) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 6px 24px rgba(0, 0, 0, 0.28);
}

a.btn-def.btn-def--on-dark:hover {
  background: linear-gradient(
    155deg,
    var(--ek-platinum-2) 0%,
    var(--ek-platinum-3) 55%,
    #bfb6a8 100%
  ) !important;
  border-color: #9a958c !important;
  color: var(--ek-primary-dark) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 28px rgba(0, 0, 0, 0.32);
}

a.btn-def {
  border-color: var(--ek-primary) !important;
  color: var(--ek-primary) !important;
  border-width: 1px !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  transition:
    background 0.5s var(--ek-couture-ease),
    border-color 0.5s var(--ek-couture-ease),
    color 0.5s var(--ek-couture-ease),
    box-shadow 0.5s var(--ek-couture-ease) !important;
}

a.btn-def.btn-white {
  border-color: rgba(232, 233, 235, 0.45) !important;
  color: rgba(232, 233, 235, 0.9) !important;
}

/* Decorative rules / underlines: platinum line */
.single-mega-item li.menu-title::after {
  background: linear-gradient(
    90deg,
    var(--ek-platinum-3) 0%,
    var(--ek-platinum-1) 100%
  ) !important;
}

/* Newsletter submit control in footer */
.newslatter .input-box a {
  background: linear-gradient(
    160deg,
    var(--ek-platinum-2) 0%,
    var(--ek-platinum-3) 100%
  ) !important;
  color: var(--ek-primary-dark) !important;
}

.newslatter .input-box a:hover {
  background: var(--ek-accent) !important;
  color: #fff !important;
}

.contact-icon {
  border-color: rgba(232, 233, 235, 0.25);
}

/* Cart count badge on dark header (beat skin-default hover) */
.header-area .cart-icon > span {
  background: var(--ek-accent);
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

.header-area .cart-icon:hover span {
  border-color: var(--ek-platinum-2) !important;
  color: #fff !important;
}

/* ========== Video hero ========== */
.ek-video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  background: var(--ek-primary-dark);
}

.ek-video-hero__bg {
  position: absolute;
  inset: 0;
}

.ek-video-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ek-video-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 11, 14, 0.5) 0%,
      rgba(28, 36, 51, 0.35) 42%,
      rgba(10, 11, 14, 0.82) 100%
    ),
    radial-gradient(
      ellipse 80% 50% at 50% 30%,
      rgba(201, 184, 150, 0.07) 0%,
      transparent 55%
    );
}

/* Index: keep video full-bleed inside the hero (header sits above in normal flow). */
.wrapper.home-one.ek-index .ek-video-hero__bg video {
  object-position: center top;
}

.ek-video-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  color: #f1f1f1;
}

/* Reserves vertical space where headline + support copy were (keeps CTAs in same spot). */
.ek-video-hero__text-spacer {
  flex: 0 0 auto;
  width: 100%;
  max-width: 520px;
  height: clamp(200px, 36vh, 400px);
  pointer-events: none;
  visibility: hidden;
}

.ek-video-hero__content h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(244, 241, 235, 0.88);
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.ek-video-hero__content h1 {
  font-family:
    "Cormorant Garamond", "Book Antiqua", "Palatino Linotype", Palatino,
    Georgia, serif;
  font-size: clamp(42px, 7.5vw, 86px);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff;
  font-variant-ligatures: common-ligatures;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.ek-video-hero__content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  max-width: 420px;
  margin-bottom: 40px;
  color: rgba(244, 241, 235, 0.78);
  letter-spacing: 0.06em;
  line-height: 1.75;
}

.ek-video-hero__content .btn-def.btn-white {
  border-color: rgba(201, 184, 150, 0.65);
  color: var(--ek-platinum-1);
  padding: 0 40px;
  height: 50px;
  line-height: 48px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  background: rgba(10, 11, 14, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 0.5s var(--ek-couture-ease),
    border-color 0.5s var(--ek-couture-ease),
    color 0.5s var(--ek-couture-ease),
    box-shadow 0.5s var(--ek-couture-ease);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.ek-video-hero__content .btn-def.btn-white:hover {
  background: rgba(244, 241, 235, 0.96);
  border-color: var(--ek-platinum-1);
  color: var(--ek-primary-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.ek-video-hero__content .ek-hero-kicker {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 2.2vw, 17px);
  letter-spacing: 0.12em;
  max-width: 520px;
  margin-bottom: 18px;
  color: rgba(244, 241, 235, 0.88);
  line-height: 1.6;
}

.ek-video-hero__content .ek-hero-support {
  margin-bottom: 32px;
  max-width: 380px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.ek-video-hero__content .ek-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
  margin-bottom: 0;
}

.ek-video-hero__content .ek-hero-ctas .btn-def {
  height: 50px;
  line-height: 48px;
  padding: 0 36px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.ek-video-hero__content .ek-hero-ctas .btn-def--on-dark {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 767px) {
  .ek-video-hero {
    min-height: 100vh;
    height: 100vh;
    min-height: 100dvh;
    height: 100dvh;
    /* Portrait mobile art instead of video (saves data + CPU on small screens) */
    background-color: var(--ek-primary-dark);
    background-image:
      linear-gradient(
        180deg,
        rgba(10, 11, 14, 0.18) 0%,
        rgba(10, 11, 14, 0.12) 40%,
        rgba(10, 11, 14, 0.45) 100%
      ),
      url(../images/bg/mobile-bg.png);
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center top;
    background-size: auto, cover;
  }

  .ek-video-hero__bg {
    display: none;
  }

  .ek-video-hero__content h1 {
    font-size: clamp(26px, 7vw, 44px);
    letter-spacing: 0.1em;
  }
  .ek-video-hero__content p {
    font-size: 14px;
  }
}

/* Home: The Experience / The Product */
.ek-home-story {
  position: relative;
  isolation: isolate;
  padding: var(--ek-section-y) 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 184, 150, 0.22);
  color: var(--ek-platinum-1);
}

.ek-home-story.ek-alt-strip--a::before,
.ek-home-story.ek-alt-strip--b::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -22%;
  bottom: -22%;
  z-index: 0;
  min-height: 144%;
  background-color: #0a0b0d;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transform: translate3d(0, var(--ek-parallax-y, 0px), 0);
  pointer-events: none;
  backface-visibility: hidden;
}

.ek-home-story.ek-alt-strip--a::before {
  background-image:
    linear-gradient(
      165deg,
      rgba(8, 8, 10, 0.78) 0%,
      rgba(14, 16, 20, 0.52) 48%,
      rgba(6, 8, 11, 0.82) 100%
    ),
    url("../images/bg/bg-cover.png");
}

.ek-home-story.ek-alt-strip--b::before {
  background-image:
    linear-gradient(
      165deg,
      rgba(6, 7, 9, 0.72) 0%,
      rgba(12, 14, 18, 0.45) 42%,
      rgba(8, 9, 11, 0.78) 100%
    ),
    radial-gradient(
      ellipse 80% 50% at 50% 100%,
      rgba(201, 184, 150, 0.12) 0%,
      transparent 55%
    ),
    url("../images/bg/bg-cover.png");
}

/* Alt story strip only (e.g. “Curated” / contact intro): dispensary photo under scrim */
.ek-home-story--alt.ek-alt-strip--a::before {
  background-image:
    linear-gradient(
      165deg,
      rgba(8, 8, 10, 0.78) 0%,
      rgba(14, 16, 20, 0.52) 48%,
      rgba(6, 8, 11, 0.82) 100%
    ),
    url("../images/banner/dispo-location-subheader.png");
}

.ek-home-story--alt.ek-alt-strip--b::before {
  background-image:
    linear-gradient(
      165deg,
      rgba(6, 7, 9, 0.72) 0%,
      rgba(12, 14, 18, 0.45) 42%,
      rgba(8, 9, 11, 0.78) 100%
    ),
    radial-gradient(
      ellipse 80% 50% at 50% 100%,
      rgba(201, 184, 150, 0.12) 0%,
      transparent 55%
    ),
    url("../images/banner/dispo-location-subheader.png");
}

.ek-home-story > .container {
  position: relative;
  z-index: 1;
}

/* “High Society” copy column: scrim over quilt bg */
#ek-experience .col-lg-6.col-xl-5.text-center.text-lg-start {
  padding: clamp(22px, 4vw, 36px) clamp(20px, 4vw, 28px);
  background: rgba(10, 11, 14, 0.58);
  border-radius: 14px;
  border: 1px solid rgba(250, 247, 242, 0.1);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ek-home-story--alt {
  padding: calc(var(--ek-section-y) + 12px) 0;
}

.ek-home-story__panel {
  position: relative;
  padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 40px);
  background: rgba(10, 12, 16, 0.42);
  border-radius: 14px;
  border: 1px solid rgba(250, 247, 242, 0.14);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(250, 247, 242, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.ek-home-story__eyebrow {
  font-size: 12px;
  letter-spacing: 0.38em;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 18px;
}

/* Crown stacked above label inside the same eyebrow line (e.g. “The product”) */
.ek-home-story__eyebrow--with-crown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.ek-home-story__eyebrow-crown {
  display: block;
  line-height: 0;
}

.ek-home-story__eyebrow--with-crown .ek-icon-crown {
  display: block;
  width: clamp(96px, 22vw, 152px);
  height: clamp(96px, 22vw, 152px);
  object-fit: contain;
  flex-shrink: 0;
}

.ek-home-story__panel .ek-home-story__eyebrow-crown .ek-icon-crown {
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.45));
}

.ek-home-story__eyebrow-label {
  display: block;
  letter-spacing: inherit;
}

.ek-home-story__decor {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.1em;
  vertical-align: -0.08em;
  line-height: 0;
}

.ek-home-story__decor--crown-only {
  margin-right: 0;
  vertical-align: 0;
}

/* Crown mark: full row above eyebrow on home story sections */
.ek-home-story__crown-row {
  line-height: 0;
}

.ek-home-story__crown-row .ek-icon-crown {
  display: block;
  width: clamp(96px, 22vw, 152px);
  height: clamp(96px, 22vw, 152px);
  object-fit: contain;
  flex-shrink: 0;
}

/* Light mark on dark experience strip */
.ek-home-story--experience .ek-home-story__crown-row .ek-icon-crown {
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.35));
}

/* images/icons/crown.png is white — invert on light glass panel */
.ek-icon-crown--on-light {
  filter: brightness(0) saturate(100%) invert(0.16);
  opacity: 0.92;
}

.ek-home-story__title {
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--ek-platinum-1);
}

.ek-home-story__body {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.85;
  color: rgba(250, 247, 242, 0.88);
}

.ek-home-story__body p + p {
  margin-top: 1.25em;
}

.ek-home-story__lead {
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 242, 0.95);
  margin-bottom: 0 !important;
}

.ek-home-story__tag {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: rgba(250, 247, 242, 0.48);
}

.ek-home-story__cta {
  margin-top: 28px;
  display: inline-block;
  padding: 12px 22px;
  min-height: 46px;
  height: auto;
  line-height: 1.35;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
}

/* Section eyebrow for about/contact light-bg headings (matches index's jungle welcome) */
.wrapper.about-us .heading-title .ek-jungle-welcome,
.wrapper.contact-us .heading-title .ek-jungle-welcome {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--ek-champagne, #9a8f6e);
  margin: 0 0 10px;
  text-transform: uppercase;
}

/* About/Contact: ek-home-story--alt only (dispo banner; same scrims as index alt) */
.wrapper.about-us .ek-home-story--alt.ek-alt-strip--b::before,
.wrapper.contact-us .ek-home-story--alt.ek-alt-strip--b::before {
  background-image:
    linear-gradient(
      165deg,
      rgba(6, 7, 9, 0.78) 0%,
      rgba(12, 14, 18, 0.52) 42%,
      rgba(8, 9, 11, 0.82) 100%
    ),
    url("../images/banner/dispo-location-subheader.png");
}

.wrapper.about-us .ek-home-story--alt.ek-alt-strip--a::before,
.wrapper.contact-us .ek-home-story--alt.ek-alt-strip--a::before {
  background-image:
    linear-gradient(
      165deg,
      rgba(8, 8, 10, 0.82) 0%,
      rgba(14, 16, 20, 0.58) 48%,
      rgba(6, 8, 11, 0.86) 100%
    ),
    url("../images/banner/dispo-location-subheader.png");
}

/* ek-home-story: experience strip = bg-cover.png; --alt strip = dispo-location-subheader.png. Parallax: js/ek-parallax-bg.js. */

/* Quilt wash on section (cover, same asset as experience ::before). */
.wrapper.home-one.ek-index .branding-section-area.ek-alt-strip--b {
  background-color: #0a0b0d;
  /* First layer = blue overlay on top of photo; then neutral wash; then bg image */
  background-image:
    linear-gradient(
      155deg,
      rgba(26, 48, 78, 0.5) 0%,
      rgba(18, 36, 62, 0.55) 42%,
      rgba(14, 32, 58, 0.48) 100%
    ),
    linear-gradient(
      165deg,
      rgba(8, 10, 14, 0.55) 0%,
      rgba(12, 14, 18, 0.38) 100%
    ),
    url("../images/bg/bg-cover.png");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position:
    center center,
    center center,
    center calc(50% + var(--ek-parallax-y, 0px));
  background-size: cover, auto, cover;
  background-attachment: scroll, scroll, scroll;
  isolation: isolate;
  overflow: hidden;
}

.wrapper.home-one.ek-index .ek-upstate-delivery.ek-alt-strip--a::before {
  background:
    linear-gradient(
      110deg,
      rgba(10, 11, 13, 0.92) 0%,
      rgba(23, 21, 22, 0.88) 40%,
      rgba(28, 36, 51, 0.72) 100%
    ),
    url("../images/bg/leaves-bg.JPG") no-repeat center center / cover;
  background-attachment: scroll, scroll;
  left: 0;
  right: 0;
  top: -20%;
  bottom: -20%;
  height: auto;
  min-height: 140%;
  inset: auto;
  transform: translate3d(0, var(--ek-parallax-y, 0px), 0);
  backface-visibility: hidden;
}

.wrapper.home-one.ek-index .branding-section-area.ek-alt-strip--b::before {
  z-index: 2;
}

.wrapper.home-one.ek-index .branding-section-area.ek-alt-strip--b > .container {
  position: relative;
  z-index: 1;
}

.wrapper.home-one.ek-index .new-arrival-area.ek-alt-strip--a::after,
.wrapper.home-one.ek-index .banner-area.ek-alt-strip--b::after,
.wrapper.home-one.ek-index .discunt-featured-onsale-area.ek-alt-strip--a::after,
.wrapper.home-one.ek-index .arrival-ratted-sale-area.ek-alt-strip--a::after,
.wrapper.home-one.ek-index .brand-area.ek-alt-strip--b::after,
.wrapper.home-one.ek-index .blog-area.ek-alt-strip--a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18%;
  bottom: -18%;
  z-index: 0;
  min-height: 136%;
  height: auto;
  inset: auto;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transform: translate3d(0, var(--ek-parallax-y, 0px), 0);
  pointer-events: none;
  backface-visibility: hidden;
}

.wrapper.home-one.ek-index .new-arrival-area.ek-alt-strip--a::after,
.wrapper.home-one.ek-index .arrival-ratted-sale-area.ek-alt-strip--a::after,
.wrapper.home-one.ek-index .blog-area.ek-alt-strip--a::after {
  background-image:
    linear-gradient(
      180deg,
      rgba(250, 247, 242, 0.92) 0%,
      rgba(232, 226, 216, 0.89) 100%
    ),
    url("../images/bg/leaves-bg.JPG");
}

/* Discount / featured / on-sale: same noir fill as .ek-signature-strip::before */
.wrapper.home-one.ek-index
  .discunt-featured-onsale-area.ek-alt-strip--a::after {
  background-image:
    linear-gradient(168deg, #080a0d 0%, #10141c 40%, #0a0c10 100%),
    radial-gradient(
      ellipse 90% 45% at 50% 0%,
      rgba(201, 184, 150, 0.06) 0%,
      transparent 58%
    );
  background-size: auto, auto;
  background-position:
    center center,
    center center;
  background-repeat: no-repeat, no-repeat;
}

.wrapper.home-one.ek-index .banner-area.ek-alt-strip--b::after,
.wrapper.home-one.ek-index .brand-area.ek-alt-strip--b::after {
  background-image:
    linear-gradient(
      180deg,
      rgba(248, 245, 240, 0.9) 0%,
      rgba(228, 222, 212, 0.88) 100%
    ),
    url("../images/bg/influencer.png");
}

.wrapper.home-one.ek-index .new-arrival-area.ek-alt-strip--a,
.wrapper.home-one.ek-index .banner-area.ek-alt-strip--b,
.wrapper.home-one.ek-index .discunt-featured-onsale-area.ek-alt-strip--a,
.wrapper.home-one.ek-index .arrival-ratted-sale-area.ek-alt-strip--a,
.wrapper.home-one.ek-index .brand-area.ek-alt-strip--b,
.wrapper.home-one.ek-index .blog-area.ek-alt-strip--a {
  isolation: isolate;
  overflow: hidden;
}

.wrapper.home-one.ek-index .new-arrival-area.ek-alt-strip--a > .container,
.wrapper.home-one.ek-index .banner-area.ek-alt-strip--b > .container,
.wrapper.home-one.ek-index
  .discunt-featured-onsale-area.ek-alt-strip--a
  > .container,
.wrapper.home-one.ek-index
  .arrival-ratted-sale-area.ek-alt-strip--a
  > .container,
.wrapper.home-one.ek-index .brand-area.ek-alt-strip--b > .container,
.wrapper.home-one.ek-index .blog-area.ek-alt-strip--a > .container {
  position: relative;
  z-index: 1;
}

.wrapper.home-one.ek-index .new-arrival-area.ek-alt-strip--a::before,
.wrapper.home-one.ek-index .banner-area.ek-alt-strip--b::before,
.wrapper.home-one.ek-index
  .discunt-featured-onsale-area.ek-alt-strip--a::before,
.wrapper.home-one.ek-index .arrival-ratted-sale-area.ek-alt-strip--a::before,
.wrapper.home-one.ek-index .brand-area.ek-alt-strip--b::before,
.wrapper.home-one.ek-index .blog-area.ek-alt-strip--a::before {
  z-index: 2;
}

/* Same noir + blue-depth fill as .ek-signature-strip::before / discount strip */
.wrapper.home-one.ek-index .testimonial-area.overlay.ek-alt-strip--b {
  background-image:
    linear-gradient(168deg, #080a0d 0%, #10141c 40%, #0a0c10 100%),
    radial-gradient(
      ellipse 90% 45% at 50% 0%,
      rgba(201, 184, 150, 0.06) 0%,
      transparent 58%
    );
  background-color: transparent;
  background-repeat: no-repeat, no-repeat;
  background-position:
    center center,
    center center;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  transform: translateZ(0);
}

.wrapper.home-one.ek-index
  .testimonial-area.overlay.ek-alt-strip--b
  > .container {
  position: relative;
  z-index: 1;
}

.wrapper.home-one.ek-index .testimonial-area.overlay.ek-alt-strip--b::before {
  background: none !important;
  background-color: transparent !important;
  opacity: 0 !important;
  pointer-events: none;
}

.wrapper.home-one.ek-index .about-dispensary-area.ek-about-bg.ek-alt-strip--b {
  background-image:
    linear-gradient(
      165deg,
      rgba(250, 247, 242, 0.94) 0%,
      rgba(235, 230, 222, 0.92) 55%,
      rgba(220, 217, 211, 0.9) 100%
    ),
    url("../images/bg/influencer.png");
  background-repeat: no-repeat;
  background-position:
    center calc(50% + var(--ek-parallax-y, 0px)),
    center calc(50% + var(--ek-parallax-y, 0px));
  background-size: cover, cover;
  background-attachment: scroll, scroll;
  transform: translateZ(0);
}

.ek-home-motion .about-dispensary-area.ek-about-bg.ek-alt-strip--b::before {
  opacity: 0 !important;
  background: none !important;
}

.ek-home-story__figure {
  max-width: min(420px, 100%);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(250, 247, 242, 0.1);
}

.ek-home-story__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201, 184, 150, 0.18);
}

.ek-home-story__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 22%;
}

/* About page: landscape source in square frame — favor subject on the right */
.wrapper.about-us .ek-about-img-hover .ek-home-story__photo {
  object-position: 72% 30%;
}

/* Home: signature strip (premium pillars below hero) */
.ek-signature-strip {
  position: relative;
  isolation: isolate;
  padding: var(--ek-section-y) 0;
  overflow: hidden;
}

.ek-signature-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(168deg, #080a0d 0%, #10141c 40%, #0a0c10 100%),
    radial-gradient(
      ellipse 90% 45% at 50% 0%,
      rgba(201, 184, 150, 0.06) 0%,
      transparent 58%
    );
  pointer-events: none;
}

.ek-signature-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 184, 150, 0.35) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.ek-signature-strip > .container {
  position: relative;
  z-index: 1;
}

.ek-signature-strip__item {
  position: relative;
  padding: 28px 22px 36px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.55s var(--ek-couture-ease),
    background 0.55s var(--ek-couture-ease);
}

/* Mobile: full-width stack — rule between each block */
@media (max-width: 767px) {
  .ek-signature-strip__grid
    > .col-md-6:not(:last-child)
    .ek-signature-strip__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Tablet: 2×2 — rule under first row only + vertical between columns */
@media (min-width: 768px) and (max-width: 991px) {
  .ek-signature-strip__grid
    > .col-md-6:nth-child(-n + 2)
    .ek-signature-strip__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ek-signature-strip__grid
    > .col-md-6:nth-child(odd)
    .ek-signature-strip__item {
    border-right: 1px solid rgba(201, 184, 150, 0.12);
  }
}

@media (min-width: 992px) {
  .ek-signature-strip__grid
    > .col-lg-3:not(:last-child)
    .ek-signature-strip__item {
    border-right: 1px solid rgba(201, 184, 150, 0.14);
  }
}

.ek-signature-strip__mark {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.ek-signature-strip__icon {
  width: 44px;
  height: 44px;
  color: rgba(201, 184, 150, 0.82);
  filter: drop-shadow(0 2px 24px rgba(201, 184, 150, 0.08));
  transition:
    color 0.45s var(--ek-couture-ease),
    filter 0.45s var(--ek-couture-ease),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-signature-strip__title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.26em !important;
  line-height: 1.45 !important;
  margin: 0 0 14px !important;
  color: rgba(244, 241, 235, 0.94) !important;
  transition: color 0.45s var(--ek-couture-ease);
}

.ek-signature-strip__line {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: rgba(244, 241, 235, 0.48);
  margin: 0 auto;
  max-width: 272px;
}

/* About the Dispensary (home, above footer) */
.about-dispensary-area {
  background: linear-gradient(
    165deg,
    var(--ek-platinum-1) 0%,
    var(--ek-platinum-2) 55%,
    #dcd9d3 100%
  );
  border-top: 1px solid var(--ek-platinum-3);
  position: relative;
  overflow: hidden;
}

/* ::before reserved for .ek-about-bg (fixed photo wash). Accent uses ::after. */
.about-dispensary-area::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(90, 115, 64, 0.09) 0%,
    rgba(201, 184, 150, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.about-dispensary-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.about-dispensary-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--ek-champagne);
  margin-bottom: 14px;
}

.about-dispensary-title {
  font-family:
    "Cormorant Garamond", "Book Antiqua", "Palatino Linotype", Palatino,
    Georgia, serif;
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ek-primary);
  line-height: 1.15;
  margin: 0 0 20px;
}

.about-dispensary-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--ek-champagne) 0%,
    var(--ek-accent) 45%,
    transparent 100%
  );
  margin-bottom: 24px;
  border-radius: 0;
}

.about-dispensary-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ek-primary);
  opacity: 0.92;
  margin-bottom: 18px;
}

.about-dispensary-cta {
  margin-top: 28px;
  display: inline-block;
  padding: 0 28px;
  height: 46px;
  line-height: 44px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--ek-primary);
  color: var(--ek-primary);
  background: transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

a.btn-def.about-dispensary-cta:hover {
  background: var(--ek-primary) !important;
  color: var(--ek-platinum-1) !important;
  border-color: var(--ek-primary) !important;
}

.about-dispensary-figure {
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-dispensary-frame {
  position: relative;
  border-radius: 2px;
  padding: 14px;
  background: linear-gradient(155deg, #fffefc 0%, var(--ek-platinum-2) 100%);
  box-shadow:
    0 8px 40px rgba(14, 16, 20, 0.1),
    0 0 0 1px rgba(201, 184, 150, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.about-dispensary-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(35, 46, 64, 0.08);
  border-radius: 2px;
  pointer-events: none;
}

.about-dispensary-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .about-dispensary-content {
    max-width: none;
    text-align: center;
    margin-top: 8px;
  }

  .about-dispensary-rule {
    margin-left: auto;
    margin-right: auto;
  }

  .about-dispensary-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Upstate delivery CTA (background image + panel + vertical image) */
.ek-upstate-delivery {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--ek-section-y) 0;
}

.ek-upstate-delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      110deg,
      rgba(10, 11, 13, 0.96) 0%,
      rgba(23, 21, 22, 0.94) 40%,
      rgba(28, 36, 51, 0.76) 100%
    ),
    url("../images/bg/leaves-bg.JPG") no-repeat center center / cover;
  background-attachment: scroll;
  pointer-events: none;
}

/* Top / bottom inner vignette (above bg, below content) */
.ek-upstate-delivery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 0 36px 56px -14px rgba(6, 7, 9, 0.72),
    inset 0 -36px 56px -14px rgba(6, 7, 9, 0.72);
}

.ek-upstate-delivery > .container {
  position: relative;
  z-index: 2;
}

.ek-upstate-delivery__panel {
  width: 100%;
  max-width: 560px;
  padding: 40px 36px 44px;
  background: rgba(14, 16, 20, 0.88);
  border: 1px solid rgba(201, 184, 150, 0.32);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ek-upstate-delivery__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--ek-champagne);
  margin-bottom: 14px;
}

.ek-upstate-delivery__title {
  font-family:
    "Cormorant Garamond", "Book Antiqua", "Palatino Linotype", Palatino,
    Georgia, serif;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ek-platinum-1);
  line-height: 1.15;
  margin: 0 0 18px;
}

.ek-upstate-delivery__rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--ek-champagne) 0%,
    var(--ek-accent) 50%,
    transparent 100%
  );
  margin-bottom: 20px;
  border-radius: 0;
}

.ek-upstate-delivery__lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(244, 241, 235, 0.9);
  opacity: 1;
  margin-bottom: 22px;
}

.ek-upstate-delivery__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(244, 241, 235, 0.85);
  opacity: 1;
}

.ek-upstate-delivery__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.ek-upstate-delivery__list li:last-child {
  margin-bottom: 0;
}

.ek-upstate-delivery__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ek-accent);
  opacity: 0.85;
}

.ek-upstate-delivery__cta {
  margin-top: 0;
  display: inline-block;
  padding: 0 28px;
  height: 46px;
  line-height: 44px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--ek-champagne) !important;
  color: var(--ek-platinum-1) !important;
  background: transparent !important;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

a.btn-def.ek-upstate-delivery__cta:hover {
  background: var(--ek-champagne) !important;
  color: var(--ek-primary-dark) !important;
  border-color: var(--ek-champagne) !important;
}

a.btn-def.btn-def--on-dark.ek-upstate-delivery__cta {
  background: linear-gradient(
    155deg,
    var(--ek-platinum-1) 0%,
    var(--ek-platinum-2) 45%,
    var(--ek-platinum-3) 100%
  ) !important;
  border: 1px solid #a8a59e !important;
  color: var(--ek-primary-dark) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 6px 24px rgba(0, 0, 0, 0.28);
}

a.btn-def.btn-def--on-dark.ek-upstate-delivery__cta:hover {
  background: linear-gradient(
    155deg,
    var(--ek-platinum-2) 0%,
    var(--ek-platinum-3) 55%,
    #bfb6a8 100%
  ) !important;
  border-color: #9a958c !important;
  color: var(--ek-primary-dark) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 28px rgba(0, 0, 0, 0.32);
}

.ek-upstate-delivery__figure {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 380px;
}

.ek-upstate-delivery__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

@media (min-width: 992px) {
  .ek-upstate-delivery__figure,
  .ek-upstate-delivery__img {
    min-height: 520px;
  }
}

@media (max-width: 991px) {
  .ek-upstate-delivery {
    padding: var(--ek-section-y) 0;
  }

  .ek-upstate-delivery__panel {
    max-width: none;
    margin: 0 auto;
    text-align: center;
  }

  .ek-upstate-delivery__rule {
    margin-left: auto;
    margin-right: auto;
  }

  .ek-upstate-delivery__list {
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .ek-upstate-delivery__cta {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .ek-upstate-delivery__figure {
    min-height: 320px;
    max-height: 420px;
  }

  .ek-upstate-delivery__img {
    min-height: 320px;
  }
}

/* ========== Page hero (About, Contact, etc.) ========== */

.ek-page-hero {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ek-page-hero--about {
  background: url(../images/bg/leaves-bg.JPG) no-repeat center center / cover;
  background-attachment: fixed;
  margin-top: -80px;
}
.ek-page-hero--contact {
  background-color: #0a0b0d;
  background-image:
    linear-gradient(
      145deg,
      rgba(18, 26, 42, 0.88) 0%,
      rgba(28, 36, 51, 0.72) 42%,
      rgba(12, 14, 20, 0.9) 100%
    ),
    url("../images/banner/contact-subheader.png");
  background-repeat: no-repeat, no-repeat;
  background-position:
    center center,
    72% center;
  background-size: auto, cover;
  background-attachment: fixed, fixed;
}

/* Contact only: shorter hero than About / defaults */
.wrapper.contact-us .ek-page-hero.ek-page-hero--contact {
  height: clamp(168px, 30vh, 260px);
  min-height: 368px;
}
.wrapper.contact-us .ek-page-hero.ek-page-hero--contact .ek-page-hero__content {
  padding-top: 12px;
  padding-bottom: 12px;
}

.ek-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgb(23 21 22 / 0%) 0%,
    rgb(35 46 64 / 0%) 50%,
    rgb(23 21 22 / 41%) 100%
  );
}

/* About hero: blue wash over leaves bg (aligns with index branding-section blue) */
.wrapper.about-us .ek-page-hero--about .ek-page-hero__overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      155deg,
      rgb(26 48 78 / 64%) 0%,
      rgb(18 36 62 / 70%) 42%,
      rgb(14 32 58 / 67%) 100%
    ),
    linear-gradient(
      180deg,
      rgb(23 21 22 / 0%) 0%,
      rgb(35 46 64 / 0%) 50%,
      rgb(23 21 22 / 41%) 100%
    );
}

.ek-page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  color: #f1f1f1;
}

.ek-page-hero__content h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(
    90deg,
    var(--ek-platinum-3),
    var(--ek-platinum-1),
    var(--ek-platinum-3)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ek-page-hero__content h1 {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}

.ek-page-hero__content p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 18px;
  color: rgba(241, 241, 241, 0.85);
}

.ek-page-hero__content .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: transparent;
}

.ek-page-hero__content .breadcrumb li {
  color: rgba(232, 233, 235, 0.7);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.ek-page-hero__content .breadcrumb li a {
  color: rgba(232, 233, 235, 0.9);
  transition: color 0.25s ease;
}

.ek-page-hero__content .breadcrumb li a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .ek-page-hero {
    height: 42vh;
    min-height: 280px;
  }
  .wrapper.contact-us .ek-page-hero.ek-page-hero--contact {
    height: clamp(152px, 26vh, 220px);
    min-height: 152px;
  }
  .ek-page-hero--about,
  .ek-page-hero--contact {
    background-attachment: scroll;
  }
  .ek-page-hero__content h1 {
    font-size: 28px;
  }
}

/* ========== Mission / FAQ parallax strip ========== */

.ek-mission-strip,
.ek-faq-strip {
  position: relative;
  padding: 70px 0;
  background: url("../images/bg/leaves-bg.JPG") no-repeat center center / cover;
  background-attachment: fixed;
}

.ek-mission-strip__inner,
.ek-faq-strip__inner {
  position: relative;
  z-index: 1;
}

.ek-mission-strip__quote {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.7;
  color: rgba(241, 241, 241, 0.92);
  font-style: italic;
}

.ek-faq-strip .btn-def.btn-white {
  border-color: rgba(232, 233, 235, 0.45);
  color: rgba(232, 233, 235, 0.9);
  padding: 0 32px;
  height: 46px;
  line-height: 44px;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.ek-faq-strip .btn-def.btn-white:hover {
  background: var(--ek-accent);
  border-color: var(--ek-accent);
  color: #fff;
}

@media (max-width: 991px) {
  .ek-mission-strip,
  .ek-faq-strip {
    background-attachment: scroll;
  }
}

/* ========== Stat cards ========== */

.ek-numbers-area {
  background: var(--ek-platinum-1);
}

.ek-stat-card {
  padding: 30px 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .ek-stat-card:hover {
  transform: translate3d(0, -6px, 0);
}

.ek-stat-card__number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--ek-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.ek-stat-card__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ek-primary);
  letter-spacing: 0.04em;
  margin: 0;
}

/* ========== Choose-us card hover ========== */

.ek-home-motion .ek-choose-card {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  padding: 30px 20px;
  border-radius: 4px;
}

.ek-home-motion .ek-choose-card:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 18px 40px rgba(23, 21, 22, 0.1);
}

.ek-home-motion .ek-choose-card .choose-icon i {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
}

.ek-home-motion .ek-choose-card:hover .choose-icon i {
  transform: scale(1.15);
  color: var(--ek-accent);
}

/* ========== About image hover ========== */

.ek-about-img-hover {
  overflow: hidden;
  border-radius: 4px;
}

.ek-about-img-hover img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
  width: 100%;
}

.ek-home-motion .ek-about-img-hover:hover img {
  transform: scale(1.04);
}

/* ========== Team card hover ========== */

.ek-home-motion .ek-team-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .ek-team-card:hover {
  transform: translate3d(0, -6px, 0);
}

/* ========== Contact info card hover ========== */

.ek-contact-info-card {
  transition: box-shadow 0.4s ease;
  border-radius: 4px;
}

.ek-home-motion .ek-contact-info-card:hover {
  box-shadow: 0 12px 36px rgba(23, 21, 22, 0.08);
}

.ek-home-motion .ek-contact-info-card .contact-icon i {
  transition:
    transform 0.35s ease,
    color 0.3s ease;
}

.ek-home-motion .ek-contact-info-card li:hover .contact-icon i {
  transform: scale(1.12);
  color: var(--ek-accent);
}

/* ========== Contact form polish ========== */

.ek-contact-form .info,
.ek-contact-form .area-tex {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.ek-contact-form .info:focus,
.ek-contact-form .area-tex:focus {
  border-color: var(--ek-accent);
  box-shadow: 0 0 0 3px rgba(79, 104, 46, 0.12);
  outline: none;
}

.ek-select-topic {
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  padding: 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: #fff;
  transition: border-color 0.3s ease;
}

.ek-select-topic:focus {
  border-color: var(--ek-accent);
  outline: none;
}

.ek-home-motion .sbumit-btn {
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ek-home-motion .sbumit-btn:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 20px rgba(23, 21, 22, 0.15);
}

/* ========== Contact page: visit band + form / details cards ========== */

.wrapper.contact-us .ek-contact-intro-panel {
  padding-bottom: 8px;
}

.ek-contact-visit {
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgba(201, 184, 150, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #fdfbf8 0%, var(--ek-platinum-1) 55%, #f4efe6 100%);
  border-top: 1px solid rgba(201, 184, 150, 0.28);
  border-bottom: 1px solid rgba(28, 36, 51, 0.08);
}

.ek-contact-visit__container {
  padding-top: 2.75rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .ek-contact-visit__container {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
}

.ek-contact-visit__eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(28, 36, 51, 0.55);
  margin-bottom: 0.5rem;
}

.ek-contact-visit__title {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ek-primary);
  margin-bottom: 0.75rem;
}

.ek-contact-visit__lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(28, 36, 51, 0.72);
  max-width: 640px;
  margin: 0 auto;
}

.ek-contact-map-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--ek-card-elev);
  border: 1px solid rgba(201, 184, 150, 0.35);
  background: #e8e4dc;
  min-height: 320px;
  height: 360px;
}

@media (min-width: 992px) {
  .ek-contact-map-frame {
    height: 440px;
    min-height: 400px;
  }
}

.ek-contact-map-frame > #googleMap,
.ek-contact-map-frame > .ek-contact-map-iframe,
.ek-contact-map-frame > iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

.ek-contact-visit-card {
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid rgba(201, 184, 150, 0.35);
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(14, 16, 20, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ek-contact-visit-card__title {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--ek-primary);
  margin: 0 0 10px;
}

.ek-contact-visit-card__kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ek-accent);
  margin: 0 0 8px;
}

.ek-contact-visit-card__note {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(28, 36, 51, 0.58);
  margin: 0 0 20px;
}

.ek-contact-visit-hours {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: var(--ek-primary);
  border-top: 1px solid rgba(28, 36, 51, 0.08);
}

.ek-contact-visit-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(28, 36, 51, 0.06);
}

.ek-contact-visit-hours__day {
  color: rgba(28, 36, 51, 0.65);
}

.ek-contact-directions-btn {
  margin-top: auto;
  align-self: stretch;
  width: 100%;
  text-align: center;
  height: 46px;
  line-height: 44px;
  padding: 0 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.ek-contact-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #0e1628;
  background-image:
    linear-gradient(
      155deg,
      rgba(32, 58, 95, 0.88) 0%,
      rgba(28, 45, 78, 0.82) 38%,
      rgba(18, 32, 58, 0.9) 100%
    ),
    url("../images/bg/bg-cover.png");
  background-repeat: no-repeat, repeat;
  background-position:
    center center,
    center top;
  background-size: cover;
}

.ek-contact-main > .container {
  position: relative;
  z-index: 1;
}

.ek-contact-main__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  margin-bottom: 0.35rem;
  color: var(--ek-champagne);
}

.wrapper.contact-us
  .ek-contact-main
  .ek-jungle-welcome.ek-contact-main__eyebrow {
  color: var(--ek-champagne);
}

.ek-contact-main__title {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--ek-platinum-1);
  margin-bottom: 0.5rem;
}

.ek-contact-main__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 241, 235, 0.82);
}

.ek-contact-form-card,
.ek-contact-details-card {
  height: 100%;
  padding: 28px 24px 26px;
  background: #fff;
  border: 1px solid rgba(201, 184, 150, 0.28);
  border-radius: 4px;
  box-shadow: 0 16px 44px rgba(14, 16, 20, 0.06);
}

.ek-contact-details-card__title {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--ek-primary);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(28, 36, 51, 0.08);
}

.ek-contact-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ek-contact-details-list__item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(28, 36, 51, 0.06);
}

.ek-contact-details-list__item:last-of-type {
  border-bottom: none;
}

.ek-contact-details-list__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 184, 150, 0.45);
  border-radius: 50%;
  color: var(--ek-accent);
  font-size: 18px;
}

.ek-contact-details-list__body {
  min-width: 0;
}

.ek-contact-details-list__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 36, 51, 0.45);
  margin-bottom: 2px;
}

.ek-contact-details-list__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ek-primary);
  text-decoration: none;
  display: inline-block;
  word-break: break-word;
}

a.ek-contact-details-list__value:hover {
  color: var(--ek-accent);
}

.ek-contact-details-list__value--static {
  line-height: 1.55;
}

.ek-contact-details-social {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(28, 36, 51, 0.08);
}

.ek-contact-details-social__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(28, 36, 51, 0.45);
  margin-bottom: 10px;
}

.ek-contact-details-social__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ek-contact-details-social__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(28, 36, 51, 0.12);
  border-radius: 50%;
  color: var(--ek-primary);
  background: #faf9f7;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.ek-contact-details-social__list a:hover {
  background: var(--ek-accent);
  border-color: var(--ek-accent);
  color: #fff;
}

.ek-contact-details-social__list .ek-social-instagram svg,
.ek-contact-details-social__list .ek-social-weedmaps svg {
  display: block;
}

.wrapper.contact-us .ek-contact-form .info,
.wrapper.contact-us .ek-contact-form .area-tex {
  border-color: rgba(28, 36, 51, 0.12);
  background: #fdfcfa;
}

.wrapper.contact-us .ek-contact-submit.sbumit-btn {
  width: 100%;
  max-width: 280px;
  border-color: var(--ek-accent);
  color: var(--ek-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.wrapper.contact-us .ek-contact-submit.sbumit-btn:hover {
  background: var(--ek-accent);
  border-color: var(--ek-accent);
  color: #fff;
}

/* ========== Global motion: hero, parallax, hovers, scroll reveal ========== */

@keyframes ek-hero-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ek-ken-burns {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-1%, -0.5%, 0);
  }
}

@keyframes ek-float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6px, 0);
  }
}

.ek-home-motion .ek-video-hero__bg video {
  animation: ek-ken-burns 32s ease-in-out infinite alternate;
  will-change: transform;
}

.ek-home-motion .ek-hero-line {
  animation: ek-hero-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ek-home-motion .ek-video-hero__content .ek-hero-ctas.ek-hero-line {
  animation-delay: 0.58s;
}

.ek-home-motion .ek-page-hero__content .ek-hero-line:nth-child(1) {
  animation-delay: 0.1s;
}
.ek-home-motion .ek-page-hero__content .ek-hero-line:nth-child(2) {
  animation-delay: 0.24s;
}
.ek-home-motion .ek-page-hero__content .ek-hero-line:nth-child(3) {
  animation-delay: 0.38s;
}
.ek-home-motion .ek-page-hero__content .ek-hero-line:nth-child(4) {
  animation-delay: 0.52s;
}

.ek-home-motion .ek-video-hero__overlay {
  transition: opacity 0.6s ease;
}

.ek-home-motion .ek-video-hero:hover .ek-video-hero__overlay {
  opacity: 0.92;
}

.ek-home-motion .about-dispensary-area.ek-about-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ek-home-motion .about-dispensary-area.ek-about-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15%;
  bottom: -15%;
  z-index: 0;
  min-height: 130%;
  height: auto;
  inset: auto;
  background: url("../images/bg/leaves-bg.JPG") no-repeat center center / cover;
  background-attachment: scroll;
  transform: translate3d(0, var(--ek-parallax-y, 0px), 0);
  opacity: 0.12;
  pointer-events: none;
  backface-visibility: hidden;
}

.ek-home-motion .about-dispensary-area.ek-about-bg > .container {
  position: relative;
  z-index: 1;
}

.ek-home-motion .ek-reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.ek-home-motion .ek-reveal.ek-reveal--in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.ek-home-motion .delivery-service-area .single-service {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.ek-home-motion .delivery-service-area .single-service:hover {
  transform: translate3d(0, -8px, 0);
  box-shadow: 0 18px 40px rgba(23, 21, 22, 0.12);
  border-color: rgba(79, 104, 46, 0.25);
}

.ek-home-motion .delivery-service-area .single-service img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .delivery-service-area .single-service:hover img {
  transform: scale(1.08);
  animation: ek-float-soft 2.8s ease-in-out infinite;
}

.ek-home-motion .ek-signature-strip__mark {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .ek-signature-strip__item:hover .ek-signature-strip__mark {
  transform: translateY(-4px);
}

.ek-home-motion .ek-signature-strip__item:hover .ek-signature-strip__icon {
  color: rgba(236, 228, 210, 0.96);
  filter: drop-shadow(0 4px 28px rgba(201, 184, 150, 0.18));
}

.ek-home-motion .ek-signature-strip__item:hover .ek-signature-strip__title {
  color: rgba(255, 255, 255, 0.98) !important;
}

.ek-home-motion .ek-signature-strip__item:hover .ek-signature-strip__line {
  color: rgba(244, 241, 235, 0.62);
}

.ek-home-motion .banner-area .single-banner {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.ek-home-motion .banner-area .single-banner:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 22px 48px rgba(23, 21, 22, 0.1);
}

.wrapper.home-one.ek-home-motion .banner-area .single-banner:hover {
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42) !important;
}

.ek-home-motion .banner-area .sb-img img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .banner-area .single-banner:hover .sb-img img {
  transform: scale(1.05) translate3d(0, -4px, 0);
}

/* Twin promo .sb-img: vertical product sample, frame 217×404 (scales down with column) */
.home-one .banner-area .sb-img {
  width: min(100%, 217px);
  aspect-ratio: 217 / 404;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.home-one .banner-area .sb-img img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
}

.ek-home-motion .product-item .single-product {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .product-item .single-product:hover {
  transform: translate3d(0, -6px, 0);
}

.ek-home-motion .single-product:hover .product-img a img.primary-image {
  transform: scale(1.04);
}

.ek-home-motion .title-tab-product-category .nav a {
  position: relative;
  transition: color 0.3s ease;
}

.ek-home-motion .title-tab-product-category .nav a::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ek-accent),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.9;
}

.ek-home-motion .title-tab-product-category .nav a:hover::after,
.ek-home-motion .title-tab-product-category .nav a.active::after {
  transform: scaleX(1);
}

.ek-home-motion .heading-title.heading-style::after {
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s ease;
}

.ek-home-motion .heading-title.heading-style:hover::after {
  width: 48px;
}

.ek-home-motion .single-brand {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ek-home-motion .single-brand:hover {
  transform: translate3d(0, -5px, 0) scale(1.02);
  box-shadow: 0 16px 36px rgba(23, 21, 22, 0.12);
}

/* Blog cards: landscape thumbnail (crops portrait sources; pairs with Unsplash h= crop) */
.single-blog .blog-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.single-blog .blog-img > a {
  display: block;
  height: 100%;
}

.single-blog .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ek-home-motion .blog-area .blog-img img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .blog-area .single-blog:hover .blog-img img {
  transform: scale(1.06);
}

.ek-home-motion .blog-area .read-more {
  transition:
    color 0.3s ease,
    letter-spacing 0.35s ease;
}

.ek-home-motion .blog-area .single-blog:hover .read-more {
  letter-spacing: 0.08em;
  color: var(--ek-accent);
}

.ek-home-motion .header-top-bar .login-register-area a,
.ek-home-motion #sticky-header .ek-navbar-login .login-register-area a,
.ek-home-motion .header-top-bar .cart-icon > a,
.ek-home-motion #sticky-header .ek-header-cart-col .cart-icon > a,
.ek-home-motion #sticky-header .ek-header-cart .cart-icon > a {
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.ek-home-motion .header-top-bar .login-register-area a:hover,
.ek-home-motion #sticky-header .ek-navbar-login .login-register-area a:hover,
.ek-home-motion .header-top-bar .cart-icon > a:hover,
.ek-home-motion #sticky-header .ek-header-cart-col .cart-icon > a:hover,
.ek-home-motion #sticky-header .ek-header-cart .cart-icon > a:hover {
  opacity: 0.92;
  color: var(--ek-platinum-1) !important;
}

.ek-home-motion .socile-icon-style-2 ul li a {
  display: inline-block;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
}

.ek-home-motion .socile-icon-style-2 ul li a:hover {
  transform: translate3d(0, -3px, 0) scale(1.12);
  color: var(--ek-platinum-1) !important;
}

.ek-home-motion #sticky-header .main-menu > li > a {
  position: relative;
  transition: color 0.3s ease;
}

.ek-home-motion #sticky-header .main-menu > li > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--ek-platinum-3),
    var(--ek-platinum-1)
  );
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.85;
}

.ek-home-motion #sticky-header .main-menu > li:hover > a::after,
.ek-home-motion #sticky-header .main-menu > li.current > a::after {
  transform: scaleX(1);
}

.ek-home-motion #sticky-header .main-menu > li.ek-nav-cta > a::after {
  display: none;
}

.ek-home-motion .search-box .src-btn {
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.ek-home-motion .search-box .src-btn:hover {
  transform: scale(1.12);
  color: var(--ek-platinum-1) !important;
}

.ek-home-motion #sticky-header .search-box .src-btn:hover {
  transform: translateY(-50%) scale(1.12);
}

.ek-home-motion .footer-area .informatoin a,
.ek-home-motion .footer-area .contact-text a {
  transition:
    color 0.25s ease,
    padding-left 0.3s ease;
}

.ek-home-motion .footer-area .informatoin a:hover {
  color: var(--ek-platinum-1) !important;
  padding-left: 6px;
}

.ek-home-motion .instagrm ul li a {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.ek-home-motion .instagrm ul li a img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .instagrm ul li a:hover img {
  transform: scale(1.12);
}

.ek-home-motion .socile-icon-style-3 ul li a {
  transition:
    transform 0.35s ease,
    color 0.3s ease;
}

.ek-home-motion .socile-icon-style-3 ul li a:hover {
  transform: translate3d(0, -4px, 0);
  color: var(--ek-platinum-1) !important;
}

.ek-home-motion .newslatter .input-box a {
  transition:
    transform 0.3s ease,
    background 0.3s ease !important;
}

.ek-home-motion .newslatter .input-box a:hover {
  transform: translate3d(4px, 0, 0);
}

.ek-home-motion .testimonial-area .testimonial-img img,
.ek-home-motion .testimonial-area .ek-rewards-cta__crown img {
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

/* Testimonial avatars: crown mark on dark band (crown asset reads light) */
.testimonial-area .testimonial-img .ek-icon-crown {
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.35));
}

.testimonial-area .ek-rewards-cta__crown .ek-icon-crown {
  height: auto;
  max-height: 120px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.35));
}

.ek-home-motion
  .testimonial-area
  .single-testimonial:hover
  .testimonial-img
  img,
.ek-home-motion
  .testimonial-area
  .ek-rewards-cta__copy:hover
  .ek-rewards-cta__crown
  img {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.ek-home-motion .product-ctg-img img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ek-home-motion .single-ctg-item:hover .product-ctg-img img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  /* Story “The product” only — scroll attachment; parallax bands use scroll + transform (see ek-parallax-bg.js) */
  .ek-home-motion .ek-home-story--alt.ek-alt-strip--a::before,
  .ek-home-motion .testimonial-area.ek-testimonial-parallax,
  .ek-home-motion .about-dispensary-area.ek-about-bg::before,
  .ek-home-motion .new-arrival-area.ek-alt-strip--a::after,
  .ek-home-motion .banner-area.ek-alt-strip--b::after,
  .ek-home-motion .discunt-featured-onsale-area.ek-alt-strip--a::after,
  .ek-home-motion .arrival-ratted-sale-area.ek-alt-strip--a::after,
  .ek-home-motion .brand-area.ek-alt-strip--b::after,
  .ek-home-motion .blog-area.ek-alt-strip--a::after,
  .ek-page-hero--about,
  .ek-page-hero--contact,
  .ek-mission-strip,
  .ek-faq-strip {
    background-attachment: scroll !important;
  }

  .wrapper.home-one.ek-index
    .about-dispensary-area.ek-about-bg.ek-alt-strip--b {
    background-attachment: scroll, scroll !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ek-home-motion .ek-video-hero__bg video,
  .ek-home-motion .ek-hero-line {
    animation: none !important;
  }

  .ek-home-motion .ek-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .ek-home-motion .delivery-service-area .single-service:hover img {
    animation: none;
  }

  .ek-home-motion .ek-home-story--alt.ek-alt-strip--a::before,
  .ek-home-motion .testimonial-area.overlay.ek-alt-strip--b,
  .ek-home-motion .new-arrival-area.ek-alt-strip--a::after,
  .ek-home-motion .banner-area.ek-alt-strip--b::after,
  .ek-home-motion .discunt-featured-onsale-area.ek-alt-strip--a::after,
  .ek-home-motion .arrival-ratted-sale-area.ek-alt-strip--a::after,
  .ek-home-motion .brand-area.ek-alt-strip--b::after,
  .ek-home-motion .blog-area.ek-alt-strip--a::after {
    background-attachment: scroll !important;
  }

  .wrapper.home-one.ek-index
    .about-dispensary-area.ek-about-bg.ek-alt-strip--b {
    background-attachment: scroll, scroll !important;
  }
}

/* ========== Couture / editorial refinement (site-wide) ========== */

/* Index page only — hunter green accent (~#48612a); pair with .ek-index on wrapper */
.wrapper.home-one.ek-index {
  --ek-accent: #48612a;
  /* +50px top/bottom vs global --ek-section-y / .ptb-70 (70 → 120) */
  --ek-section-y: 120px;
}

.wrapper.home-one.ek-index .ptb-70 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.wrapper.home-one.ek-index .ek-signature-strip {
  --ek-section-y: 70px;
}

.wrapper.home-one.ek-index .testimonial-area.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.wrapper.home-one.ek-index .brand-area.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.wrapper.home-one.ek-index .footer-area.ptb-50 {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Home canvas: leaves photo + dark wash */
.wrapper.home-one {
  background-color: var(--ek-noir);
  background-image:
    linear-gradient(
      110deg,
      rgba(10, 11, 13, 0.94) 0%,
      rgba(23, 21, 22, 0.91) 45%,
      rgba(28, 36, 51, 0.78) 100%
    ),
    url("../images/bg/leaves-bg.JPG");
  background-repeat: no-repeat, no-repeat;
  background-position:
    center top,
    center top;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.heading-title.heading-style h5 {
  font-family:
    "Cormorant Garamond", "Book Antiqua", "Palatino Linotype", Palatino,
    Georgia, serif !important;
  font-size: clamp(15px, 2.2vw, 20px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.28em !important;
  color: var(--ek-primary) !important;
  text-transform: uppercase !important;
}

.home-one .heading-title.heading-style h5 {
  color: var(--ek-platinum-1) !important;
}

.heading-title.heading-style:before,
.heading-title.heading-style:after {
  height: 1px !important;
  bottom: -18px !important;
  border-radius: 0 !important;
}

.heading-title.heading-style:before {
  width: 72px !important;
  background: linear-gradient(
    90deg,
    rgba(201, 184, 150, 0.85) 0%,
    rgba(207, 198, 184, 0.5) 100%
  ) !important;
}

.heading-title.heading-style:after {
  width: 36px !important;
  left: 0 !important;
  background: linear-gradient(
    90deg,
    var(--ek-accent),
    rgba(72, 97, 42, 0.55)
  ) !important;
}

.home-one .delivery-service-area .single-service {
  background: rgba(14, 16, 20, 0.82) !important;
  border: 1px solid rgba(201, 184, 150, 0.28) !important;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset !important;
  padding: 36px 24px !important;
  transition:
    box-shadow 0.55s var(--ek-couture-ease),
    transform 0.55s var(--ek-couture-ease),
    border-color 0.55s var(--ek-couture-ease) !important;
}

.home-one .delivery-service-area .single-service:hover {
  border-color: rgba(201, 184, 150, 0.55) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset !important;
}

.home-one .delivery-service-area .single-service h5 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--ek-text-on-dark) !important;
  margin-top: 22px !important;
}

/* Product tile image: soft radius + champagne gradient frame (fits inside .single-product overflow) */
.single-prodcut-img {
  --ek-prod-img-r: 10px;
  position: relative;
  padding: 1px;
  border-radius: calc(var(--ek-prod-img-r) + 1px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    128deg,
    rgba(201, 184, 150, 0.55) 0%,
    rgba(201, 184, 150, 0.14) 26%,
    rgba(247, 244, 238, 0.14) 48%,
    rgba(201, 184, 150, 0.14) 72%,
    rgba(201, 184, 150, 0.48) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 0 0 1px rgba(10, 11, 14, 0.35),
    inset 0 -18px 36px rgba(0, 0, 0, 0.12);
  transition:
    background 0.5s var(--ek-couture-ease),
    box-shadow 0.5s var(--ek-couture-ease);
}

.single-prodcut-img > a {
  display: block;
  border-radius: var(--ek-prod-img-r);
  overflow: hidden;
  background: var(--ek-noir);
  line-height: 0;
}

.single-prodcut-img > a img {
  vertical-align: top;
}

.single-product:hover .single-prodcut-img {
  background: linear-gradient(
    128deg,
    rgba(201, 184, 150, 0.72) 0%,
    rgba(201, 184, 150, 0.22) 28%,
    rgba(255, 252, 246, 0.2) 50%,
    rgba(201, 184, 150, 0.22) 72%,
    rgba(201, 184, 150, 0.65) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 0 1px rgba(201, 184, 150, 0.22),
    inset 0 -22px 44px rgba(201, 184, 150, 0.08);
}

.single-prodcut-img.product-overlay:before {
  border-radius: calc(var(--ek-prod-img-r) - 6px);
}

/* Crown injected by js/ek-product-crown.js when .product-img has .product-label + .single-prodcut-img */
@keyframes ek-crown-float {
  0%,
  100% {
    transform: translate3d(-50%, -8px, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(-50%, -22px, 0) rotate(2deg);
  }
}

.single-product.ek-has-product-crown {
  overflow: visible;
}

/* Let crowns extend past card / slide / tab (see js/ek-crown-allow-overflow) */
.ek-crown-allow-overflow {
  overflow: visible !important;
}

/*
 * Product Slick: clip the translated .slick-track (default Slick behavior).
 * Padding-top keeps .ek-product-crown room inside the clip instead of using overflow:visible on .slick-list.
 */
.home-one .product-area .slick-list,
.home-one .total-new-arrival .slick-list,
.home-one .new-arrival-slider-active .slick-list,
.home-one .carsoule-btn .slick-list {
  overflow: hidden !important;
  padding-top: clamp(48px, 6.5vw, 84px);
  box-sizing: border-box;
}

/* Theme default -15px pulls past the padded column; on home it often reads as horizontal page bleed next to Slick */
.home-one .total-new-arrival {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Index parallax strips use overflow:hidden; allow crown to extend above the band */
.wrapper.home-one.ek-index .discunt-featured-onsale-area.ek-alt-strip--a,
.wrapper.home-one.ek-index .new-arrival-area.ek-alt-strip--a {
  overflow: visible;
}

.product-img > .ek-product-crown {
  position: absolute;
  left: 50%;
  top: -62px;
  z-index: 998;
  width: clamp(72px, 18vw, 120px);
  height: clamp(72px, 18vw, 120px);
  transform: translate3d(-50%, -8px, 0);
  pointer-events: none;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.65))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45))
    drop-shadow(0 14px 32px rgba(0, 0, 0, 0.3));
  animation: ek-crown-float 3.4s ease-in-out infinite;
  will-change: transform;
  display: block;
  line-height: 0;
}

.product-img > .ek-product-crown img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

@media (prefers-reduced-motion: reduce) {
  .product-img > .ek-product-crown {
    animation: none;
    transform: translate3d(-50%, -14px, 0);
  }
}

.home-one .product-item .single-product {
  transition: box-shadow 0.55s var(--ek-couture-ease) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28) !important;
}

.home-one .product-item .single-product:hover {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 184, 150, 0.28) !important;
}

@media (max-width: 991px) {
  .wrapper.home-one {
    background-attachment: scroll, scroll;
  }
}

/* Delivery strip: blue wash + leaves-bg */
.home-one .delivery-service-area {
  position: relative;
  isolation: isolate;
}

.home-one .delivery-service-area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      118deg,
      rgba(22, 38, 58, 0.97) 0%,
      rgba(35, 46, 64, 0.95) 42%,
      rgba(18, 32, 52, 0.92) 100%
    ),
    url("../images/bg/leaves-bg.JPG") no-repeat center center / cover;
  background-attachment: scroll, scroll;
  pointer-events: none;
}

.home-one .delivery-service-area > .container {
  position: relative;
  z-index: 1;
}

/* Banner strip: green wash + leaves-bg */
.home-one .banner-area {
  position: relative;
  isolation: isolate;
}

.home-one .banner-area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      118deg,
      rgba(38, 54, 22, 0.97) 0%,
      rgba(72, 97, 42, 0.95) 42%,
      rgba(22, 36, 14, 0.93) 100%
    ),
    url("../images/bg/leaves-bg.JPG") no-repeat center center / cover;
  background-attachment: scroll, scroll;
  pointer-events: none;
}

.home-one .banner-area > .container {
  position: relative;
  z-index: 1;
}

/* New arrival / on-sale / top-rated: blue wash + leaves-bg */
.home-one .arrival-ratted-sale-area {
  position: relative;
  isolation: isolate;
}

.home-one .arrival-ratted-sale-area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      118deg,
      rgba(22, 38, 58, 0.97) 0%,
      rgba(35, 46, 64, 0.95) 42%,
      rgba(18, 32, 52, 0.92) 100%
    ),
    url("../images/bg/leaves-bg.JPG") no-repeat center center / cover;
  background-attachment: scroll, scroll;
  pointer-events: none;
}

.home-one .arrival-ratted-sale-area > .container {
  position: relative;
  z-index: 1;
}

.home-one .discunt-featured-onsale-area {
  position: relative;
  isolation: isolate;
}

.home-one .discunt-featured-onsale-area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(168deg, #080a0d 0%, #10141c 40%, #0a0c10 100%),
    radial-gradient(
      ellipse 90% 45% at 50% 0%,
      rgba(201, 184, 150, 0.06) 0%,
      transparent 58%
    );
  pointer-events: none;
}

.home-one .discunt-featured-onsale-area > .container {
  position: relative;
  z-index: 1;
}

/* Footer: remove payment icon column and let copyright span full row */
.footer-bottom .row > .col-md-6:has(> ul.payment-support.text-end) {
  display: none !important;
}
.footer-bottom .row > .col-md-6:not(:has(> ul.payment-support)) {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

/* Home: royal pattern shows through — full-bleed photo blocks keep their own BG */
.home-one .prodcut-name > a {
  color: rgba(244, 241, 235, 0.92) !important;
}
.home-one .prodcut-name > a:hover {
  color: var(--ek-champagne) !important;
}
.home-one .prodcut-price,
.home-one .new-price {
  color: var(--ek-champagne) !important;
}
.home-one .old-price {
  color: rgba(201, 184, 150, 0.42) !important;
}
.home-one .title-tab-product-category li a {
  color: rgba(244, 241, 235, 0.55) !important;
}
.home-one .title-tab-product-category li a.active {
  color: var(--ek-platinum-1) !important;
}

.home-one .single-banner.gray-bg {
  background: rgba(14, 16, 20, 0.78) !important;
  border: 1px solid rgba(201, 184, 150, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.home-one .banner-text > h5,
.home-one .banner-list ul li,
.home-one .banner-text > p {
  color: rgba(232, 229, 220, 0.68) !important;
}
.home-one .banner-text h2,
.home-one .banner-text h3 {
  color: var(--ek-platinum-1) !important;
}
.home-one .banner-list ul li:before {
  background: var(--ek-champagne) !important;
}
.home-one .banner-area .social-icon.socile-icon-style-1 li a {
  border-color: rgba(201, 184, 150, 0.45) !important;
  color: rgba(244, 241, 235, 0.88) !important;
}
.home-one .banner-area .social-icon.socile-icon-style-1 li a:hover {
  background: var(--ek-accent) !important;
  border-color: var(--ek-accent) !important;
  color: #fff !important;
}

.home-one .product-ctg-content > p {
  color: rgba(244, 241, 235, 0.88) !important;
}
.home-one .product-ctg-content .font-bold {
  color: var(--ek-champagne) !important;
}
.home-one .arrival-ratted-sale-area .social-icon.socile-icon-style-1 li a {
  border-color: rgba(201, 184, 150, 0.45) !important;
  color: rgba(244, 241, 235, 0.85) !important;
}
.home-one
  .arrival-ratted-sale-area
  .social-icon.socile-icon-style-1
  li
  a:hover {
  background: var(--ek-accent) !important;
  border-color: var(--ek-accent) !important;
  color: #fff !important;
}

.home-one .single-brand {
  background: var(--ek-noir, #0a0b0d) !important;
  border-color: rgba(201, 184, 150, 0.25) !important;
}

/* Partner logo slider (Slick .total-brand): fixed row height, inverted greyscale until hover */
.total-brand .slick-slide.slick-active {
  padding-top: 0;
  padding-bottom: 0;
}

.total-brand .slick-slide > div {
  height: 100%;
}

.total-brand .brand-item {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.total-brand .single-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 88px;
  height: 88px;
}

.total-brand .single-brand a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.total-brand .single-brand img,
.total-brand .slick-slide .single-brand img {
  width: auto !important;
  max-width: 100%;
  max-height: 52px;
  height: auto;
  object-fit: contain;
  padding: 8px 12px;
  box-sizing: border-box;
  filter: grayscale(1) invert(1);
  -webkit-filter: grayscale(1) invert(1);
  opacity: 0.88;
  transition:
    filter 0.4s ease,
    -webkit-filter 0.4s ease,
    opacity 0.35s ease;
}

.total-brand .single-brand:hover img,
.total-brand .single-brand:focus-within img {
  filter: none;
  -webkit-filter: none;
  opacity: 1;
}

@media (max-width: 767px) {
  .total-brand .single-brand {
    min-height: 76px;
    height: 76px;
  }

  .total-brand .single-brand img,
  .total-brand .slick-slide .single-brand img {
    max-height: 44px;
    padding: 6px 10px;
  }
}

.home-one .blog-title h5 a {
  color: var(--ek-platinum-1) !important;
}
.home-one .blog-title h5 a:hover {
  color: var(--ek-champagne) !important;
}
.home-one .like-comments-date li a {
  color: rgba(232, 229, 220, 0.55) !important;
}
.home-one .like-comments-date li a:hover {
  color: var(--ek-champagne) !important;
}
.home-one .like-comments-date li.blog-date a {
  color: var(--ek-champagne) !important;
}
.home-one .blog-text p {
  color: rgba(232, 229, 220, 0.78) !important;
}
.home-one .read-more {
  color: var(--ek-champagne) !important;
}
.home-one .read-more:hover {
  color: var(--ek-platinum-1) !important;
}

/* About block — pattern from wrapper; typography on dark */
.home-one .about-dispensary-area {
  background: transparent !important;
  border-top-color: rgba(201, 184, 150, 0.22) !important;
}
.home-one .about-dispensary-title {
  color: var(--ek-platinum-1) !important;
}

.home-one .about-dispensary-text p {
  color: rgba(244, 241, 235, 0.85) !important;
  opacity: 1 !important;
}
.home-one .about-dispensary-frame {
  background: rgba(14, 16, 20, 0.75) !important;
  border: 1px solid rgba(201, 184, 150, 0.28) !important;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
}
.home-one .about-dispensary-frame::after {
  border-color: rgba(201, 184, 150, 0.2) !important;
}
.home-one .about-dispensary-cta {
  border-color: var(--ek-champagne) !important;
  color: var(--ek-platinum-1) !important;
}
.home-one a.btn-def.about-dispensary-cta:hover {
  background: var(--ek-champagne) !important;
  color: var(--ek-primary-dark) !important;
  border-color: var(--ek-champagne) !important;
}

.wrapper.home-one.ek-home-motion .about-dispensary-area.ek-about-bg::before {
  background-image: none !important;
  opacity: 0 !important;
}

.wrapper.home-one.ek-home-motion .delivery-service-area .single-service:hover {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42) !important;
  border-color: rgba(201, 184, 150, 0.45) !important;
}

.wrapper.home-one.ek-home-motion .ek-signature-strip__item:hover {
  background: rgba(255, 255, 255, 0.025);
}

.testimonial-area.overlay:before {
  background-color: rgba(10, 11, 14, 0.72) !important;
}

.color-lightgrey .testi-text p,
.color-lightgrey .name-degi p {
  color: rgba(244, 241, 235, 0.75) !important;
  letter-spacing: 0.03em !important;
  line-height: 1.75 !important;
}

/* ========== Index page (ek-index): #48612a hunter green — hooks + extra accents ========== */

.wrapper.home-one.ek-index .heading-title.heading-style:after {
  background: linear-gradient(
    90deg,
    #48612a,
    rgba(72, 97, 42, 0.35)
  ) !important;
}

.wrapper.home-one.ek-index .title-tab-product-category li a.active {
  color: #a8c97f !important;
}

.wrapper.home-one.ek-index .prodcut-name > a:hover {
  color: #b8d48f !important;
}

.wrapper.home-one.ek-index .new-price,
.wrapper.home-one.ek-index .product-ctg-content .font-bold {
  color: #c4d9a8 !important;
}

.wrapper.home-one.ek-index .banner-list ul li:before {
  background: #48612a !important;
}

.wrapper.home-one.ek-index .blog-title h5 a:hover {
  color: #b8d48f !important;
}

.wrapper.home-one.ek-index .blog-area .like-comments-date li a:hover {
  color: #a8c97f !important;
}

.wrapper.home-one.ek-index .blog-area .read-more {
  color: #b8d48f !important;
}

.wrapper.home-one.ek-index .blog-area .read-more:hover {
  color: #d4e8b8 !important;
}

.wrapper.home-one.ek-index .blog-area .like-comments-date li.blog-date a {
  color: #a8c97f !important;
}

.wrapper.home-one.ek-index .product-label .new,
.wrapper.home-one.ek-index .product-label.red .new {
  background: #48612a !important;
}

.wrapper.home-one.ek-index .single-brand {
  border-color: rgba(72, 97, 42, 0.35) !important;
  box-shadow: 0 0 0 1px rgba(72, 97, 42, 0.12) inset;
}

.wrapper.home-one.ek-index .product-item .single-product:hover {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(72, 97, 42, 0.35) !important;
}

.wrapper.home-one.ek-index .about-dispensary-frame {
  border-color: rgba(72, 97, 42, 0.28) !important;
}

.wrapper.home-one.ek-index .about-dispensary-rule {
  background: linear-gradient(
    90deg,
    #48612a 0%,
    rgba(72, 97, 42, 0.55) 55%,
    transparent 100%
  ) !important;
}

/* skin-default #4f682e → hunter / tints (site header) */
.wrapper.ek-unified-header
  .header-area
  .main-menu
  > li:not(.ek-nav-cta):hover
  > a,
.wrapper.ek-unified-header
  .header-area
  .main-menu
  > li:not(.ek-nav-cta)
  > a.active,
.wrapper.ek-unified-header .header-area .main-menu li ul > li:hover > a,
.wrapper.ek-unified-header .header-area .main-menu li ul li a:hover {
  color: #a8c97f !important;
}

.wrapper.ek-unified-header .header-area .cart-icon > a:hover,
.wrapper.ek-unified-header .header-area .login-register-area a:hover,
.wrapper.ek-unified-header .header-area .src-btn:hover {
  color: #a8c97f !important;
}

.wrapper.ek-unified-header .header-area .social-icon ul li a:hover,
.wrapper.home-one.ek-index .product-icon ul li a:hover {
  background: #48612a none repeat scroll 0 0 !important;
  border-color: #48612a !important;
  color: #fff !important;
}

.wrapper.home-one.ek-index .carsoule-btn .slick-arrow:hover {
  border-color: #48612a !important;
  color: #48612a !important;
}

.wrapper.home-one.ek-index .heading-style::after,
.wrapper.home-one.ek-index .heading-style-2 .active::after {
  background: #48612a none repeat scroll 0 0 !important;
}

.wrapper.home-one.ek-index #scrollUp:hover {
  border-color: #48612a !important;
  color: #48612a !important;
}

.wrapper.home-one.ek-index .footer-area .informatoin a:hover,
.wrapper.home-one.ek-index .footer-area .contact-text a:hover {
  color: #a8c97f !important;
}

.wrapper.home-one.ek-index .newslatter .input-box a:hover {
  background: #48612a !important;
  border-color: #48612a !important;
}

.wrapper.home-one.ek-index .ek-upstate-delivery__list li::before {
  background: #48612a !important;
}

.wrapper.home-one.ek-home-motion.ek-index
  .delivery-service-area
  .single-service:hover {
  border-color: rgba(72, 97, 42, 0.45) !important;
}

.wrapper.home-one.ek-home-motion.ek-index
  .ek-signature-strip__item:hover
  .ek-signature-strip__icon {
  color: #c4d9a8;
  filter: drop-shadow(0 4px 32px rgba(72, 97, 42, 0.35));
}

.wrapper.home-one.ek-index
  a.btn-def:hover:not(.btn-white):not(.btn2):not(.btn-def--on-dark) {
  background: #48612a none repeat scroll 0 0 !important;
  border-color: #48612a !important;
  color: #fff !important;
}

.wrapper.home-one.ek-index .testimonial-area .name-degi:before {
  background: #48612a none repeat scroll 0 0 !important;
}

/* ========== Premium couture accents (home index) ==========
   Hairlines, inset frames, soft depth — reinforces high-end retail tone. */

.wrapper.home-one.ek-index {
  position: relative;
}

.wrapper.ek-unified-header #sticky-header.header-middle-area,
.wrapper.ek-unified-header .header-middle-area {
  box-shadow:
    0 1px 0 rgba(201, 184, 150, 0.28),
    0 12px 40px rgba(0, 0, 0, 0.18);
}

.wrapper.ek-unified-header
  #sticky-header.header-middle-area
  .full-width-mega-dropdown
  > .container {
  transition:
    padding-top 0.38s ease,
    padding-bottom 0.38s ease;
}

.wrapper.ek-unified-header
  #sticky-header:not(.sticky).header-middle-area
  .full-width-mega-dropdown
  > .container {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.wrapper.ek-unified-header
  #sticky-header.sticky.header-middle-area
  .full-width-mega-dropdown
  > .container {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .wrapper.ek-unified-header
    #sticky-header
    .full-width-mega-dropdown
    > .container
    > .row.ek-index-navbar-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
  }

  /* Logo | flex nav | compact tools cluster — min-w-0 only on the flex-growing nav column */
  .wrapper.ek-unified-header
    #sticky-header
    .ek-index-navbar-row
    > .col.min-w-0 {
    min-width: 0;
  }

  .wrapper.ek-unified-header #sticky-header .ek-navbar-brand {
    flex-shrink: 0;
  }

  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools {
    margin-left: auto;
  }

  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools__cluster {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools__cluster > * {
    flex: 0 0 auto;
  }

  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools .ek-navbar-social,
  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools .ek-navbar-login {
    width: auto;
    min-width: 0;
  }

  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools .ek-navbar-social {
    justify-content: flex-start;
  }

  .wrapper.ek-unified-header
    #sticky-header
    .ek-navbar-tools
    .ek-navbar-login
    .login-register-area {
    width: auto;
  }

  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools__search {
    min-width: 0;
  }

  .wrapper.ek-unified-header
    #sticky-header
    .ek-navbar-tools__search
    .search-box {
    width: 100%;
    max-width: 100%;
  }

  /* Theme .social-icon { display:block; overflow:hidden } clips icons in tight clusters */
  .wrapper.ek-unified-header #sticky-header .ek-navbar-social .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    width: 100%;
  }

  .wrapper.ek-unified-header
    #sticky-header
    .ek-navbar-tools
    .ek-navbar-social
    .social-icon {
    justify-content: flex-start;
    width: auto;
  }

  /* Smooth resize: main.js toggles .sticky on #sticky-header when scrollTop > 1 */
  .wrapper.ek-unified-header #sticky-header .logo img,
  .wrapper.ek-unified-header #sticky-header .main-menu > li > a,
  .wrapper.ek-unified-header #sticky-header .main-menu > li.ek-nav-cta > a,
  .wrapper.ek-unified-header
    #sticky-header
    .ek-navbar-login
    .login-register-area
    a,
  .wrapper.ek-unified-header #sticky-header .search-box .input-box input,
  .wrapper.ek-unified-header
    #sticky-header
    .search-box
    .input-box
    .single-input,
  .wrapper.ek-unified-header #sticky-header .search-box .src-btn,
  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools__cluster,
  .wrapper.ek-unified-header #sticky-header .ek-navbar-tools__search {
    transition:
      max-height 0.38s ease,
      max-width 0.38s ease,
      font-size 0.38s ease,
      letter-spacing 0.38s ease,
      padding 0.38s ease,
      height 0.38s ease,
      line-height 0.38s ease,
      gap 0.38s ease;
  }

  /* ----- Page top (scroll ≤ 1px): slightly enlarged bar ----- */
  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .ek-navbar-tools__cluster {
    gap: 0.45rem 0.65rem;
  }

  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .ek-navbar-tools__search {
    max-width: 7.75rem;
  }

  .wrapper.ek-unified-header #sticky-header:not(.sticky) .logo img {
    max-height: 64px;
    max-width: min(200px, 38vw);
  }

  .wrapper.ek-unified-header #sticky-header:not(.sticky) .main-menu > li > a {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
  }

  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .main-menu
    > li.ek-nav-cta
    > a {
    padding: 6px 0.72em !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
  }

  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .ek-navbar-login
    .login-register-area
    a {
    font-size: 11.5px !important;
    letter-spacing: 0.11em !important;
  }

  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .ek-navbar-social
    .social-icon
    li {
    margin-right: 0.18rem;
  }

  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .search-box
    .input-box
    input,
  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .search-box
    .input-box
    .single-input {
    font-size: 12.5px !important;
    padding-left: 10px !important;
    padding-right: 38px !important;
    height: 38px !important;
  }

  .wrapper.ek-unified-header #sticky-header:not(.sticky) .search-box .src-btn {
    height: 38px !important;
    line-height: 38px !important;
  }

  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .main-menu
    > li
    > a::after {
    left: 4px;
    right: 4px;
    bottom: 3px;
  }

  /* ----- Scrolled: compact fixed bar ----- */
  .wrapper.ek-unified-header #sticky-header.sticky .ek-navbar-tools__cluster {
    gap: 0.35rem 0.5rem;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .ek-navbar-tools__search {
    max-width: 6.25rem;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .logo img {
    max-height: 52px;
    max-width: min(176px, 34vw);
  }

  .wrapper.ek-unified-header #sticky-header.sticky .main-menu > li > a {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    padding-left: 0.28rem !important;
    padding-right: 0.28rem !important;
    font-size: 10.5px !important;
    letter-spacing: 0.1em !important;
  }

  .wrapper.ek-unified-header
    #sticky-header.sticky
    .main-menu
    > li.ek-nav-cta
    > a {
    padding: 4px 0.55em !important;
    font-size: 9.5px !important;
    letter-spacing: 0.09em !important;
  }

  .wrapper.ek-unified-header
    #sticky-header.sticky
    .ek-navbar-login
    .login-register-area
    a {
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
  }

  .wrapper.ek-unified-header
    #sticky-header.sticky
    .ek-navbar-social
    .social-icon
    li {
    margin-right: 0.12rem;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .search-box .input-box input,
  .wrapper.ek-unified-header
    #sticky-header.sticky
    .search-box
    .input-box
    .single-input {
    font-size: 11px !important;
    padding-left: 8px !important;
    padding-right: 34px !important;
    height: 32px !important;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .search-box .src-btn {
    height: 32px !important;
    line-height: 32px !important;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .main-menu > li > a::after {
    left: 3px;
    right: 3px;
    bottom: 1px;
  }
}

@media (min-width: 992px) {
  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .ek-navbar-tools__cluster {
    gap: 0.5rem 0.85rem;
  }

  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .ek-navbar-tools__search {
    max-width: 10.5rem;
  }

  .wrapper.ek-unified-header #sticky-header:not(.sticky) .logo img {
    max-height: 72px;
    max-width: min(220px, 34vw);
  }

  .wrapper.ek-unified-header #sticky-header:not(.sticky) .main-menu > li > a {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
    padding-left: 0.42rem !important;
    padding-right: 0.42rem !important;
    font-size: 12.5px !important;
    letter-spacing: 0.12em !important;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .ek-navbar-tools__cluster {
    gap: 0.4rem 0.65rem;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .ek-navbar-tools__search {
    max-width: 8.75rem;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .logo img {
    max-height: 56px;
    max-width: min(190px, 32vw);
  }

  .wrapper.ek-unified-header #sticky-header.sticky .main-menu > li > a {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 0.32rem !important;
    padding-right: 0.32rem !important;
    font-size: 11px !important;
    letter-spacing: 0.11em !important;
  }
}

@media (min-width: 1200px) {
  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .ek-navbar-tools__search {
    max-width: 13rem;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .ek-navbar-tools__search {
    max-width: 11rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .wrapper.ek-unified-header #sticky-header:not(.sticky) .main-menu > li > a {
    font-size: 11px !important;
    padding-left: 0.3rem !important;
    padding-right: 0.3rem !important;
    letter-spacing: 0.1em !important;
  }

  .wrapper.ek-unified-header
    #sticky-header:not(.sticky)
    .ek-navbar-tools__search {
    max-width: 6.75rem;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .main-menu > li > a {
    font-size: 9.5px !important;
    padding-left: 0.18rem !important;
    padding-right: 0.18rem !important;
    letter-spacing: 0.08em !important;
  }

  .wrapper.ek-unified-header #sticky-header.sticky .ek-navbar-tools__search {
    max-width: 5.5rem;
  }
}

.wrapper.ek-unified-header #sticky-header.sticky {
  box-shadow:
    0 1px 0 var(--ek-champagne-soft),
    0 16px 48px rgba(0, 0, 0, 0.22);
}

/* Section crowns: champagne hairline above major bands */
.wrapper.home-one.ek-index .new-arrival-area,
.wrapper.home-one.ek-index .banner-area,
.wrapper.home-one.ek-index .discunt-featured-onsale-area,
.wrapper.home-one.ek-index .arrival-ratted-sale-area,
.wrapper.home-one.ek-index .brand-area,
.wrapper.home-one.ek-index .blog-area {
  position: relative;
}

.wrapper.home-one.ek-index .new-arrival-area::before,
.wrapper.home-one.ek-index .banner-area::before,
.wrapper.home-one.ek-index .discunt-featured-onsale-area::before,
.wrapper.home-one.ek-index .arrival-ratted-sale-area::before,
.wrapper.home-one.ek-index .brand-area::before,
.wrapper.home-one.ek-index .blog-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--ek-hairline);
  pointer-events: none;
  opacity: 0.85;
}

/* Featured collab / hero band: vignette + hairline frame (::before paints under .container) */
.wrapper.home-one.ek-index .branding-section-area {
  position: relative;
  box-shadow: inset 0 0 120px rgba(10, 11, 14, 0.35);
}

.wrapper.home-one.ek-index .branding-section-area::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201, 184, 150, 0.12);
}

.wrapper.home-one.ek-index .branding-section-area > .container {
  position: relative;
  z-index: 1;
}

/* Featured collab: keep photo aspect ratio (theme uses width:100% on slick .brand-img img) */
.wrapper.home-one.ek-index .branding-section-area .slick-slide .brand-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(70vh, 560px);
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* Twin promo tiles: couture inset stroke + lift (stacks with ek-home-motion hover) */
.wrapper.home-one.ek-index.ek-home-motion .banner-area .single-banner.gray-bg {
  border-radius: 2px;
  box-shadow: var(--ek-card-elev) !important;
  transition:
    box-shadow 0.55s var(--ek-couture-ease),
    transform 0.55s var(--ek-couture-ease);
}

.wrapper.home-one.ek-index.ek-home-motion
  .banner-area
  .single-banner.gray-bg:hover {
  box-shadow:
    var(--ek-card-elev-hover),
    0 24px 52px rgba(0, 0, 0, 0.18) !important;
}

/* Product grid: fine inner highlight on cards */
.wrapper.home-one.ek-index .product-item .single-product {
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

/* New arrival block: eyebrow + title — white on strip (shadow keeps contrast on light BG) */
.wrapper.home-one.ek-index .new-arrival-area .heading-title .ek-jungle-welcome {
  font-family: "Montserrat", sans-serif !important;
  font-size: clamp(11px, 2vw, 13px) !important;
  font-weight: 600 !important;
  letter-spacing: 0.38em !important;
  color: #fff !important;
  margin: 0 0 12px !important;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(0, 0, 0, 0.25);
}

.wrapper.home-one.ek-index .new-arrival-area .heading-title.heading-style h5 {
  color: #fff !important;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(0, 0, 0, 0.25);
}

/* Section headings: micro letterpress + champagne hair */
.wrapper.home-one.ek-index .heading-title.heading-style h5 {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wrapper.home-one.ek-index .heading-title.heading-style::before {
  box-shadow: 0 0 12px rgba(201, 184, 150, 0.25);
}

/* Story blocks: left spine (desktop) — experience only; product uses centered card */
@media (min-width: 992px) {
  .wrapper.home-one.ek-index .ek-home-story--experience .ek-home-story__title {
    position: relative;
    padding-left: 1.25rem;
  }

  .wrapper.home-one.ek-index
    .ek-home-story--experience
    .ek-home-story__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 2px;
    border-radius: 1px;
    background: linear-gradient(
      180deg,
      rgba(250, 247, 242, 0.85) 0%,
      rgba(201, 184, 150, 0.65) 52%,
      rgba(90, 115, 64, 0.5) 100%
    );
    opacity: 0.95;
  }
}

/* Testimonials: refined quote frame */
.wrapper.home-one.ek-index .testimonial-area.overlay {
  position: relative;
}

@media (min-width: 768px) {
  .wrapper.home-one.ek-index .testimonial-area.overlay::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 28%;
    transform: translate(-50%, -50%);
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    pointer-events: none;
    border: 1px solid rgba(201, 184, 150, 0.08);
    border-radius: 50%;
    opacity: 0.6;
  }
}

.wrapper.home-one.ek-index .single-testimonial .testimonial-content {
  position: relative;
}

.wrapper.home-one.ek-index .single-testimonial .testi-text p {
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Rewards CTA: full container width, two columns (copy + signup) */
.wrapper.home-one.ek-index .ek-rewards-cta {
  width: 100%;
  max-width: 100%;
}

.wrapper.home-one.ek-index .ek-rewards-cta .testi-text p {
  font-style: normal;
}

.wrapper.home-one.ek-index .ek-rewards-cta__copy {
  display: flex;
  gap: clamp(20px, 3.5vw, 40px);
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}

.wrapper.home-one.ek-index .ek-rewards-cta__crown {
  flex: 0 0 auto;
}

.wrapper.home-one.ek-index .ek-rewards-cta__crown .ek-icon-crown {
  display: block;
  width: min(120px, 22vw);
  height: auto;
}

.wrapper.home-one.ek-index .ek-rewards-cta__body {
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
  padding-left: 8px;
}

@media (min-width: 576px) {
  .wrapper.home-one.ek-index .ek-rewards-cta__body {
    padding-left: 16px;
  }
}

.wrapper.home-one.ek-index .ek-rewards-cta__form-panel {
  border: 1px solid rgba(201, 184, 150, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.035);
  padding: 22px 22px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wrapper.home-one.ek-index .ek-rewards-cta__form-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(232, 233, 235, 0.72);
  margin: 0 0 14px;
}

.wrapper.home-one.ek-index .ek-rewards-signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__field {
  margin: 0;
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__input {
  display: block;
  width: 100%;
  margin: 0;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244, 241, 235, 0.92);
  background: rgba(8, 10, 13, 0.45);
  border: 1px solid rgba(201, 184, 150, 0.28);
  border-radius: 1px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__input::placeholder {
  color: rgba(232, 233, 235, 0.42);
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__input:focus {
  outline: none;
  border-color: rgba(201, 184, 150, 0.48);
  background: rgba(8, 10, 13, 0.62);
  box-shadow: 0 0 0 3px rgba(201, 184, 150, 0.12);
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__submit {
  width: 100%;
  margin-top: 4px;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #a8a59e;
  color: var(--ek-primary-dark);
  background: linear-gradient(
    155deg,
    var(--ek-platinum-1) 0%,
    var(--ek-platinum-2) 45%,
    var(--ek-platinum-3) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 6px 22px rgba(0, 0, 0, 0.25);
  transition:
    background 0.35s var(--ek-couture-ease),
    border-color 0.35s var(--ek-couture-ease),
    box-shadow 0.35s var(--ek-couture-ease);
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__submit:hover {
  border-color: #9a958c;
  background: linear-gradient(
    155deg,
    var(--ek-platinum-2) 0%,
    var(--ek-platinum-3) 55%,
    #bfb6a8 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 26px rgba(0, 0, 0, 0.3);
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__field--consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__checkbox {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: rgba(201, 184, 150, 0.85);
  cursor: pointer;
}

.wrapper.home-one.ek-index .ek-rewards-signup-form__consent-label {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(232, 233, 235, 0.62);
  cursor: pointer;
}

@media (max-width: 575px) {
  .wrapper.home-one.ek-index .ek-rewards-cta__copy {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* About strip: corner tick marks */
.wrapper.home-one.ek-index .about-dispensary-content {
  position: relative;
}

@media (min-width: 768px) {
  .wrapper.home-one.ek-index .about-dispensary-content::before,
  .wrapper.home-one.ek-index .about-dispensary-content::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(201, 184, 150, 0.35);
    border-style: solid;
    pointer-events: none;
    opacity: 0.85;
  }

  .wrapper.home-one.ek-index .about-dispensary-content::before {
    top: -4px;
    left: -4px;
    border-width: 1px 0 0 1px;
  }

  .wrapper.home-one.ek-index .about-dispensary-content::after {
    bottom: -4px;
    right: -4px;
    border-width: 0 1px 1px 0;
  }
}

/* Editorial selection color */
.wrapper.home-one.ek-index ::selection {
  background: rgba(72, 97, 42, 0.35);
  color: var(--ek-platinum-1);
}

.wrapper.home-one.ek-index .ek-footer-logo a {
  display: inline-block;
  transition:
    filter 0.45s var(--ek-couture-ease),
    transform 0.45s var(--ek-couture-ease);
}

.wrapper.home-one.ek-index .ek-footer-logo a:hover {
  filter: drop-shadow(0 4px 20px rgba(201, 184, 150, 0.35));
  transform: translateY(-2px);
}

/* Carousel controls: jewel-like ring */
.wrapper.home-one.ek-index .carsoule-btn .slick-arrow {
  box-shadow:
    0 0 0 1px rgba(201, 184, 150, 0.15),
    0 8px 24px rgba(14, 16, 20, 0.08);
  transition:
    box-shadow 0.4s var(--ek-couture-ease),
    border-color 0.4s var(--ek-couture-ease),
    color 0.35s ease;
}

/* ========== Slick — premium pagination dots (site-wide) ========== */

.slick-dots li {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0;
  vertical-align: middle;
}

.slick-dots li button {
  position: relative;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  font-size: 0 !important;
  line-height: 0 !important;
  cursor: pointer;
  transition: transform 0.35s var(--ek-couture-ease);
}

.slick-dots li button::before {
  font-family: inherit !important;
  content: "" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(244, 241, 235, 0.14);
  border: 1.5px solid rgba(201, 184, 150, 0.55);
  box-shadow:
    0 0 0 1px rgba(10, 11, 14, 0.35) inset,
    0 2px 10px rgba(0, 0, 0, 0.22);
  opacity: 1 !important;
  color: transparent !important;
  line-height: 0 !important;
  text-align: center;
  transition:
    width 0.45s var(--ek-couture-ease),
    height 0.45s var(--ek-couture-ease),
    border-radius 0.45s var(--ek-couture-ease),
    background 0.45s var(--ek-couture-ease),
    border-color 0.45s var(--ek-couture-ease),
    box-shadow 0.45s var(--ek-couture-ease);
}

.slick-dots li button:hover::before,
.slick-dots li button:focus-visible::before {
  background: rgba(244, 241, 235, 0.28);
  border-color: rgba(232, 225, 210, 0.88);
  box-shadow:
    0 0 0 1px rgba(10, 11, 14, 0.25) inset,
    0 0 22px rgba(201, 184, 150, 0.42);
}

.slick-dots li button:focus-visible {
  outline: 2px solid rgba(201, 184, 150, 0.75);
  outline-offset: 2px;
}

.slick-dots li.slick-active button::before {
  width: 36px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(
    105deg,
    rgba(201, 184, 150, 0.95) 0%,
    #f4f1eb 42%,
    rgba(201, 184, 150, 0.92) 100%
  );
  border-color: rgba(255, 252, 246, 0.65);
  box-shadow:
    0 0 0 1px rgba(72, 97, 42, 0.28) inset,
    0 2px 14px rgba(201, 184, 150, 0.55),
    0 0 28px rgba(201, 184, 150, 0.28);
}

.slick-dots li.slick-active button {
  transform: scale(1.02);
}

/* Strip legacy square “pips” from theme carousels */
.carosule-pagi .slick-dots li {
  background: transparent !important;
  border: none !important;
  opacity: 1 !important;
}

.carosule-pagi .slick-dots li button {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  margin: 0 !important;
}

.carosule-pagi.cp-line .slick-dots li.slick-active::after,
.carosule-pagi.pagi-02 .slick-dots li.slick-active::after,
.carosule-pagi.pagi-02 .slick-dots li.slick-active:after {
  display: none !important;
  content: none !important;
}

/* Default: horizontal ribbon under the slider */
.slick-dotted.slick-slider .slick-dots {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  left: 50% !important;
  right: auto !important;
  bottom: clamp(-44px, -4vw, -28px) !important;
  top: auto !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  max-width: calc(100% - 24px);
  padding: 10px 16px !important;
  margin: 0 auto !important;
  list-style: none;
  pointer-events: none;
}

.slick-dotted.slick-slider .slick-dots li {
  pointer-events: auto;
}

.slick-dotted.slick-slider {
  margin-bottom: clamp(36px, 5vw, 52px) !important;
}

.slick-dotted.carosule-pagi.pagi-02.slick-slider {
  margin-bottom: 0 !important;
}

/* Featured collab: vertical rail on the left */
.slick-dotted.carosule-pagi.pagi-02 .slick-dots {
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  left: clamp(10px, 2.5vw, 36px) !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  max-width: none;
  padding: 14px 8px !important;
  margin: 0 !important;
}

/* Testimonial band: sit clear of copy */
.slick-dotted.carosule-pagi.pagi-03 .slick-dots,
.pagi-03 .slick-dots {
  bottom: clamp(-56px, -6vw, -44px) !important;
}

@media (max-width: 767px) {
  .slick-dotted.carosule-pagi.pagi-02 .slick-dots {
    left: 8px !important;
    padding: 10px 6px !important;
  }

  .slick-dotted.slick-slider .slick-dots {
    bottom: -36px !important;
    padding: 8px 10px !important;
  }
}

/* ==========================================================================
   About page — editorial layout
   Distinct from the index's ek-home-story / ek-signature-strip patterns.
   Three custom sections:
     1. .ek-about-letter      — framed founders' note + pinned portrait
     2. .ek-about-codex       — numbered principles ledger on noir band
     3. .ek-about-manifesto   — centered pull-quote with oversized mark
   ========================================================================== */

/* ---------- 1. Founders' letter + portrait ---------- */

.ek-about-letter {
  position: relative;
  padding: var(--ek-section-y) 0;
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(201, 184, 150, 0.1) 0%,
      transparent 38%
    ),
    linear-gradient(180deg, #fbf8f2 0%, #f3ede2 100%);
  overflow: hidden;
}

.ek-about-letter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(28, 36, 51, 0.025) 0 1px,
    transparent 1px 6px
  );
  pointer-events: none;
}

.ek-about-letter > .container {
  position: relative;
  z-index: 1;
}

.ek-about-letter__card {
  position: relative;
  height: 100%;
  background: #fffefb;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 60px);
  box-shadow:
    0 30px 60px -30px rgba(14, 16, 20, 0.18),
    0 0 0 1px rgba(201, 184, 150, 0.35) inset;
}

.ek-about-letter__corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--ek-champagne);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}
.ek-about-letter__corner--tl {
  top: 12px;
  left: 12px;
  border-top-width: 1px;
  border-left-width: 1px;
}
.ek-about-letter__corner--tr {
  top: 12px;
  right: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
}
.ek-about-letter__corner--bl {
  bottom: 12px;
  left: 12px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}
.ek-about-letter__corner--br {
  bottom: 12px;
  right: 12px;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.ek-about-letter__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--ek-accent);
  margin: 0 0 14px;
}

.ek-about-letter__title {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.18;
  letter-spacing: 0.005em;
  color: var(--ek-primary);
  margin: 0 0 18px;
}

.ek-about-letter__rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--ek-champagne) 0%,
    var(--ek-accent) 60%,
    transparent 100%
  );
  margin-bottom: 22px;
}

.ek-about-letter__body {
  font-family: "Montserrat", sans-serif;
  color: rgba(28, 36, 51, 0.84);
  font-size: 15px;
  line-height: 1.78;
}

.ek-about-letter__body p + p {
  margin-top: 14px;
}

.ek-about-letter__lede {
  font-size: 16px;
  color: var(--ek-primary);
}

.ek-about-letter__dropcap {
  float: left;
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 64px;
  line-height: 0.85;
  font-weight: 700;
  color: var(--ek-accent);
  padding: 6px 12px 0 0;
  margin-top: 4px;
}

.ek-about-letter__signature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed rgba(201, 184, 150, 0.55);
}

.ek-about-letter__signoff {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ek-primary);
}

.ek-about-letter__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ek-accent);
  border-bottom: 1px solid transparent;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    letter-spacing 0.3s ease;
}

.ek-about-letter__cta:hover {
  color: var(--ek-primary);
  border-bottom-color: var(--ek-accent);
  letter-spacing: 0.28em;
}

/* Portrait — pinned card, slight tilt */
.ek-about-portrait {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 8px auto 0;
  padding: 14px 14px 0;
  background: #fffefb;
  box-shadow:
    0 28px 50px -22px rgba(14, 16, 20, 0.4),
    0 0 0 1px rgba(201, 184, 150, 0.3) inset;
  transform: rotate(1.2deg);
  transition:
    transform 0.5s var(--ek-couture-ease),
    box-shadow 0.5s var(--ek-couture-ease);
}

.ek-home-motion .ek-about-portrait:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 36px 60px -22px rgba(14, 16, 20, 0.5),
    0 0 0 1px rgba(201, 184, 150, 0.45) inset;
}

.ek-about-portrait__pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #f3e3b9 0%,
    var(--ek-champagne) 50%,
    #8a7a55 100%
  );
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.ek-about-portrait__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ek-noir);
}

.ek-about-portrait__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 28%;
  transition: transform 0.7s var(--ek-couture-ease);
}

.ek-home-motion .ek-about-portrait:hover .ek-about-portrait__img {
  transform: scale(1.04);
}

.ek-about-portrait__caption {
  display: block;
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(28, 36, 51, 0.62);
  padding: 14px 8px 16px;
}

@media (max-width: 991px) {
  .ek-about-portrait {
    transform: rotate(0deg);
    margin-top: 32px;
  }
}

/* ---------- 2. The Codex — numbered ledger ---------- */

.ek-about-codex {
  position: relative;
  padding: var(--ek-section-y) 0;
  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(201, 184, 150, 0.08) 0%,
      transparent 45%
    ),
    linear-gradient(180deg, #0d1119 0%, #161c28 60%, #0a0d13 100%);
  color: var(--ek-platinum-1);
  overflow: hidden;
}

.ek-about-codex::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    rgba(201, 184, 150, 0.04) 1px,
    transparent 1px
  );
  background-size: 100% 32px;
  opacity: 0.5;
  pointer-events: none;
}

.ek-about-codex > .container {
  position: relative;
  z-index: 1;
}

.ek-about-codex__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--ek-champagne);
  margin: 0 0 14px;
}

.ek-about-codex__title {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: 0.04em;
  color: var(--ek-platinum-1);
  margin: 0 0 18px;
  text-transform: uppercase;
}

.ek-about-codex__rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--ek-champagne) 50%,
    transparent 100%
  );
  margin: 0 auto 56px;
}

.ek-about-codex__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  border-top: 1px solid rgba(201, 184, 150, 0.2);
}

.ek-about-codex__item {
  display: grid;
  grid-template-columns: minmax(3.25rem, 5.5rem) 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: 32px 4px;
  border-bottom: 1px solid rgba(201, 184, 150, 0.2);
  position: relative;
  transition:
    background 0.4s ease,
    padding-left 0.4s ease;
}

.ek-home-motion .ek-about-codex__item:hover {
  background: linear-gradient(
    90deg,
    rgba(201, 184, 150, 0.05),
    transparent 80%
  );
  padding-left: 12px;
}

.ek-about-codex__num {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ek-champagne);
  -webkit-text-stroke: 0;
}

.ek-about-codex__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ek-platinum-1);
  margin: 0 0 10px;
}

.ek-about-codex__desc {
  font-family: "Montserrat", sans-serif;
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(244, 241, 235, 0.72);
  margin: 0;
  max-width: 560px;
}

@media (max-width: 575px) {
  .ek-about-codex__item {
    grid-template-columns: minmax(2.75rem, 3.25rem) 1fr;
    gap: 14px;
    padding: 26px 4px;
    align-items: center;
  }
  .ek-about-codex__num {
    font-size: 34px;
  }
}

/* ---------- 3. The Mission — manifesto pull quote ---------- */

.ek-about-manifesto {
  position: relative;
  padding: calc(var(--ek-section-y) + 10px) 0;
  background: radial-gradient(
    ellipse at center,
    #1a2231 0%,
    #101521 60%,
    #080a10 100%
  );
  color: var(--ek-platinum-1);
  overflow: hidden;
  border-top: 1px solid rgba(201, 184, 150, 0.18);
  border-bottom: 1px solid rgba(201, 184, 150, 0.18);
}

.ek-about-manifesto__mark {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(220px, 32vw, 460px);
  line-height: 1;
  color: rgba(201, 184, 150, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.ek-about-manifesto > .container {
  position: relative;
  z-index: 1;
}

.ek-about-manifesto__panel {
  padding: 0 8px;
}

.ek-about-manifesto__eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--ek-champagne);
  margin: 0 0 18px;
}

.ek-about-manifesto__title {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  color: var(--ek-platinum-1);
  margin: 0 0 22px;
  letter-spacing: 0.005em;
}

.ek-about-manifesto__body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: rgba(244, 241, 235, 0.8);
  max-width: 720px;
  margin: 0 auto 14px;
}

.ek-about-manifesto__lead {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ek-champagne);
  margin: 0 auto 26px;
}

.ek-about-manifesto__rule {
  width: 90px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--ek-champagne) 50%,
    transparent 100%
  );
  margin: 0 auto 18px;
}

.ek-about-manifesto__tag {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: rgba(201, 184, 150, 0.85);
  margin: 0;
}

/* About: in-page FAQ anchor (contact page links to about-us.html#faq) */
.wrapper.about-us #faq.ek-about-faq {
  scroll-margin-top: 100px;
  background: linear-gradient(
    168deg,
    #fdfbf8 0%,
    var(--ek-platinum-1) 42%,
    #f4efe6 100%
  );
  border-top: 1px solid rgba(201, 184, 150, 0.35);
  border-bottom: 1px solid rgba(28, 36, 51, 0.06);
  padding-top: clamp(56px, 8vw, 88px);
  padding-bottom: clamp(56px, 8vw, 88px);
}

.wrapper.about-us #faq.ek-about-faq::before {
  content: "";
  display: block;
  width: min(200px, 46vw);
  height: 1px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 184, 150, 0.65) 22%,
    rgba(244, 241, 235, 0.5) 50%,
    rgba(201, 184, 150, 0.65) 78%,
    transparent 100%
  );
}

.wrapper.about-us #faq.ek-about-faq .frequently-desc {
  margin-bottom: clamp(28px, 4vw, 44px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wrapper.about-us #faq.ek-about-faq .frequently-desc h3 {
  font-family:
    "Cormorant Garamond", "Book Antiqua", "Palatino Linotype", Palatino,
    Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ek-primary);
  line-height: 1.28;
  margin: 0 0 14px;
}

.wrapper.about-us #faq.ek-about-faq .frequently-desc p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(28, 36, 51, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion .card {
  border: 1px solid rgba(201, 184, 150, 0.42);
  border-radius: 2px;
  margin-bottom: 11px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.92);
  box-shadow:
    0 16px 42px rgba(14, 16, 20, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
  transition:
    border-color 0.35s var(--ek-couture-ease),
    box-shadow 0.35s var(--ek-couture-ease);
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion .card:hover {
  border-color: rgba(90, 115, 64, 0.38);
  box-shadow:
    0 22px 52px rgba(14, 16, 20, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset;
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion .card.actives {
  border-color: rgba(90, 115, 64, 0.5);
  box-shadow:
    0 20px 50px rgba(14, 16, 20, 0.08),
    0 0 0 1px rgba(201, 184, 150, 0.22) inset;
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion .card-header {
  padding: 0;
  margin: 0;
  background: linear-gradient(
    180deg,
    rgba(253, 251, 248, 0.98) 0%,
    rgba(247, 243, 236, 0.96) 100%
  );
  border: 0;
  border-bottom: 1px solid transparent;
}

.wrapper.about-us
  #faq.ek-about-faq
  .frequently-accordion
  .card.actives
  .card-header {
  border-bottom-color: rgba(201, 184, 150, 0.35);
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion .card-header h5 {
  font-family:
    "Cormorant Garamond", "Book Antiqua", "Palatino Linotype", Palatino,
    Georgia, serif;
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion .card-header a {
  position: relative;
  display: block;
  padding: 18px 52px 18px 26px;
  cursor: pointer;
  font-family:
    "Cormorant Garamond", "Book Antiqua", "Palatino Linotype", Palatino,
    Georgia, serif !important;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ek-primary) !important;
  text-decoration: none;
  transition:
    color 0.28s ease,
    background 0.28s ease;
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion .card-header a:hover {
  color: var(--ek-accent) !important;
  background: rgba(255, 255, 255, 0.35);
}

/* Replace template +/- icons with a slim champagne chevron */
.wrapper.about-us
  #faq.ek-about-faq
  .frequently-accordion
  .card-header
  a::before,
.wrapper.about-us
  #faq.ek-about-faq
  .frequently-accordion
  .card-header
  a.collapsed::before {
  content: none !important;
  display: none !important;
}

.wrapper.about-us
  #faq.ek-about-faq
  .frequently-accordion
  .card-header
  a::after {
  content: "" !important;
  font-family: inherit !important;
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px;
  height: 9px;
  margin-top: -7px;
  border-right: 1.5px solid rgba(201, 184, 150, 0.95);
  border-bottom: 1.5px solid rgba(201, 184, 150, 0.95);
  transform: rotate(45deg);
  transform-origin: 70% 70%;
  transition:
    transform 0.4s var(--ek-couture-ease),
    border-color 0.28s ease;
  pointer-events: none;
}

.wrapper.about-us
  #faq.ek-about-faq
  .frequently-accordion
  .card-header
  a:not(.collapsed)::after {
  transform: rotate(-135deg);
  margin-top: -3px;
  border-color: rgba(90, 115, 64, 0.75);
}

.wrapper.about-us
  #faq.ek-about-faq
  .frequently-accordion
  .card-header
  a:hover::after {
  border-color: rgba(90, 115, 64, 0.85);
}

.wrapper.about-us #faq.ek-about-faq .frequently-accordion .card-body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: rgba(28, 36, 51, 0.88);
  padding: 20px 26px 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(250, 247, 242, 0.75) 100%
  );
  border-top: 1px solid rgba(201, 184, 150, 0.18);
}

/* responsive.css hides FAQ chevrons <480px — restore for About couture FAQ */
@media (max-width: 479px) {
  .wrapper.about-us
    #faq.ek-about-faq
    .frequently-accordion
    .card-header
    a::after {
    display: block !important;
  }
}

/* About: local delivery CTA — primary button + secondary text link cluster */
.wrapper.about-us .ek-upstate-delivery__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 28px;
}

.wrapper.about-us .ek-upstate-delivery__ctas .ek-upstate-delivery__cta {
  margin-top: 0;
}

.wrapper.about-us .ek-upstate-delivery__link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ek-champagne);
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(201, 184, 150, 0.45);
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    letter-spacing 0.3s ease;
}

.wrapper.about-us .ek-upstate-delivery__link:hover {
  color: var(--ek-platinum-1);
  border-bottom-color: var(--ek-platinum-1);
  letter-spacing: 0.26em;
}

/* ==========================================================================
   Ambient smoke fog — subtle animated canvas pinned to the bottom of the
   viewport. Injected and driven by js/ek-smoke-fog.js. Non-interactive.
   z-index sits above page content but below the sticky header (998) and any
   modals, so copy remains readable and overlays are unobscured.
   ========================================================================== */
.ek-smoke-fog {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 5;
  opacity: 0.75;
  mix-blend-mode: screen;
  will-change: opacity;
  transition: opacity 0.6s ease;
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 38%,
    rgba(0, 0, 0, 0.55) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.92) 38%,
    rgba(0, 0, 0, 0.55) 68%,
    rgba(0, 0, 0, 0) 100%
  );
}

@media (max-width: 767px) {
  .ek-smoke-fog {
    opacity: 0.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ek-smoke-fog {
    display: none !important;
  }
}

.home-one .product-area .slick-list,
.home-one .total-new-arrival .slick-list,
.home-one .new-arrival-slider-active .slick-list,
.home-one .carsoule-btn .slick-list {
  padding-top: clamp(48px, 6.5vw, 44px) !important;
}


/* ── Backdrop ───────────────────────────────── */
#modal_screen.agemodalscreen {
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  background-color: rgba(0, 0, 0, 0.75) !important;
}

/* ── Modal box ──────────────────────────────── */
#modal_content.agemodalcontent {
  background-color: #0e1014 !important;
  /*background-image: linear-gradient(135deg, rgba(20, 24, 32, 0.98) 0%, rgba(10, 11, 13, 0.99) 100%) !important;*/
  border: 1px solid rgba(168, 201, 127, 0.2) !important;
  border-radius: 12px !important;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset !important;
  /* Center it properly */
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  padding: 40px 48px !important;
  height: auto !important;
}

/* ── Logo — use mix-blend-mode to drop the white bg ── */
#ageverifylogo {
  text-align: center !important;
  margin-bottom: 20px !important;
}

#ageverifylogo img {
  max-width: 160px !important;
  height: auto !important;
  mix-blend-mode: luminosity !important;
  filter: invert(1) brightness(0.85) !important;
  opacity: 0.9 !important;
}

/* ── Heading ────────────────────────────────── */
#modal_content_wrapper h2,
#modal_regret_wrapper h2 {
  color: #faf7f2 !important;
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif !important;
  font-size: 22px !important;
  letter-spacing: 0.08em !important;
  text-align: center !important;
  margin-bottom: 24px !important;
}

/* ── "I hit the wrong button" sub-text ─────── */
#modal_regret_wrapper nav small {
  color: rgba(244, 241, 235, 0.5) !important;
  font-size: 13px !important;
}

/* ── Button list layout ─────────────────────── */
#modal_content_wrapper nav ul,
#modal_regret_wrapper nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  gap: 16px !important;
  justify-content: center !important;
}

#modal_content_wrapper nav li,
#modal_regret_wrapper nav li {
  flex: 1 !important;
}

/* ── Yes / I'm old enough button ────────────── */
.av_btn.av_go {
  display: block !important;
  width: 100% !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 1px solid #a8c97f !important;
  color: #a8c97f !important;
  border-radius: 6px !important;
  padding: 14px 20px !important;
  font-family: Montserrat, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: background-color 0.25s, color 0.25s !important;
}

.av_btn.av_go:hover {
  background-color: #a8c97f !important;
  color: #0a0b0d !important;
}

/* ── No button ──────────────────────────────── */
.av_btn.av_no {
  display: block !important;
  width: 100% !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  color: rgba(241, 241, 241, 0.55) !important;
  border-radius: 6px !important;
  padding: 14px 20px !important;
  font-family: Montserrat, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: border-color 0.25s, color 0.25s !important;
}

.av_btn.av_no:hover {
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #f1f1f1 !important;
}

/* ── Disclaimer paragraph ───────────────────── */
#modal_content_wrapper p,
#modal_regret_wrapper p {
  color: rgba(244, 241, 235, 0.45) !important;
  font-size: 13px !important;
  text-align: center !important;
  margin-top: 20px !important;
  line-height: 1.6 !important;
}

#modal_content.agemodalcontent nav .av_btn:hover {
    background-color: #0f121a !important;
    color: white !important;
}

#modal_content.agemodalcontent {
    z-index: 100000001;
}

#modal_screen.agemodalscreen {
    z-index: 100000000;
}

/* Thank-you page action buttons */
.ek-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 8px;
}

.ek-thankyou-actions .btn-def {
  min-width: 180px;
}

/* Contact form status banner */
.ek-contact-status {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid transparent;
}

.ek-contact-status--ok {
  background: rgba(158, 204, 59, 0.12);
  border-color: rgba(158, 204, 59, 0.55);
  color: #2f5a18;
}

.ek-contact-status--err {
  background: rgba(220, 53, 69, 0.10);
  border-color: rgba(220, 53, 69, 0.55);
  color: #8a1c28;
}