/*
 * THE KHATOON SHOP v3.4.0
 * Prompt-led luxury storefront: black, white, metallic gold and signature pink.
 */

:root {
    --tks-prompt-black: #070707;
    --tks-prompt-black-soft: #121012;
    --tks-prompt-pink: #f12873;
    --tks-prompt-pink-dark: #c51f5d;
    --tks-prompt-gold: #d9ad3d;
    --tks-prompt-gold-light: #f3d47e;
    --tks-prompt-blush: #fff3f7;
    --tks-prompt-cream: #fffaf6;
    --tks-prompt-text: #171316;
    --tks-prompt-muted: #5e5459;
    --tks-prompt-border: rgba(217, 173, 61, .42);
    --tks-prompt-container: min(1460px, calc(100% - 48px));
    --tks-prompt-serif: Georgia, "Times New Roman", serif;
    --tks-prompt-sans: Arial, Helvetica, sans-serif;
}

body {
    background: #fff;
    color: var(--tks-prompt-text);
    font-family: var(--tks-prompt-sans);
    font-size: 16px;
    line-height: 1.62;
}

body,
button,
input,
select,
textarea {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.announcement-bar {
    position: relative !important;
    z-index: 20;
    min-height: 34px;
    border: 0 !important;
    background: linear-gradient(90deg, #ef1764 0%, #ff367f 50%, #ef1764 100%) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.announcement-inner {
    width: var(--tks-prompt-container) !important;
    max-width: none !important;
    min-height: 34px;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    gap: clamp(18px, 4vw, 64px) !important;
    padding: 5px 0 !important;
}

.announcement-inner span {
    position: relative;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .01em;
    text-align: center;
    white-space: nowrap;
}

.announcement-inner span::before {
    display: inline-block;
    margin-right: 7px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    vertical-align: -1px;
}

.announcement-inner span:nth-child(1)::before { content: "♧"; transform: rotate(45deg); }
.announcement-inner span:nth-child(2)::before { content: "✓"; }
.announcement-inner span:nth-child(3)::before { content: "♡"; }

.announcement-inner span + span::after {
    content: "";
    position: absolute;
    left: calc(-1 * clamp(9px, 2vw, 32px));
    top: 50%;
    width: 1px;
    height: 16px;
    transform: translateY(-50%);
    background: rgba(255,255,255,.48);
}

.site-header {
    position: static !important;
    inset: auto !important;
    z-index: 30;
    width: 100%;
    background: var(--tks-prompt-black) !important;
    border: 0 !important;
    box-shadow: none !important;
}

.header-main {
    width: var(--tks-prompt-container) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 14px 0 0 !important;
    display: grid !important;
    grid-template-columns: 190px minmax(360px, 1fr) auto !important;
    grid-template-areas:
        "logo search actions"
        "nav nav nav" !important;
    align-items: center !important;
    gap: 12px 30px !important;
    min-height: 128px !important;
}

.brand-logo {
    grid-area: logo !important;
    width: 190px !important;
    min-width: 0 !important;
    max-width: 190px !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
}

.brand-logo .custom-logo-link,
.brand-logo > a {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    width: auto !important;
    max-width: 180px !important;
    flex: none !important;
}

.brand-logo .custom-logo {
    display: block !important;
    width: auto !important;
    max-width: 176px !important;
    height: auto !important;
    max-height: 72px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,.18));
}

.brand-logo-text {
    color: var(--tks-prompt-gold-light) !important;
}

.desktop-product-search {
    grid-area: search !important;
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    height: 52px !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 58px !important;
    border: 1px solid var(--tks-prompt-gold) !important;
    border-radius: 8px !important;
    overflow: visible !important;
    background: #fff !important;
    box-shadow: 0 7px 24px rgba(0,0,0,.18) !important;
}

.desktop-product-search input[type="search"] {
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 8px 0 0 8px !important;
    background: #fff !important;
    color: #1e1b1d !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.desktop-product-search input[type="search"]::placeholder {
    color: #777075 !important;
    opacity: 1 !important;
}

