:root {
    --ink: #241d2a;
    --muted: #766d78;
    --cream: #fff8e8;
    --coral: #ff7d64;
    --yellow: #ffd33d;
    --line: rgba(36, 29, 42, .14)
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif
}

.default-page-template .default-page-content {
    padding-top: 50px;
    padding-bottom: 50px
}

a {
    color: inherit;
    text-decoration: none
}

button,
input {
    font: inherit
}

body .site-header.global-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
    min-height: 74px;
    height: auto;
    padding: 16px clamp(18px, 4vw, 54px);
    background: rgba(255, 248, 232, .9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px)
}

body .global-header .brand,
body .global-footer .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none
}

body .global-header .brand {
    color: var(--ink)
}

body .global-header .brand-mark,
body .global-footer .brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--ink);
    border-radius: 50%
}

body .global-header .site-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-weight: 750
}

body .global-header .site-nav a:hover,
body .global-header .site-nav a:focus-visible {
    color: var(--ink)
}

body .global-header .nav-menu-item {
    position: static
}

body .global-header .collection-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px
}

body .global-header .collection-trigger:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease
}

body .global-header .nav-menu-item:hover .collection-trigger,
body .global-header .nav-menu-item:focus-within .collection-trigger {
    color: var(--ink)
}

body .global-header .nav-menu-item:hover .collection-trigger:after,
body .global-header .nav-menu-item:focus-within .collection-trigger:after {
    transform: scaleX(1)
}

body .global-header .collection-mega,
body .global-header .concerns-mega {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% - 1px);
    z-index: 30;
    max-width: calc(100vw - 32px);
    visibility: hidden;
    opacity: 0;
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 253, 247, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(36, 29, 42, .12);
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease
}

body .global-header .collection-mega {
    width: 900px
}

body .global-header .concerns-mega {
    width: 750px
}

body .global-header .nav-menu-item:hover .collection-mega,
body .global-header .nav-menu-item:focus-within .collection-mega,
body .global-header .concerns-menu-item:hover .concerns-mega,
body .global-header .concerns-menu-item:focus-within .concerns-mega {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0)
}

body .global-header .mega-title {
    margin: 0 0 10px;
    font-size: .84rem;
    font-weight: 950;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase
}

body .global-header .collection-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px
}

body .global-header .concerns-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px
}

body .global-header .collection-menu-card,
body .mobile-menu .collection-menu-card {
    min-height: 156px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px
}

body .global-header .collection-card-head,
body .global-header .collection-product-link,
body .mobile-menu .collection-card-head,
body .mobile-menu .collection-product-link {
    display: flex;
    align-items: center;
    color: var(--ink)
}

body .global-header .collection-card-head,
body .mobile-menu .collection-card-head {
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase
}

body .global-header .collection-product-link,
body .mobile-menu .collection-product-link {
    gap: 12px;
    min-height: 34px;
    margin-top: 6px;
    font-size: .78rem;
    font-weight: 750;
    line-height: 1.25
}

body .global-header .collection-product-link:hover,
body .global-header .collection-product-link:focus-visible,
body .global-header .collection-card-head:hover,
body .global-header .collection-card-head:focus-visible {
    color: var(--coral)
}

body .global-header .menu-product-image,
body .mobile-menu .menu-product-image {
    flex: 0 0 auto;
    width: 28px;
    height: 42px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 5px 8px rgba(36, 29, 42, .12))
}

body .global-header .concern-card,
body .mobile-menu .concern-card {
    display: grid;
    place-items: center;
    gap: 14px;
    min-height: 150px;
    padding: 20px 12px;
    color: var(--ink);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: .86rem;
    font-weight: 950;
    text-align: center;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease
}

body .global-header .concern-card:hover,
body .global-header .concern-card:focus-visible {
    color: var(--ink);
    border-color: rgba(36, 29, 42, .18);
    box-shadow: 0 14px 34px rgba(36, 29, 42, .1);
    transform: translateY(-3px)
}

