:root {
    --df-purple: #6f3cff;
    --df-purple-dark: #5830cc;
    --df-purple-soft: #f3efff;
    --df-ink: #171327;
    --df-ink-soft: #27233a;
    --df-muted: #787388;
    --df-soft: #f7f4ff;
    --df-pink-soft: #fff3f8;
    --df-line: #e6dff8;
    --df-white: #ffffff;
    --df-radius-lg: 32px;
    --df-radius-md: 20px;
    --df-shadow: 0 20px 60px rgba(68, 38, 166, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #fff;
    color: var(--df-ink);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(230,223,248,.9);
    backdrop-filter: blur(18px);
}
.site-header__inner {
    max-width: 1320px;
    min-height: 82px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    width: fit-content;
}
.site-brand__icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
}
.site-brand__icon svg {
    width: 44px;
    height: 44px;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(91, 46, 232, .22));
}
.site-brand__copy {
    display: grid;
    gap: 1px;
}
.site-brand__eyebrow {
    color: var(--df-purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}
.site-brand__text {
    font-family: Manrope, sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.03em;
}
.custom-logo { max-height: 44px; width: auto; }
.site-nav__menu, .site-footer__menu {
    list-style: none;
    display: flex;
    gap: 28px;
    padding: 0;
    margin: 0;
}
.site-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--df-ink-soft);
}
.site-nav a:hover,
.text-link:hover { color: var(--df-purple); }
.site-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.site-action {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--df-line);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,.88);
}
.site-action__count {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--df-purple);
    color: white;
    font-size: 11px;
}