.desktop-product-search > button {
    width: 58px !important;
    height: 50px !important;
    min-height: 50px !important;
    border: 0 !important;
    border-radius: 0 7px 7px 0 !important;
    background: var(--tks-prompt-pink) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.desktop-product-search > button:hover,
.desktop-product-search > button:focus-visible {
    background: var(--tks-prompt-pink-dark) !important;
}

.header-actions {
    grid-area: actions !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 20px !important;
    margin: 0 !important;
    min-width: max-content;
}

.header-action {
    position: relative;
    min-width: auto !important;
    min-height: 44px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.header-action svg {
    color: #fff !important;
    stroke: currentColor;
}

.header-action:hover,
.header-action:focus-visible {
    color: var(--tks-prompt-pink) !important;
}

.header-action.search-panel-toggle {
    display: none !important;
}

.header-cart-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.header-cart-copy b {
    color: inherit;
    font-size: 13px;
}

.header-cart-copy small {
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 600;
    white-space: nowrap;
}

.cart-count-badge {
    min-width: 18px !important;
    height: 18px !important;
    top: -10px !important;
    right: -10px !important;
    background: var(--tks-prompt-pink) !important;
    color: #fff !important;
    border: 2px solid var(--tks-prompt-black) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
}

.main-navigation {
    grid-area: nav !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border-top: 1px solid rgba(217,173,61,.3) !important;
    background: transparent !important;
    overflow: visible !important;
}

.primary-menu.prompt-primary-menu {
    width: 100%;
    min-height: 48px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(12px, 2vw, 30px) !important;
    flex-wrap: nowrap !important;
}

.primary-menu.prompt-primary-menu > li {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto;
}

.primary-menu.prompt-primary-menu > li > a {
    position: relative;
    min-height: 48px;
    padding: 0 2px !important;
    display: inline-flex !important;
    align-items: center;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: .005em;
    text-decoration: none !important;
    text-transform: none !important;
}

.primary-menu.prompt-primary-menu > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
    background: var(--tks-prompt-pink);
    transition: width .22s ease;
}

.primary-menu.prompt-primary-menu > li > a:hover,
.primary-menu.prompt-primary-menu > li > a:focus-visible,
.primary-menu.prompt-primary-menu > .current-menu-item > a {
    color: var(--tks-prompt-pink) !important;
}

.primary-menu.prompt-primary-menu > li > a:hover::after,
.primary-menu.prompt-primary-menu > li > a:focus-visible::after,
.primary-menu.prompt-primary-menu > .current-menu-item > a::after {
    width: 100%;
}

.primary-menu.prompt-primary-menu .menu-item-deals > a::before {
    content: "♦";
    margin-right: 5px;
    color: var(--tks-prompt-pink);
    font-size: 10px;
}

.mobile-menu-toggle {
    grid-area: toggle;
    color: #fff !important;
}

.header-search-suggestions {
    top: calc(100% + 6px) !important;
    border: 1px solid rgba(217,173,61,.5) !important;
    border-radius: 10px !important;
    box-shadow: 0 16px 40px rgba(0,0,0,.22) !important;
}

/* =========================================================
   HOMEPAGE HERO
========================================================= */

.homepage-prompt-luxury {
    overflow: hidden;
    background: #fff;
}

.prompt-hero {
    position: relative !important;
    min-height: 560px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, .95fr) minmax(520px, 1.15fr) !important;
    grid-template-rows: minmax(480px, auto) auto !important;
    background:
        radial-gradient(circle at 19% 19%, rgba(255,255,255,.96), rgba(255,255,255,.15) 37%, transparent 60%),
        linear-gradient(113deg, #fff 0%, #fff8fa 45%, #ffdce8 100%) !important;
    border: 0 !important;
    overflow: hidden !important;
}

.prompt-hero::before,
.prompt-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    border: 2px solid rgba(217,173,61,.68);
}

.prompt-hero::before {
    width: 420px;
    height: 420px;
    left: -210px;
    bottom: -255px;
    box-shadow: 0 0 0 18px rgba(241,40,115,.06);
}

.prompt-hero::after {
    width: 310px;
    height: 310px;
    right: -115px;
    top: -205px;
    border-width: 18px;
    border-color: rgba(241,40,115,.12);
    box-shadow: 0 0 0 2px rgba(217,173,61,.55), 0 0 0 38px rgba(217,173,61,.06);
}

.prompt-hero-copy {
    position: relative;
    z-index: 4;
    align-self: center;
    width: min(630px, calc(100% - 72px));
    margin-left: max(36px, calc((100vw - 1460px) / 2));
    padding: 52px 0 62px;
}

.prompt-hero .hero-eyebrow {
    margin: 0 0 14px !important;
    color: #171316 !important;
    font-size: clamp(12px, 1.2vw, 17px) !important;
    font-weight: 800 !important;
    letter-spacing: .34em !important;
    text-transform: uppercase !important;
}

.prompt-hero h1 {
    max-width: 630px !important;
    margin: 0 !important;
    color: #181216 !important;
    font-family: var(--tks-prompt-serif) !important;
    font-size: clamp(52px, 5.4vw, 86px) !important;
    font-weight: 700 !important;
    line-height: .98 !important;
    letter-spacing: -.035em !important;
    text-shadow: none !important;
}

.prompt-hero h1 span {
    display: block !important;
    margin-top: 5px;
    color: var(--tks-prompt-pink) !important;
    font-family: var(--tks-prompt-serif) !important;
    font-style: italic !important;
    font-weight: 500 !important;
    white-space: nowrap;
}

.prompt-hero .hero-description {
    max-width: 560px !important;
    margin: 22px 0 25px !important;
    color: #1f1a1d !important;
    font-size: clamp(17px, 1.4vw, 22px) !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
}