body .global-header .concern-frizz,
body .mobile-menu .concern-frizz {
    background: #faf5ee
}

body .global-header .concern-damage,
body .mobile-menu .concern-damage {
    background: #faf1f1
}

body .global-header .concern-dryness,
body .mobile-menu .concern-dryness {
    background: #f2f3ea
}

body .global-header .concern-dull,
body .mobile-menu .concern-dull {
    background: #fff4cf
}

body .global-header .concern-icon,
body .mobile-menu .concern-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px
}

body .global-header .concern-icon svg,
body .mobile-menu .concern-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round
}

body .global-header .concern-icon circle,
body .mobile-menu .concern-icon circle {
    fill: currentColor;
    stroke: none
}

body .global-header .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%
}

body .global-header .nav-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink)
}

body .global-header .header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 10px
}

body .global-header .round-link,
body .global-header .cart-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    color: #fff;
    background: var(--ink);
    border-radius: 999px;
    font-size: 20px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 7px 16px rgba(29, 24, 48, .17)
}

body .global-header .cart-pill {
    gap: 7px;
    min-width: 62px;
    padding: 0 14px
}

body .global-header .cart-pill span {
    font-size: 14px;
    font-weight: 900;
    line-height: 1
}

body .global-header .round-link:hover,
body .global-header .round-link:focus-visible,
body .global-header .cart-pill:hover,
body .global-header .cart-pill:focus-visible {
    color: #fff;
    transform: translateY(-1px)
}

body .mobile-menu {
    width: min(86vw, 360px) !important;
    color: var(--ink);
    background: var(--cream);
    border-right: 2px solid var(--ink)
}

body .mobile-menu .offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line)
}

body .mobile-menu .offcanvas-body {
    padding: 18px 20px 26px
}

body .mobile-menu .menu-close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--ink);
    border: 0;
    border-radius: 50%;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1
}

body .mobile-menu .offcanvas-nav {
    display: grid;
    gap: 10px
}

body .mobile-menu .offcanvas-nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase
}

body .mobile-menu .mobile-collection {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px
}

body .mobile-menu .mobile-collection summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 16px;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 900;
    list-style: none;
    text-transform: uppercase
}

body .mobile-menu .mobile-collection summary::-webkit-details-marker {
    display: none
}

body .mobile-menu .mobile-collection summary:after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 900
}

body .mobile-menu .mobile-collection[open] summary:after {
    content: "-"
}

body .mobile-menu .mobile-collection-panel {
    display: grid;
    gap: 12px;
    padding: 0 12px 12px
}

body .mobile-menu .mobile-collection-panel .collection-menu-card {
    min-height: auto;
    padding: 14px;
    background: var(--cream)
}

body .mobile-menu .mobile-collection-panel .collection-product-link {
    font-size: .84rem
}

body .mobile-menu .mobile-collection-panel .menu-product-image {
    width: 30px;
    height: 44px
}

body .mobile-menu .mobile-concerns-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0 12px 12px
}

body .mobile-menu .mobile-concerns-panel .concern-card {
    min-height: 118px;
    padding: 16px 8px;
    font-size: .82rem
}

body .mobile-menu .mobile-concerns-panel .concern-icon {
    width: 36px;
    height: 36px
}

body .mobile-menu .mobile-concerns-panel .concern-icon svg {
    width: 32px;
    height: 32px
}

body .mobile-menu .offcanvas-nav .mobile-collection .collection-card-head,
body .mobile-menu .offcanvas-nav .mobile-collection .collection-product-link {
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0
}

body .mobile-menu .offcanvas-nav .mobile-collection .collection-card-head {
    margin-bottom: 12px
}

body .mobile-menu .offcanvas-nav .mobile-collection .collection-product-link {
    min-height: 32px
}

.offcanvas-backdrop.show {
    opacity: .42
}