.hero {
    min-height: 560px;
    padding: 92px 24px 80px;
    display: grid;
    place-items: center;
    text-align: center;
    background:
      radial-gradient(circle at 18% 8%, rgba(129, 92, 255, .20), transparent 27%),
      radial-gradient(circle at 82% 18%, rgba(255, 188, 218, .30), transparent 24%),
      linear-gradient(145deg, #fbf9ff 0%, #f6f1ff 46%, #fff8fb 100%);
}
.hero__content { width: min(900px, 100%); }
.hero__eyebrow, .section-kicker {
    margin: 0 0 16px;
    color: var(--df-purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
}
.hero h1, .shop-hero h1 {
    margin: 0 auto;
    font-family: Manrope, sans-serif;
    font-size: clamp(44px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.05em;
    max-width: 850px;
}
.hero__content > p:not(.hero__eyebrow) {
    max-width: 650px;
    margin: 24px auto 34px;
    color: var(--df-muted);
    font-size: clamp(16px,2vw,20px);
    line-height: 1.6;
}
.hero-search {
    width: min(860px, 100%);
    min-height: 72px;
    margin: 0 auto;
    padding: 0 26px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 2px solid rgba(111, 60, 255, .85);
    border-radius: 999px;
    box-shadow: 0 18px 45px rgba(91, 46, 232, .10);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.hero-search.is-focused, .hero-search:focus-within {
    border-color: var(--df-purple);
    transform: translateY(-2px);
    box-shadow: 0 24px 70px rgba(73,42,170,.18);
}
.hero-search__icon {
    width: 22px;
    height: 22px;
    border: 2.3px solid var(--df-muted);
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}
.hero-search__icon::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 2.5px;
    background: var(--df-muted);
    right: -7px;
    bottom: -3px;
    transform: rotate(45deg);
    border-radius: 2px;
}
.hero-search__input {
    width: 100%;
    height: 68px;
    padding: 0;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--df-ink);
    font: 500 17px/1 "DM Sans", sans-serif;
}
.hero-search__input::placeholder { color: #9a93ae; }
.hero__quick-links {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--df-muted);
    font-size: 13px;
}
.hero__quick-links a {
    text-decoration: none;
    font-weight: 700;
    color: var(--df-ink);
}
.hero__quick-links a:hover { color: var(--df-purple); }

.home-section, .shop-content, .content-main {
    width: min(1280px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}
.home-section--intro {
    padding: 72px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}
.home-section--intro h2 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(30px,4vw,48px);
    letter-spacing: -.035em;
}
.text-link { color: var(--df-purple); font-weight: 800; text-decoration: none; }
.home-products { padding-bottom: 76px; }
.notice-card, .content-card {
    padding: 36px;
    border: 1px solid var(--df-line);
    border-radius: var(--df-radius-md);
    background: white;
}

.benefits {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto 80px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    background: linear-gradient(180deg, var(--df-soft) 0%, #fff 100%);
    border: 1px solid var(--df-line);
    border-radius: var(--df-radius-lg);
}
.benefits article { padding: 18px; display: grid; gap: 6px; }
.benefits strong { font-family: Manrope, sans-serif; font-size: 17px; }
.benefits span { color: var(--df-muted); font-size: 14px; line-height: 1.5; }

.shop-hero {
    padding: 72px 24px 46px;
    text-align: center;
    background: linear-gradient(180deg,#faf7ff 0%,#fff 100%);
}
.shop-hero h1 { font-size: clamp(42px,6vw,68px); }
.hero-search--shop { margin-top: 30px; min-height: 64px; box-shadow: 0 16px 42px rgba(34,20,80,.08); }
.shop-content { padding: 12px 0 80px; }
.content-main { padding: 70px 0; }

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 24px;
    margin: 0 !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0;
}
.woocommerce ul.products li.product a { text-decoration: none; }
.woocommerce ul.products li.product img {
    margin: 0 0 18px !important;
    border-radius: 20px;
    aspect-ratio: 4/5;
    object-fit: cover;
    background: #f3f1f6;
    transition: transform .3s ease, box-shadow .3s ease;
}
.woocommerce ul.products li.product:hover img {
    transform: translateY(-4px);
    box-shadow: 0 22px 34px rgba(33, 20, 77, .10);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0 !important;
    margin: 0 0 8px !important;
    color: var(--df-ink);
    font-family: Manrope,sans-serif;
    font-size: 16px !important;
    font-weight: 700;
}
.woocommerce ul.products li.product .price {
    color: var(--df-purple) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
}
.woocommerce span.onsale {
    min-width: auto;
    min-height: auto;
    padding: 7px 11px;
    line-height: 1;
    left: 12px;
    top: 12px;
    background: linear-gradient(135deg, var(--df-purple) 0%, #8d68ff 100%);
    border-radius: 999px;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--df-ink);
    color: white;
    font-weight: 700;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: var(--df-purple);
    color: white;
}
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { margin-bottom: 30px; }
.woocommerce .woocommerce-ordering select {
    padding: 11px 16px;
    border: 1px solid var(--df-line);
    border-radius: 999px;
    background: white;
}
.woocommerce div.product {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
}
.woocommerce div.product .product_title {
    font-family: Manrope,sans-serif;
    font-size: clamp(34px,4vw,54px);
    letter-spacing: -.04em;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--df-purple);
    font-weight: 800;
}

/* Hide duplicate default shop title / search blocks inside the WooCommerce content area */
.post-type-archive-product .shop-content .woocommerce-products-header,
.post-type-archive-product .shop-content .wp-block-search,
.post-type-archive-product .shop-content .wp-block-search + *,
.post-type-archive-product .shop-content .woocommerce-product-search,
.post-type-archive-product .shop-content form[role="search"]:not(.hero-search),
.post-type-archive-product .shop-content .entry-header,
.post-type-archive-product .shop-content .entry-title {
    display: none !important;
}
.post-type-archive-product .shop-content .page-description,
.post-type-archive-product .shop-content .term-description,
.post-type-archive-product .shop-content .archive-description {
    display: none !important;
}
.post-type-archive-product .shop-content > .page,
.post-type-archive-product .shop-content > article,
.post-type-archive-product .shop-content .post,
.post-type-archive-product .shop-content .entry-content {
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer {
    border-top: 1px solid var(--df-line);
    background: #14111c;
    color: white;
}
.site-footer__inner {
    width: min(1280px,calc(100% - 48px));
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 30px;
}
.site-footer p { color: #aaa5b3; font-size: 14px; }
.site-footer__menu a { color: #ddd9e5; text-decoration: none; font-size: 14px; }
.site-footer__credit { justify-self: end; color: #aaa5b3; font-size: 13px; }

@media (max-width: 980px) {
    .site-header__inner { grid-template-columns: 1fr auto; }
    .site-nav { display: none; }
    .woocommerce ul.products { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .woocommerce div.product { grid-template-columns: 1fr; }
    .benefits { grid-template-columns: 1fr; }
    .site-footer__inner { grid-template-columns: 1fr; }
    .site-footer__credit { justify-self: start; }
}

@media (max-width: 620px) {
    .site-header__inner { min-height: 68px; padding: 0 16px; }
    .site-brand__eyebrow { font-size: 9px; }
    .site-brand__text { font-size: 18px; }
    .site-action:first-child { display: none; }
    .hero { min-height: 500px; padding: 70px 18px 60px; }
    .hero h1 { font-size: 46px; }
    .hero-search { min-height: 60px; padding: 0 20px; width: 100%; }
    .hero-search__input { height: 58px; font-size: 15px; }
    .home-section, .shop-content, .content-main, .benefits, .site-footer__inner { width: min(100% - 30px,1280px); }
    .home-section--intro { padding-top: 50px; align-items: flex-start; }
    .woocommerce ul.products { grid-template-columns: 1fr 1fr; gap: 14px; }
    .woocommerce ul.products li.product img { border-radius: 14px; }
    .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px !important; }
}