.prompt-hero-btn {
    width: fit-content !important;
    min-width: 205px !important;
    min-height: 58px !important;
    padding: 0 25px !important;
    border: 1px solid var(--tks-prompt-gold) !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 13px !important;
    background: var(--tks-prompt-black) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: .03em;
    text-decoration: none !important;
    box-shadow: 0 0 0 3px rgba(217,173,61,.12), 0 10px 26px rgba(0,0,0,.22) !important;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.prompt-hero-btn:hover,
.prompt-hero-btn:focus-visible {
    color: var(--tks-prompt-gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(217,173,61,.17), 0 14px 32px rgba(0,0,0,.25) !important;
}

.prompt-hero-visual {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 480px;
    align-self: stretch;
    overflow: hidden;
}

.prompt-hero-visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 18%;
    background: linear-gradient(90deg, #fff9fb 0%, rgba(255,249,251,.78) 34%, transparent 100%);
    pointer-events: none;
}

.prompt-hero-visual img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 480px;
    object-fit: cover !important;
    object-position: center center !important;
}

.prompt-hero-trust {
    position: relative;
    z-index: 6;
    grid-column: 1 / -1;
    width: min(1180px, calc(100% - 48px));
    min-height: 82px;
    margin: -36px auto 0;
    padding: 15px 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 0;
    border: 1px solid rgba(217,173,61,.45);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 14px 40px rgba(30,10,20,.13);
    backdrop-filter: blur(12px);
}

.prompt-hero-trust > div {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 3px 22px;
}

.prompt-hero-trust > div + div {
    border-left: 1px solid rgba(217,173,61,.28);
}

.prompt-trust-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--tks-prompt-pink), #ff6d9d);
    color: #fff;
    box-shadow: 0 6px 16px rgba(241,40,115,.2);
}

.prompt-hero-trust > div > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.prompt-hero-trust strong {
    color: #181216;
    font-size: 15px;
    font-weight: 800;
}

.prompt-hero-trust small {
    margin-top: 3px;
    color: #655a60;
    font-size: 12px;
    font-weight: 600;
}

/* =========================================================
   SHARED PROMPT HEADINGS
========================================================= */

.prompt-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.prompt-section-heading-center {
    text-align: center;
}

.prompt-section-heading > div {
    min-width: 0;
}

.prompt-heading-line {
    width: clamp(48px, 8vw, 140px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tks-prompt-gold));
}

.prompt-heading-line:last-child {
    transform: scaleX(-1);
}

.prompt-crown {
    display: block;
    margin-bottom: -4px;
    color: var(--tks-prompt-gold);
    font-size: 30px;
    line-height: 1;
}

.prompt-section-heading h2 {
    margin: 0 !important;
    color: #181216 !important;
    font-family: var(--tks-prompt-serif) !important;
    font-size: clamp(35px, 4vw, 58px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -.025em !important;
}

.prompt-section-heading h2 em {
    color: var(--tks-prompt-pink);
    font-weight: 500;
}

/* =========================================================
   CATEGORIES
========================================================= */

.prompt-categories {
    width: var(--tks-prompt-container) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 76px 0 70px !important;
    background: #fff !important;
}

.prompt-category-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 18px;
}

.prompt-category-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    color: #171316 !important;
    text-decoration: none !important;
}

.prompt-category-media {
    position: relative;
    width: min(142px, 100%);
    aspect-ratio: 1;
    padding: 6px;
    display: grid;
    place-items: center;
    border: 1px solid var(--tks-prompt-gold);
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, var(--tks-prompt-blush));
    box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(241,40,115,.35), 0 10px 24px rgba(40,15,25,.08);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.prompt-category-media img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
    object-fit: cover !important;
    transform: scale(1.01);
}

.prompt-category-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #ffe2ec);
    color: var(--tks-prompt-pink);
}

.prompt-category-card strong {
    color: #151114 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.25;
    text-align: center;
}

.prompt-category-card:hover .prompt-category-media,
.prompt-category-card:focus-visible .prompt-category-media {
    transform: translateY(-4px);
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(241,40,115,.55), 0 16px 30px rgba(40,15,25,.14);
}