body .site-footer.global-footer {
    display: block;
    grid-template-columns: none;
    gap: 0;
    align-items: initial;
    padding: 49px 0 0;
    color: #fff;
    background: radial-gradient(circle at 18% 28%, rgba(78, 55, 99, .32), transparent 34%), #1f182b
}

body .global-footer .page-shell {
    max-width: 1370px;
    margin: 0 auto;
    padding-left: 62px;
    padding-right: 62px
}

body .site-footer.global-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.25fr 2fr;
    gap: 42px;
    align-items: start;
    padding-bottom: 51px
}

body .site-footer.global-footer .brand.light {
    color: #fff
}

body .site-footer.global-footer .light-mark {
    color: var(--ink);
    background: #fff
}

body .site-footer.global-footer .footer-brand p,
body .site-footer.global-footer .footer-news p {
    margin: 24px 0;
    color: #d2cbd6;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55
}

body .site-footer.global-footer .socials {
    display: flex;
    gap: 22px;
    font-size: 24px
}

body .site-footer.global-footer .socials a {
    display: inline-grid;
    place-items: center;
    margin: 0;
    color: inherit;
    text-decoration: none
}

body .site-footer.global-footer .socials a:hover,
body .site-footer.global-footer .socials a:focus-visible {
    color: var(--yellow);
    outline: none
}

body .site-footer.global-footer h4 {
    margin: 0 0 20px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 900
}

body .site-footer.global-footer a {
    display: block;
    margin: 0 0 13px;
    color: #f1edf2;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none
}

body .site-footer.global-footer .footer-input {
    display: flex;
    max-width: 260px;
    height: 43px
}

body .site-footer.global-footer .footer-input input {
    flex: 1;
    min-width: 0;
    padding: 0 19px;
    border: 0;
    border-radius: 24px 0 0 24px
}

body .site-footer.global-footer .footer-input button {
    padding: 0 24px;
    color: var(--ink);
    background: var(--yellow);
    border: 0;
    border-radius: 0 24px 24px 0;
    font-weight: 900
}

body .site-footer.global-footer .footer-news .wpcf7 {
    max-width: 260px;
    margin: 0 0 16px
}

body .site-footer.global-footer .footer-news .wpcf7 form {
    position: relative;
    display: block;
    max-width: 260px;
    min-height: 43px;
    margin: 0;
    padding: 0
}

body .site-footer.global-footer .footer-news .wpcf7 form>p {
    display: contents;
    margin: 0
}

body .site-footer.global-footer .footer-news .wpcf7 label {
    display: contents
}

body .site-footer.global-footer .footer-news .wpcf7 br {
    display: none
}

body .site-footer.global-footer .footer-news .wpcf7-form-control-wrap {
    display: block;
    width: 100%
}

body .site-footer.global-footer .footer-news .wpcf7 input[type="email"] {
    width: 100%;
    height: 43px;
    min-height: 43px;
    padding: 0 98px 0 19px;
    color: var(--ink);
    background: #fff;
    border: 0;
    border-radius: 24px;
    outline: none
}

body .site-footer.global-footer .footer-news .wpcf7 input[type="submit"] {
    position: absolute;
    top: 24px;
    right: 0;
    height: 43px;
    min-height: 43px;
    padding: 0 24px;
    color: var(--ink);
    background: var(--yellow);
    border: 0;
    border-radius: 0 24px 24px 0;
    cursor: pointer;
    font-weight: 900
}

.footer-news p {
    margin-top: 8px;
}

body .site-footer.global-footer .footer-news .wpcf7 input[type="submit"]:hover,
body .site-footer.global-footer .footer-news .wpcf7 input[type="submit"]:focus-visible {
    background: #ffdc58;
    outline: none
}

body .site-footer.global-footer .footer-news .wpcf7 .wpcf7-spinner {
    position: absolute;
    top: 47px;
    right: 0;
    margin: 0
}

body .site-footer.global-footer .footer-news .wpcf7 .wpcf7-not-valid-tip,
body .site-footer.global-footer .footer-news .wpcf7 .wpcf7-response-output {
    flex-basis: 100%;
    margin: 8px 0 0;
    color: #f1edf2;
    font-size: 12px;
    line-height: 1.35
}