.prompt-category-card:hover strong,
.prompt-category-card:focus-visible strong {
    color: var(--tks-prompt-pink) !important;
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.prompt-why {
    position: relative;
    overflow: hidden;
    padding: 48px 0;
    border-top: 1px solid var(--tks-prompt-gold);
    border-bottom: 1px solid var(--tks-prompt-gold);
    background:
        radial-gradient(circle at 10% 20%, rgba(241,40,115,.09), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(217,173,61,.09), transparent 30%),
        linear-gradient(110deg, #090909, #171316 52%, #090909);
    color: #fff;
}

.prompt-why::before,
.prompt-why::after {
    content: "♡";
    position: absolute;
    color: rgba(255,86,142,.46);
    font-family: var(--tks-prompt-serif);
    font-size: 56px;
    line-height: 1;
}

.prompt-why::before { right: 38px; top: 28px; transform: rotate(12deg); }
.prompt-why::after { right: 95px; top: 70px; font-size: 30px; transform: rotate(-12deg); }

.prompt-why-inner {
    position: relative;
    z-index: 2;
    width: var(--tks-prompt-container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 45px;
}

.prompt-why-brand {
    padding-right: 34px;
    border-right: 1px solid rgba(217,173,61,.28);
}

.prompt-why-brand a {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tks-prompt-gold-light);
    text-align: center;
    text-decoration: none;
}

.prompt-why-brand img {
    width: auto !important;
    max-width: 200px !important;
    height: auto !important;
    max-height: 130px !important;
    object-fit: contain !important;
}

.prompt-section-heading-dark {
    margin-bottom: 28px;
}

.prompt-section-heading-dark h2 {
    color: #fff !important;
    font-size: clamp(32px, 3.2vw, 49px) !important;
}

.prompt-section-heading-dark .prompt-heading-line {
    background: linear-gradient(90deg, transparent, var(--tks-prompt-gold));
}

.prompt-why-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.prompt-why-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-align: center;
}

.prompt-why-item > span {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    display: grid;
    place-items: center;
    border: 2px solid var(--tks-prompt-gold);
    border-radius: 50%;
    color: var(--tks-prompt-gold-light);
    box-shadow: inset 0 0 0 4px rgba(217,173,61,.08), 0 0 18px rgba(217,173,61,.08);
}

.prompt-why-item strong {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.prompt-why-item small {
    margin-top: 4px;
    color: #ddd2d8;
    font-size: 12px;
    line-height: 1.3;
}

/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.prompt-featured {
    width: var(--tks-prompt-container) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 72px 0 66px !important;
    background: #fff !important;
}

.prompt-featured-heading {
    position: relative;
    margin-bottom: 30px;
}

.prompt-featured-heading .prompt-view-all {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.prompt-view-all {
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid var(--tks-prompt-pink);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--tks-prompt-pink) !important;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
}

.prompt-view-all:hover,
.prompt-view-all:focus-visible {
    background: var(--tks-prompt-pink);
    color: #fff !important;
}

.prompt-product-grid.product-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.prompt-product-grid .product-card {
    position: relative;
    min-width: 0;
    height: 100%;
    display: flex !important;
    flex-direction: column !important;
    border: 1px solid rgba(217,173,61,.35) !important;
    border-radius: 12px !important;
    background: #fff !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(37,15,24,.07) !important;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.prompt-product-grid .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241,40,115,.5) !important;
    box-shadow: 0 16px 34px rgba(37,15,24,.13) !important;
}

.prompt-product-grid .product-card-sale {
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    min-height: 26px;
    padding: 0 10px !important;
    border-radius: 999px !important;
    background: var(--tks-prompt-pink) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    line-height: 26px !important;
    box-shadow: 0 5px 14px rgba(241,40,115,.22) !important;
}

.prompt-product-grid .product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / .93;
    padding: 14px;
    display: grid !important;
    place-items: center;
    background: linear-gradient(145deg, #fff, #fff7fa) !important;
    overflow: hidden;
}

.prompt-product-grid .product-image img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: contain !important;
    transition: transform .25s ease;
}

.prompt-product-grid .product-card:hover .product-image img {
    transform: scale(1.035);
}

.prompt-product-grid .product-card-body {
    flex: 1 1 auto;
    min-width: 0;
    padding: 15px 15px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: #fff !important;
}

.prompt-product-grid .product-card-brand {
    margin-bottom: 5px !important;
    color: var(--tks-prompt-pink) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.prompt-product-grid .product-card h3 {
    min-height: 43px;
    margin: 0 0 7px !important;
    color: #151114 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.42 !important;
    letter-spacing: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prompt-product-grid .product-rating {
    order: 3;
    min-height: 19px;
    margin: 0 0 6px !important;
}

.prompt-product-grid .star-rating {
    color: #e6aa17 !important;
    font-size: 12px !important;
}

.prompt-product-grid .product-price {
    order: 4;
    min-height: 26px;
    margin: 0 0 12px !important;
    color: #171316 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
}

.prompt-product-grid .product-price del {
    color: #9d8d95 !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.prompt-product-grid .product-price ins {
    color: var(--tks-prompt-pink) !important;
    text-decoration: none !important;
}

.prompt-product-grid .product-cart-link {
    order: 5;
    min-height: 42px !important;
    margin-top: auto !important;
    padding: 0 14px !important;
    border: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    background: linear-gradient(90deg, var(--tks-prompt-pink), #ff4386) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: none !important;
    box-shadow: 0 7px 17px rgba(241,40,115,.18) !important;
}

.prompt-product-grid .product-cart-link:hover,
.prompt-product-grid .product-cart-link:focus-visible {
    background: var(--tks-prompt-black) !important;
    color: var(--tks-prompt-gold-light) !important;
}

/* =========================================================
   NEWSLETTER
========================================================= */

.prompt-newsletter {
    position: relative;
    width: 100% !important;
    min-height: 180px;
    margin: 0 !important;
    padding: 34px max(36px, calc((100vw - 1460px) / 2)) !important;
    display: grid !important;
    grid-template-columns: minmax(220px, .75fr) minmax(460px, 1.45fr) minmax(180px, .55fr) !important;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    border: 0 !important;
    border-top: 1px solid rgba(241,40,115,.15) !important;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,.8), transparent 28%),
        linear-gradient(90deg, #ffdce9 0%, #fff3f7 47%, #ffd8e6 100%) !important;
    color: #181216 !important;
}

.prompt-newsletter-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.prompt-newsletter h2 {
    margin: 0 !important;
    color: #171316 !important;
    font-family: var(--tks-prompt-serif) !important;
    font-size: clamp(28px, 3vw, 43px) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    letter-spacing: -.02em !important;
}

.prompt-newsletter h2 em {
    color: var(--tks-prompt-pink);
    font-weight: 500;
}

.prompt-newsletter-content > p {
    margin: 8px 0 19px !important;
    color: #40363b !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.prompt-newsletter-form {
    position: relative;
    width: min(630px, 100%);
    height: 48px;
    margin: 0 auto !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) 132px !important;
    align-items: center;
    gap: 0 !important;
    border: 1px solid rgba(80,50,64,.2) !important;
    border-radius: 999px !important;
    background: #fff !important;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(63,25,41,.08) !important;
}

.prompt-email-icon {
    display: grid;
    place-items: center;
    color: #574b51;
}

.prompt-newsletter-form input[type="email"] {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 8px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #241e21 !important;
    font-size: 13px !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.prompt-newsletter-form input[type="email"]::placeholder {
    color: #8a7d84 !important;
    opacity: 1;
}

.prompt-newsletter-form button {
    width: 132px !important;
    height: 46px !important;
    min-height: 46px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--tks-prompt-pink) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
}

.prompt-newsletter-form button:hover,
.prompt-newsletter-form button:focus-visible {
    background: var(--tks-prompt-black) !important;
    color: var(--tks-prompt-gold-light) !important;
}

.prompt-newsletter-art {
    position: relative;
    min-height: 125px;
}

.prompt-gift-box {
    position: absolute;
    left: 55px;
    top: 26px;
    width: 95px;
    height: 74px;
    border-radius: 8px;
    background: linear-gradient(145deg, #0b0b0b, #262026);
    box-shadow: 0 14px 22px rgba(28,10,18,.18);
    transform: rotate(-8deg);
}

.prompt-gift-box::before,
.prompt-gift-box::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, #ff4b8d, #d81761);
}

.prompt-gift-box::before {
    left: 41px;
    top: -5px;
    width: 15px;
    height: 84px;
}

.prompt-gift-box::after {
    left: -5px;
    top: 26px;
    width: 105px;
    height: 15px;
}

.prompt-brush {
    position: absolute;
    bottom: 11px;
    width: 16px;
    height: 94px;
    border-radius: 10px;
    background: linear-gradient(90deg, #111, #d8aa46 45%, #111 100%);
    transform-origin: bottom;
}

.prompt-brush::before {
    content: "";
    position: absolute;
    left: -10px;
    top: -24px;
    width: 36px;
    height: 40px;
    border-radius: 60% 60% 35% 35%;
    background: linear-gradient(90deg, #cf4477, #ff7fac, #c72f69);
}

.prompt-brush-one { left: 20px; transform: rotate(-25deg); }
.prompt-brush-two { left: 173px; transform: rotate(22deg); }

.prompt-news-heart {
    position: absolute;
    left: 185px;
    top: 3px;
    color: var(--tks-prompt-pink);
    font-family: var(--tks-prompt-serif);
    font-size: 46px;
    transform: rotate(15deg);
}

.prompt-newsletter-badge {
    position: relative;
    z-index: 2;
    justify-self: center;
    width: 145px;
    height: 128px;
    display: grid;
    place-items: center;
    color: var(--tks-prompt-pink);
    text-align: center;
}

.prompt-newsletter-badge::before {
    content: "♡";
    position: absolute;
    inset: -14px 0 auto;
    color: rgba(241,40,115,.7);
    font-family: var(--tks-prompt-serif);
    font-size: 150px;
    font-weight: 400;
    line-height: .8;
}

.prompt-newsletter-badge > span {
    position: absolute;
    right: -2px;
    top: 5px;
    font-size: 27px;
}

.prompt-newsletter-badge strong {
    position: relative;
    z-index: 1;
    color: var(--tks-prompt-pink);
    font-family: var(--tks-prompt-serif);
    font-size: 23px;
    font-style: italic;
    line-height: 1.05;
}

/* =========================================================
   FOOTER
========================================================= */

.prompt-footer {
    position: relative;
    margin: 0 !important;
    border-top: 1px solid var(--tks-prompt-gold) !important;
    background: linear-gradient(115deg, #090909, #171316 55%, #090909) !important;
    color: #fff !important;
}

.prompt-footer-inner {
    width: var(--tks-prompt-container) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 42px 0 34px !important;
    display: grid !important;
    grid-template-columns: 1.15fr .85fr .75fr .95fr !important;
    gap: 52px !important;
}

.prompt-footer .footer-logo {
    display: inline-flex !important;
    align-items: center;
    color: var(--tks-prompt-gold-light) !important;
    text-decoration: none !important;
}

.prompt-footer .footer-logo img {
    width: auto !important;
    max-width: 205px !important;
    height: auto !important;
    max-height: 90px !important;
    object-fit: contain !important;
}

.prompt-footer .footer-brand-description {
    margin: 13px 0 15px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600;
}

.prompt-footer .footer-contact-list {
    margin: 0 0 16px !important;
    padding: 0 !important;
    list-style: none !important;
}

.prompt-footer .footer-contact-list li {
    margin: 5px 0 !important;
}

.prompt-footer .footer-contact-list a,
.prompt-footer .footer-contact-list address {
    color: #f5edf1 !important;
    font-size: 13px !important;
    font-style: normal !important;
    text-decoration: none !important;
}

.prompt-footer h3,
.prompt-follow-title {
    margin: 0 0 14px !important;
    color: var(--tks-prompt-gold-light) !important;
    font-family: var(--tks-prompt-serif) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
}

.prompt-follow-title {
    margin-top: 18px !important;
}

.prompt-footer .footer-column ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.prompt-footer .footer-column li {
    margin: 8px 0 !important;
}

.prompt-footer .footer-column a {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.prompt-footer .footer-column a:hover,
.prompt-footer .footer-column a:focus-visible {
    color: var(--tks-prompt-pink) !important;
}

.prompt-footer .footer-socials {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px !important;
}

.prompt-footer .footer-social-link {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217,173,61,.45) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.04) !important;
    color: #fff !important;
}

.prompt-footer .footer-social-link:hover,
.prompt-footer .footer-social-link:focus-visible {
    border-color: var(--tks-prompt-pink) !important;
    background: var(--tks-prompt-pink) !important;
    color: #fff !important;
}

.prompt-footer .footer-social-name {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.prompt-payment-column p {
    margin: 0 0 16px !important;
    color: #d8cfd4 !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

.prompt-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prompt-payment-methods span {
    min-height: 32px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    background: #fff;
    color: #121012;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: -.01em;
}

.prompt-payment-methods .payment-visa { color: #142b76; font-size: 15px; font-style: italic; }
.prompt-payment-methods .payment-mastercard { color: #c8272c; }
.prompt-payment-methods .payment-easypaisa { color: #198f4a; }
.prompt-payment-methods .payment-jazzcash { color: #d91a26; }

.prompt-footer .footer-bottom {
    width: 100% !important;
    min-height: 48px;
    margin: 0 !important;
    padding: 13px max(24px, calc((100vw - 1460px) / 2)) !important;
    border-top: 1px solid rgba(217,173,61,.28) !important;
    background: #050505 !important;
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    color: #d9d2d6 !important;
    text-align: center !important;
}

.prompt-footer .footer-bottom p {
    margin: 0 !important;
    color: #d9d2d6 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
}

/* =========================================================
   READABILITY SAFEGUARDS FOR THE REST OF THE SITE
========================================================= */

body:not(.home) .site-main,
body:not(.home) .content-area,
body:not(.home) .woocommerce {
    color: #201a1e;
}

body:not(.home) h1,
body:not(.home) h2,
body:not(.home) h3,
body:not(.home) h4 {
    color: #21191e;
}

body:not(.home) a.button,
body:not(.home) button.button,
body:not(.home) .woocommerce a.button,
body:not(.home) .woocommerce button.button,
body:not(.home) .woocommerce input.button,
body:not(.home) input[type="submit"] {
    color: #fff !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1240px) {
    :root {
        --tks-prompt-container: min(100% - 36px, 1180px);
    }

    .header-main {
        grid-template-columns: 160px minmax(300px, 1fr) auto !important;
        gap: 10px 20px !important;
    }

    .brand-logo {
        width: 160px !important;
        max-width: 160px !important;
    }

    .brand-logo .custom-logo {
        max-width: 150px !important;
        max-height: 64px !important;
    }

    .header-actions { gap: 13px !important; }
    .header-action { font-size: 12px !important; }
    .header-cart-copy small { display: none; }

    .primary-menu.prompt-primary-menu {
        gap: 18px !important;
    }

    .primary-menu.prompt-primary-menu > li > a {
        font-size: 12px !important;
    }

    .prompt-hero {
        grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr) !important;
    }

    .prompt-hero-copy {
        margin-left: 34px;
    }

    .prompt-why-inner {
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 30px;
    }

    .prompt-category-grid { gap: 13px; }
    .prompt-product-grid.product-grid { gap: 14px !important; }

    .prompt-newsletter {
        grid-template-columns: 180px minmax(420px, 1fr) 150px !important;
        gap: 22px;
    }
}

@media (max-width: 1024px) {
    .announcement-inner {
        gap: 22px !important;
    }

    .announcement-inner span {
        font-size: 11px !important;
    }

    .header-main {
        grid-template-columns: 145px minmax(280px, 1fr) auto !important;
    }

    .header-actions {
        gap: 12px !important;
    }

    .header-action > span:not(.cart-icon-wrap):not(.header-cart-copy) {
        display: none !important;
    }

    .header-cart-copy {
        display: none !important;
    }

    .primary-menu.prompt-primary-menu {
        gap: 14px !important;
        overflow-x: auto;
        justify-content: flex-start !important;
        scrollbar-width: none;
    }

    .primary-menu.prompt-primary-menu::-webkit-scrollbar { display: none; }

    .prompt-hero {
        min-height: 500px !important;
        grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr) !important;
        grid-template-rows: minmax(430px, auto) auto !important;
    }

    .prompt-hero-copy {
        width: calc(100% - 40px);
        margin-left: 28px;
        padding: 45px 0 55px;
    }

    .prompt-hero h1 {
        font-size: clamp(44px, 6.2vw, 64px) !important;
    }

    .prompt-hero .hero-description {
        font-size: 17px !important;
    }

    .prompt-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 28px;
    }

    .prompt-category-media {
        width: min(132px, 100%);
    }

    .prompt-why-inner {
        grid-template-columns: 1fr;
    }

    .prompt-why-brand {
        display: none;
    }

    .prompt-why-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .prompt-product-grid.product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .prompt-product-grid .product-card:nth-child(n+4) {
        display: none !important;
    }

    .prompt-newsletter {
        grid-template-columns: 1fr minmax(420px, 1.8fr) !important;
    }

    .prompt-newsletter-badge {
        display: none;
    }

    .prompt-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 38px !important;
    }
}

@media (max-width: 782px) {
    :root {
        --tks-prompt-container: min(100% - 28px, 720px);
    }

    .announcement-bar {
        min-height: 31px;
    }

    .announcement-inner {
        width: 100% !important;
        min-height: 31px;
        padding: 4px 10px !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    .announcement-inner span {
        flex: 1 1 33.33%;
        font-size: 0 !important;
        white-space: normal;
    }

    .announcement-inner span::before {
        margin-right: 4px;
        font-size: 12px;
    }

    .announcement-inner span::after {
        content: attr(data-mobile-label);
        font-size: 9px;
        font-weight: 700;
    }

    .announcement-inner span + span::after {
        position: static;
        width: auto;
        height: auto;
        transform: none;
        background: transparent;
    }

    .site-header {
        position: static !important;
    }

    .header-main {
        min-height: 118px !important;
        padding: 10px 0 0 !important;
        grid-template-columns: 42px minmax(0, 1fr) auto !important;
        grid-template-areas:
            "toggle logo actions"
            "search search search"
            "nav nav nav" !important;
        gap: 8px 12px !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(217,173,61,.42) !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,.03) !important;
        color: #fff !important;
    }

    .brand-logo {
        grid-area: logo !important;
        width: auto !important;
        max-width: none !important;
        justify-content: center;
    }

    .brand-logo .custom-logo-link,
    .brand-logo > a {
        max-width: 140px !important;
        justify-content: center;
    }

    .brand-logo .custom-logo {
        max-width: 136px !important;
        max-height: 52px !important;
    }

    .desktop-product-search {
        grid-area: search !important;
        height: 45px !important;
    }

    .desktop-product-search input[type="search"] {
        height: 43px !important;
        min-height: 43px !important;
        padding: 0 15px !important;
        font-size: 13px !important;
    }

    .desktop-product-search > button {
        width: 52px !important;
        height: 43px !important;
        min-height: 43px !important;
    }

    .header-actions {
        gap: 10px !important;
    }

    .header-action {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
        min-height: 38px !important;
    }

    .header-action > span:not(.cart-icon-wrap) {
        display: none !important;
    }

    .main-navigation {
        display: none !important;
        grid-area: nav !important;
        border-top: 1px solid rgba(217,173,61,.3) !important;
    }

    .main-navigation.is-open,
    .menu-open .main-navigation,
    .site-header.menu-open .main-navigation,
    .site-header.is-menu-open .main-navigation,
    body.khatoon-menu-open .main-navigation {
        display: block !important;
    }

    .primary-menu.prompt-primary-menu {
        width: 100%;
        max-height: min(68vh, 580px);
        padding: 8px 0 15px !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch !important;
        gap: 7px !important;
        overflow-y: auto;
    }

    .primary-menu.prompt-primary-menu > li > a {
        min-height: 42px;
        padding: 0 12px !important;
        justify-content: center;
        border: 1px solid rgba(217,173,61,.22);
        border-radius: 7px;
        background: rgba(255,255,255,.025);
        font-size: 12px !important;
    }

    .primary-menu.prompt-primary-menu > li > a::after {
        display: none;
    }

    .prompt-hero {
        min-height: 0 !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto !important;
    }

    .prompt-hero-copy {
        width: var(--tks-prompt-container);
        margin: 0 auto;
        padding: 42px 0 26px;
        text-align: center;
    }

    .prompt-hero .hero-eyebrow {
        font-size: 11px !important;
        letter-spacing: .22em !important;
    }

    .prompt-hero h1 {
        max-width: 580px !important;
        margin: 0 auto !important;
        font-size: clamp(42px, 12vw, 65px) !important;
        line-height: 1.02 !important;
    }

    .prompt-hero h1 span {
        white-space: normal;
    }

    .prompt-hero .hero-description {
        max-width: 560px !important;
        margin: 18px auto 22px !important;
        font-size: 16px !important;
    }

    .prompt-hero-btn {
        margin: 0 auto;
    }

    .prompt-hero-visual {
        min-height: 330px;
    }

    .prompt-hero-visual::before {
        inset: 0 0 auto;
        width: 100%;
        height: 18%;
        background: linear-gradient(180deg, #fff7fa 0%, transparent 100%);
    }

    .prompt-hero-visual img {
        min-height: 330px;
        object-position: center center !important;
    }

    .prompt-hero-trust {
        width: var(--tks-prompt-container);
        min-height: 0;
        margin: -18px auto 0;
        padding: 12px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-radius: 12px;
    }

    .prompt-hero-trust > div {
        flex-direction: column;
        gap: 6px;
        padding: 4px 8px;
        text-align: center;
    }

    .prompt-trust-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .prompt-trust-icon svg { width: 23px; height: 23px; }
    .prompt-hero-trust strong { font-size: 11px; }
    .prompt-hero-trust small { font-size: 9px; }

    .prompt-categories {
        padding: 58px 0 52px !important;
    }

    .prompt-section-heading {
        gap: 11px;
    }

    .prompt-heading-line {
        width: 42px;
    }

    .prompt-section-heading h2 {
        font-size: clamp(34px, 9vw, 48px) !important;
    }

    .prompt-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .prompt-category-media {
        width: min(122px, 100%);
    }

    .prompt-category-card strong {
        font-size: 12px !important;
    }

    .prompt-why {
        padding: 42px 0;
    }

    .prompt-why-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 23px 12px;
    }

    .prompt-why-item > span {
        width: 58px;
        height: 58px;
    }

    .prompt-why-item strong { font-size: 12px; }
    .prompt-why-item small { font-size: 10px; }

    .prompt-featured {
        padding: 56px 0 54px !important;
    }

    .prompt-featured-heading .prompt-view-all {
        position: static;
        transform: none;
        margin: 20px auto 0;
        width: fit-content;
        display: flex;
    }

    .prompt-product-grid.product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 13px !important;
    }

    .prompt-product-grid .product-card:nth-child(n+5) {
        display: none !important;
    }

    .prompt-product-grid .product-card:nth-child(4) {
        display: flex !important;
    }

    .prompt-product-grid .product-image {
        padding: 10px;
    }

    .prompt-product-grid .product-card-body {
        padding: 12px !important;
    }

    .prompt-product-grid .product-card h3 {
        min-height: 40px;
        font-size: 13px !important;
    }

    .prompt-product-grid .product-cart-link {
        min-height: 40px !important;
        padding: 0 8px !important;
        font-size: 11px !important;
    }

    .prompt-newsletter {
        padding: 35px 18px 38px !important;
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .prompt-newsletter-art {
        display: none;
    }

    .prompt-newsletter-content {
        width: min(620px, 100%);
        margin: 0 auto;
    }

    .prompt-newsletter h2 {
        font-size: clamp(30px, 8.5vw, 42px) !important;
    }

    .prompt-newsletter-form {
        grid-template-columns: 38px minmax(0, 1fr) 112px !important;
    }

    .prompt-newsletter-form button {
        width: 112px !important;
        padding: 0 10px !important;
    }

    .prompt-footer-inner {
        padding: 38px 0 28px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 34px 28px !important;
    }
}

@media (max-width: 520px) {
    :root {
        --tks-prompt-container: calc(100% - 24px);
    }

    .announcement-inner span::after {
        font-size: 8px;
    }

    .header-main {
        grid-template-columns: 40px minmax(0, 1fr) auto !important;
        gap: 7px 8px !important;
    }

    .brand-logo .custom-logo-link,
    .brand-logo > a {
        max-width: 112px !important;
    }

    .brand-logo .custom-logo {
        max-width: 110px !important;
        max-height: 46px !important;
    }

    .header-actions { gap: 4px !important; }
    .header-action { width: 34px !important; min-width: 34px !important; }
    .header-actions .header-action:not(.cart-link):not(:nth-last-child(2)) { display: none !important; }

    .desktop-product-search {
        grid-template-columns: minmax(0, 1fr) 48px !important;
    }

    .desktop-product-search > button { width: 48px !important; }

    .prompt-hero-copy {
        padding-top: 35px;
    }

    .prompt-hero h1 {
        font-size: clamp(39px, 12.5vw, 57px) !important;
    }

    .prompt-hero .hero-description {
        font-size: 15px !important;
    }

    .prompt-hero-btn {
        min-width: 185px !important;
        min-height: 52px !important;
        font-size: 14px !important;
    }

    .prompt-hero-visual,
    .prompt-hero-visual img {
        min-height: 280px;
    }

    .prompt-hero-trust {
        width: calc(100% - 18px);
        padding: 10px 5px;
    }

    .prompt-hero-trust > div {
        padding: 3px 4px;
    }

    .prompt-trust-icon {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .prompt-hero-trust strong { font-size: 10px; }
    .prompt-hero-trust small { display: none; }

    .prompt-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 23px 15px;
    }

    .prompt-category-grid .prompt-category-card:last-child {
        grid-column: 1 / -1;
        width: 50%;
        justify-self: center;
    }

    .prompt-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prompt-why-grid .prompt-why-item:last-child {
        grid-column: 1 / -1;
        width: 50%;
        justify-self: center;
    }

    .prompt-product-grid .product-card-body {
        padding: 10px !important;
    }

    .prompt-product-grid .product-card-brand {
        font-size: 9px !important;
    }

    .prompt-product-grid .product-card h3 {
        font-size: 12px !important;
        line-height: 1.35 !important;
    }

    .prompt-product-grid .product-price {
        font-size: 12px !important;
    }

    .prompt-product-grid .product-cart-link svg {
        display: none;
    }

    .prompt-newsletter-form {
        height: auto;
        padding: 6px !important;
        grid-template-columns: 34px minmax(0, 1fr) !important;
        grid-template-rows: 44px 44px;
        border-radius: 14px !important;
    }

    .prompt-newsletter-form button {
        grid-column: 1 / -1;
        width: 100% !important;
        height: 44px !important;
        min-height: 44px !important;
        border-radius: 10px !important;
    }

    .prompt-footer-inner {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .prompt-footer .footer-brand,
    .prompt-footer .footer-column {
        text-align: center;
    }

    .prompt-footer .footer-logo,
    .prompt-footer .footer-socials,
    .prompt-payment-methods {
        justify-content: center;
    }

    .prompt-footer .footer-logo {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .prompt-category-media,
    .prompt-product-grid .product-card,
    .prompt-product-grid .product-image img,
    .prompt-hero-btn {
        transition: none !important;
    }
}