body .site-footer.global-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    border-top: 1px solid rgba(255, 255, 255, .28);
    color: #d5cfd8;
    font-size: 13px
}

body .site-footer.global-footer .footer-bottom div {
    display: flex;
    align-items: center;
    gap: 13px
}

body .site-footer.global-footer .footer-bottom b {
    display: grid;
    min-width: 48px;
    height: 27px;
    place-items: center;
    color: #1750a8;
    background: #fff;
    border-radius: 4px;
    font-size: 12px
}

body .mobile-bottom-nav.global-mobile-bottom-nav {
    display: none
}

@media (max-width:980px) {
    body .site-footer.global-footer .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:1101px) {
    body .site-header.global-header {
        grid-template-columns: 46px minmax(0, 1fr) 58px;
        gap: 8px;
        min-height: 68px;
        padding: 12px 16px
    }

    body .global-header .brand {
        grid-column: 1/-1;
        position: absolute;
        left: 50%;
        justify-self: auto;
        transform: translateX(-50%)
    }

    body .global-header .site-nav {
        display: none !important
    }

    body .global-header .nav-toggle {
        grid-column: 1;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-self: start
    }

    body .global-header .header-actions {
        grid-column: 3;
        position: relative;
        z-index: 1;
        gap: 0
    }

    body .global-header .round-link {
        display: none
    }

    body .global-header .cart-pill {
        display: inline-flex;
        min-width: 54px;
        height: 36px;
        padding: 0 11px;
        font-size: 18px
    }
}
@media (max-width:720px) {
    body {
        padding-bottom: 74px
    }

    body .site-header.global-header {
        grid-template-columns: 46px minmax(0, 1fr) 58px;
        gap: 8px;
        min-height: 68px;
        padding: 12px 16px
    }

    body .global-header .brand {
        grid-column: 1/-1;
        position: absolute;
        left: 50%;
        justify-self: auto;
        transform: translateX(-50%)
    }

    body .global-header .site-nav {
        display: none
    }

    body .global-header .nav-toggle {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-self: start
    }

    body .global-header .header-actions {
        grid-column: 3;
        position: relative;
        z-index: 1;
        gap: 0
    }

    body .global-header .round-link {
        display: none
    }

    body .global-header .cart-pill {
        display: inline-flex;
        min-width: 54px;
        height: 36px;
        padding: 0 11px;
        font-size: 18px
    }

    body .site-footer.global-footer .page-shell {
        padding-left: 18px;
        padding-right: 18px
    }

    body .site-footer.global-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 34px
    }

    body .site-footer.global-footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px
    }

    body .site-footer.global-footer .footer-bottom div {
        flex-wrap: wrap
    }

    body .mobile-bottom-nav.global-mobile-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 200;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        height: 67px;
        background: #fffaf0;
        border-top: 1px solid rgba(29, 24, 48, .15);
        box-shadow: 0 -8px 22px rgba(29, 24, 48, .08)
    }

    body .mobile-bottom-nav.global-mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: var(--ink);
        font-size: 11px;
        font-weight: 800;
        text-decoration: none
    }

    body .mobile-bottom-nav.global-mobile-bottom-nav i {
        font-size: 20px;
        line-height: 1
    }
}

@media (max-width:430px) {
    body .global-header .brand {
        font-size: 1.05rem
    }

    body .global-header .brand-mark {
        width: 34px;
        height: 34px
    }
}
/* Brand image logo */
body .global-header .brand-logo,
.brand-logo {
  display: block;
  width: auto;
  height: 60px !important;
  max-width: 150px !important;
  object-fit: contain;
}

.brand.light .brand-logo,
.footer-brand-logo {
  height: 44px;
  max-width: 160px;
}

@media (max-width: 767px) {
  body .global-header .brand-logo,
  .brand-logo {
    height: 55px !important;
    max-width: 132px !important;
  }

  .brand.light .brand-logo,
  .footer-brand-logo {
    height: 38px;
  }
}
/* Keep header nav items on the same vertical centerline */
body .global-header .site-nav > a,
body .global-header .site-nav > .nav-menu-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

body .global-header .site-nav > .nav-menu-item > .collection-trigger,
body .global-header .site-nav > .nav-menu-item > .concerns-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}
/* Final nav vertical alignment guard */
body.shop-all-products-template .global-header .site-nav {
    align-items: center !important;
}

body.shop-all-products-template .global-header .site-nav > a,
body.shop-all-products-template .global-header .site-nav > .nav-menu-item,
body.shop-all-products-template .global-header .site-nav > .nav-menu-item > .collection-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    height: 42px !important;
    min-height: 42px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

.sample-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 42px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.sample-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.sample-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(36, 29, 42, .46);
    backdrop-filter: blur(7px);
}

.sample-popup__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(180px, .9fr) minmax(0, 1fr);
    width: min(760px, 100%);
    overflow: hidden;
    color: var(--ink);
    background: #fffaf0;
    border: 1px solid rgba(36, 29, 42, .12);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(36, 29, 42, .22);
    transform: translateY(12px) scale(.98);
    transition: transform 220ms ease;
}

.sample-popup.is-visible .sample-popup__dialog {
    transform: translateY(0) scale(1);
}

.sample-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(36, 29, 42, .12);
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 10px 28px rgba(36, 29, 42, .12);
}

.sample-popup__close:hover,
.sample-popup__close:focus-visible {
    background: var(--yellow);
    outline: none;
}

.sample-popup__image-wrap {
    min-height: 330px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffe8d9 0%, #fff5dc 54%, #f7efe8 100%);
}

.sample-popup__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    object-position: center;
}

.sample-popup__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: clamp(34px, 5vw, 58px) clamp(28px, 5vw, 54px);
}

.sample-popup__eyebrow {
    width: max-content;
    max-width: 100%;
    padding: 8px 12px;
    color: #2a231d;
    background: var(--yellow);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.sample-popup__content h2 {
    max-width: 12ch;
    margin: 0;
    color: var(--ink);
    font-size: clamp(31px, 3.9vw, 48px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .96;
    text-transform: uppercase;
}

.sample-popup__subheading {
    max-width: 32ch;
    margin: 2px 0 0;
    color: var(--ink);
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 850;
    line-height: 1.28;
}

.sample-popup__supporting {
    max-width: 38ch;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.sample-popup__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 46px;
    margin-top: 6px;
    padding: 0 22px;
    color: var(--ink);
    background: var(--yellow);
    border: 1px solid rgba(36, 29, 42, .08);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(36, 29, 42, .12);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .03em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.sample-popup__cta:hover,
.sample-popup__cta:focus-visible {
    color: #fff;
    background: var(--ink);
    outline: none;
}

@media (max-width: 700px) {
    .sample-popup {
        align-items: end;
        padding: 14px;
        padding-bottom: max(14px, env(safe-area-inset-bottom));
    }

    .sample-popup__dialog {
        grid-template-columns: 1fr;
        width: min(420px, 100%);
        max-height: calc(100vh - 28px);
        overflow-y: auto;
    }

    .sample-popup__image-wrap {
        min-height: 190px;
    }

    .sample-popup__image-wrap img {
        min-height: 190px;
    }

    .sample-popup__content {
        align-items: center;
        padding: 24px 24px 32px;
        text-align: center;
    }

    .sample-popup__content h2 {
        max-width: 15ch;
        font-size: clamp(27px, 8vw, 36px);
    }

    .sample-popup__subheading,
    .sample-popup__supporting {
        max-width: 30ch;
    }

    .sample-popup__cta {
        align-self: center;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 380px) {
    .sample-popup__close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 24px;
    }

    .sample-popup__content {
        padding-inline: 18px;
    }
}
