@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,500;1,600&family=Montserrat:wght@400;500;600&display=swap');

:root {
    --primary-color: #c9a46a;
    --secondary-color: #2f2f2f;
    --primary-color-rgb: 201, 164, 106;
    --tp-theme-secondary: #2f2f2f;

    --blunova-charcoal: #2f2f2f;
    --blunova-gold: #c9a46a;
    --blunova-ivory: #f8f6f3;
    --blunova-soft-beige: #e8d8d3;
    --blunova-white: #ffffff;
    --blunova-muted: #786f69;
    --blunova-border: rgba(47, 47, 47, 0.14);
    --blunova-gold-border: rgba(201, 164, 106, 0.48);
    --blunova-shadow: 0 24px 70px rgba(47, 47, 47, 0.08);

    --footer-background-color: #f8f6f3;
    --footer-text-color: #2f2f2f;
    --footer-title-color: #2f2f2f;
    --footer-link-color: #2f2f2f;
    --footer-link-hover-color: #c9a46a;
    --footer-border-color: rgba(47, 47, 47, 0.14);
    --header-menu-text-hover-color: #c9a46a;
    --header-main-text-hover-color: #c9a46a;
    --header-sticky-background-color: rgba(248, 246, 243, 0.96);
    --header-sticky-text-color: #2f2f2f;
    --header-sticky-text-hover-color: #c9a46a;
}

html { scroll-behavior: smooth; }

body {
    color: var(--blunova-charcoal);
    background: var(--blunova-ivory);
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.005em;
}

body,
p,
span,
input,
textarea,
select,
button,
label,
li,
a { font-family: 'Montserrat', sans-serif; }

h1,
h2,
h3,
h4,
h5,
h6,
.tp-section-title,
.tp-page-title,
.tp-product-details-title,
.tp-product-title,
.tp-product-title-2,
.tp-product-title-3,
.tp-product-title-4 {
    color: var(--blunova-charcoal);
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700;
    letter-spacing: 0.005em;
}

a { color: inherit; transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease; }
a:hover { color: var(--blunova-gold); }
::selection { color: var(--blunova-white); background: var(--blunova-gold); }

.blunova-announcement {
    position: relative;
    z-index: 105;
    min-height: 34px;
    color: var(--blunova-white);
    background: var(--blunova-gold);
}

.blunova-announcement-content {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.17em;
    line-height: 1.3;
    text-transform: uppercase;
}

.blunova-site-header {
    position: relative;
    z-index: 104;
    border-bottom: 1px solid var(--blunova-border);
    background: rgba(248, 246, 243, 0.98);
}

.blunova-header-main {
    display: flex;
    min-height: 94px;
    align-items: center;
    background: var(--blunova-ivory);
}

.blunova-header-logo .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
}

.blunova-header-logo .logo img {
    width: auto !important;
    height: auto !important;
    max-width: 165px;
    max-height: 62px;
    object-fit: contain;
    filter: none !important;
    box-shadow: none !important;
}

.blunova-main-menu .blunova-nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.blunova-main-menu .blunova-nav-list > li { margin: 0 !important; }

.blunova-main-menu .blunova-nav-list > li > a {
    display: inline-flex;
    padding: 38px 0;
    color: var(--blunova-charcoal);
    font-family: 'Montserrat', sans-serif !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.blunova-main-menu .blunova-nav-list > li > a:hover { color: var(--blunova-gold); }

.blunova-header-actions {
    min-height: 94px;
    gap: 16px;
}

.blunova-header-icon,
.blunova-header-actions .tp-header-action-btn {
    position: relative;
    display: inline-flex;
    width: 25px;
    height: 38px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--blunova-charcoal);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.blunova-header-icon:hover,
.blunova-header-actions .tp-header-action-btn:hover {
    color: var(--blunova-gold);
    background: transparent;
}

.blunova-header-actions .tp-header-action { gap: 16px; }
.blunova-header-actions .tp-header-action-item { margin: 0 !important; }
.blunova-header-actions .tp-header-action-item-compare { display: none !important; }

.blunova-header-actions .tp-header-action-badge {
    top: 1px;
    right: -7px;
    display: flex;
    width: 15px;
    height: 15px;
    align-items: center;
    justify-content: center;
    color: var(--blunova-white);
    border: 1px solid var(--blunova-ivory);
    border-radius: 50%;
    background: var(--blunova-gold);
    font-size: 8px;
    font-weight: 600;
}

.blunova-sticky-header {
    border-bottom: 1px solid var(--blunova-border);
    background: rgba(248, 246, 243, 0.96) !important;
    box-shadow: 0 12px 38px rgba(47, 47, 47, 0.06);
    backdrop-filter: blur(18px);
}

.blunova-sticky-header .blunova-header-actions { min-height: 76px; }
.blunova-sticky-header .blunova-nav-list > li > a { padding-top: 29px; padding-bottom: 29px; }

.blunova-home-v2 { overflow: hidden; background: var(--blunova-ivory); }

.blunova-hero {
    position: relative;
    display: flex;
    min-height: 650px;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 24%, rgba(255,255,255,.94) 0 10%, transparent 36%),
        linear-gradient(122deg, #f8f6f3 0%, #f0e7e1 48%, #e8d8d3 100%);
}

.blunova-hero::before,
.blunova-hero::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.blunova-hero::before {
    top: -28%;
    right: 3%;
    width: 52%;
    height: 125%;
    border-radius: 48% 52% 34% 66%;
    background: linear-gradient(138deg, rgba(255,255,255,.8), rgba(255,255,255,.04) 52%, rgba(201,164,106,.08));
    filter: blur(2px);
    transform: rotate(16deg);
}

.blunova-hero::after {
    bottom: -46%;
    left: -12%;
    width: 62%;
    height: 92%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.82), rgba(232,216,211,.12) 62%, transparent 72%);
}

.blunova-silk {
    position: absolute;
    z-index: 0;
    width: 55%;
    height: 35%;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(255,255,255,.72), rgba(232,216,211,.03));
    filter: blur(.2px);
    transform: rotate(-12deg);
    pointer-events: none;
}

.blunova-silk-one { top: -12%; left: 19%; }
.blunova-silk-two { right: -20%; bottom: -10%; transform: rotate(18deg); }
.blunova-hero .container { position: relative; z-index: 2; }

.blunova-hero-copy { max-width: 500px; padding: 75px 0; }

.blunova-kicker,
.blunova-section-heading > span,
.blunova-footer-newsletter span {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--blunova-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.blunova-hero h1 {
    margin: 0 0 25px;
    color: var(--blunova-charcoal);
    font-size: clamp(56px, 5.8vw, 86px);
    font-weight: 700;
    line-height: .91;
    letter-spacing: -.025em;
}

.blunova-hero h1 em {
    display: block;
    color: var(--blunova-gold);
    font-weight: 500;
    line-height: 1.06;
}

.blunova-hero-copy > p {
    max-width: 410px;
    margin: 0 0 31px;
    color: #5f5955;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
}

.blunova-primary-button,
.blunova-outline-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 13px 29px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
}

.blunova-primary-button {
    color: var(--blunova-white) !important;
    border: 1px solid var(--blunova-gold);
    background: var(--blunova-gold);
}

.blunova-primary-button:hover {
    color: var(--blunova-white) !important;
    border-color: var(--blunova-charcoal);
    background: var(--blunova-charcoal);
    transform: translateY(-1px);
}

.blunova-hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 0;
    margin-top: 28px;
}

.blunova-hero-notes span {
    color: var(--blunova-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.blunova-hero-notes span:not(:last-child)::after {
    display: inline-block;
    width: 1px;
    height: 11px;
    margin: 0 14px;
    vertical-align: -2px;
    background: var(--blunova-gold-border);
    content: '';
}

.blunova-hero-visual { position: relative; min-height: 500px; }
.blunova-hero-product-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }

.blunova-gloss-stage {
    position: absolute;
    inset: 12px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(10px, 1.5vw, 22px);
    padding: 45px 20px 35px;
}

.blunova-gloss-stage::before {
    position: absolute;
    right: 3%;
    bottom: 10%;
    left: 3%;
    height: 18%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(47,47,47,.16), transparent 68%);
    filter: blur(13px);
    content: '';
}

.blunova-gloss-unit {
    position: relative;
    z-index: 2;
    width: clamp(70px, 8vw, 104px);
    transform: translateY(calc((var(--unit-index) - 2) * 3px));
}

.blunova-gloss-cap {
    position: relative;
    z-index: 3;
    display: block;
    width: 66%;
    height: 122px;
    margin: 0 auto -7px;
    border: 1px solid rgba(95,62,41,.26);
    border-radius: 10px 10px 5px 5px;
    background: linear-gradient(90deg, #7d4d31 0%, #d8a274 16%, #fff0db 43%, #b36e47 68%, #f1bd91 87%, #73452f 100%);
    box-shadow: inset 0 0 11px rgba(255,255,255,.48), 7px 10px 20px rgba(47,47,47,.12);
}

.blunova-gloss-bottle {
    position: relative;
    display: flex;
    width: 78%;
    height: 206px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 12px 12px 18px 18px;
    background: linear-gradient(90deg, rgba(255,255,255,.72), var(--shade, #bd6d70) 31%, var(--shade, #bd6d70) 72%, rgba(255,255,255,.72));
    box-shadow: inset 7px 0 14px rgba(255,255,255,.4), inset -7px 0 16px rgba(47,47,47,.11), 0 20px 35px rgba(47,47,47,.12);
}

.blunova-gloss-bottle::before {
    position: absolute;
    top: 5%;
    bottom: 7%;
    left: 13%;
    width: 10%;
    border-radius: 50%;
    background: rgba(255,255,255,.46);
    content: '';
}

.blunova-gloss-monogram {
    color: rgba(255,255,255,.78);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    letter-spacing: -.08em;
    text-shadow: 0 1px rgba(47,47,47,.1);
}

.blunova-gloss-unit small {
    display: block;
    min-height: 38px;
    margin-top: 12px;
    color: var(--blunova-charcoal);
    text-align: center;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.3;
    text-transform: uppercase;
}

.blunova-gloss-rose { --shade: #ad5561; }
.blunova-gloss-pink { --shade: #d59791; }
.blunova-gloss-clear { --shade: rgba(238,224,215,.35); }
.blunova-gloss-nude { --shade: #b98263; }
.blunova-gloss-mocha { --shade: #794535; }

.blunova-benefits { position: relative; z-index: 3; border-top: 1px solid rgba(255,255,255,.8); border-bottom: 1px solid var(--blunova-border); background: rgba(248,246,243,.94); }
.blunova-benefit-item { min-height: 150px; padding: 30px 24px 25px; text-align: center; border-right: 1px solid var(--blunova-border); }
.blunova-benefits [class*='col-']:last-child .blunova-benefit-item { border-right: 0; }
.blunova-benefit-item svg { width: 32px; height: 32px; margin-bottom: 12px; fill: none; stroke: var(--blunova-gold); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.blunova-benefit-item h3 { margin: 0 0 5px; font-family: 'Montserrat', sans-serif !important; font-size: 9px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.blunova-benefit-item p { margin: 0; color: var(--blunova-muted); font-size: 10px; font-weight: 500; }

.blunova-best-sellers { padding: 105px 0 110px; background: var(--blunova-ivory); }
.blunova-section-heading { max-width: 650px; margin: 0 auto 50px; }
.blunova-section-heading h2 { margin: 0 0 10px; font-size: clamp(44px, 4vw, 60px); line-height: 1; }
.blunova-section-heading p { margin: 0; color: var(--blunova-muted); font-size: 12px; line-height: 1.8; }

.blunova-products-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
.blunova-product-card { min-width: 0; }
.blunova-product-card-visual { position: relative; aspect-ratio: .86; overflow: hidden; border: 1px solid rgba(47,47,47,.06); background: linear-gradient(145deg, #f1e7e1, #faf8f5 64%); }
.blunova-product-card-visual > a { display: block; width: 100%; height: 100%; }
.blunova-real-product-image { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.blunova-product-card:hover .blunova-real-product-image { transform: scale(1.035); }

.blunova-cosmetic-mockup { position: relative; width: 100%; height: 100%; overflow: hidden; }
.blunova-cosmetic-swatch { position: absolute; right: -5%; bottom: 15%; width: 90%; height: 26%; border-radius: 60% 42% 55% 38%; background: linear-gradient(168deg, rgba(255,255,255,.48), var(--preview-shade, #ad5561) 18%, var(--preview-shade, #ad5561) 76%, rgba(74,37,36,.25)); box-shadow: inset 0 7px 11px rgba(255,255,255,.28), 0 16px 25px rgba(47,47,47,.08); transform: rotate(-8deg); }
.blunova-cosmetic-tube { position: absolute; top: 16%; left: 50%; width: 56px; height: 66%; border: 1px solid rgba(255,255,255,.75); border-radius: 9px 9px 13px 13px; background: linear-gradient(90deg, rgba(255,255,255,.72), var(--preview-shade, #ad5561) 30%, var(--preview-shade, #ad5561) 72%, rgba(255,255,255,.64)); box-shadow: inset 5px 0 9px rgba(255,255,255,.36), inset -6px 0 10px rgba(47,47,47,.1), 0 18px 26px rgba(47,47,47,.14); transform: translateX(-50%) rotate(-2deg); }
.blunova-cosmetic-cap { position: absolute; top: -23%; left: 4%; width: 92%; height: 31%; border-radius: 7px 7px 3px 3px; background: linear-gradient(90deg, #815136, #e5b68d 25%, #fff0da 46%, #a6603c 70%, #d8a47c); box-shadow: 0 6px 12px rgba(47,47,47,.14); }
.blunova-cosmetic-label { position: absolute; top: 41%; left: 50%; color: rgba(255,255,255,.78); font-family: 'Cormorant Garamond', serif; font-size: 18px; transform: translate(-50%,-50%); }
.blunova-preview-rose { --preview-shade: #ad5561; }
.blunova-preview-pink { --preview-shade: #d59791; }
.blunova-preview-clear { --preview-shade: rgba(226,211,203,.45); }
.blunova-preview-nude { --preview-shade: #b98263; }
.blunova-preview-mocha { --preview-shade: #794535; }

.blunova-card-wishlist { position: absolute; top: 13px; right: 13px; display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; color: var(--blunova-charcoal); border: 1px solid var(--blunova-border); border-radius: 50%; background: rgba(248,246,243,.9); }
.blunova-card-wishlist:hover,
.blunova-card-wishlist.active { color: var(--blunova-white); border-color: var(--blunova-gold); background: var(--blunova-gold); }

.blunova-product-card-content { padding: 18px 5px 0; text-align: center; }
.blunova-product-eyebrow { display: block; margin-bottom: 7px; color: var(--blunova-gold); font-size: 8px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.blunova-product-card h3 { min-height: 42px; margin: 0 0 7px; font-size: 20px; font-weight: 600; line-height: 1.08; }
.blunova-product-card h3 a { font-family: 'Cormorant Garamond', serif; }
.blunova-product-card-price { min-height: 25px; margin-bottom: 13px; }
.blunova-product-card-price .tp-product-price { color: var(--blunova-charcoal) !important; font-size: 11px !important; font-weight: 600; }
.blunova-product-card-price .old-price { color: var(--blunova-muted) !important; }
.blunova-outline-button { width: 100%; color: var(--blunova-charcoal) !important; border: 1px solid var(--blunova-gold-border); background: transparent; }
.blunova-outline-button:hover { color: var(--blunova-white) !important; border-color: var(--blunova-gold); background: var(--blunova-gold); }
.blunova-preview-card .blunova-outline-button { margin-top: 8px; }
.blunova-section-action { margin-top: 43px; }
.blunova-text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid var(--blunova-gold); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }

.blunova-story { background: var(--blunova-soft-beige); }
.blunova-story-image,
.blunova-story-copy { min-height: 570px; }
.blunova-story-image { position: relative; overflow: hidden; background: linear-gradient(140deg, #b97859, #e1b598 45%, #f2d5c2); }
.blunova-story-real-image { width: 100%; height: 100%; min-height: 570px; object-fit: cover; }
.blunova-story-art { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 28% 31%, rgba(255,255,255,.36), transparent 34%), linear-gradient(145deg, #a9674c, #dcae92 48%, #efd2bf); }
.blunova-story-art::before { position: absolute; top: 8%; left: 8%; color: rgba(255,255,255,.72); font-family: 'Cormorant Garamond', serif; font-size: clamp(64px, 8vw, 120px); letter-spacing: -.08em; content: 'BN'; }
.blunova-story-glow { position: absolute; right: -15%; bottom: -18%; width: 80%; height: 80%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.48), transparent 66%); }
.blunova-story-lips { position: absolute; top: 48%; left: 7%; width: 76%; height: 25%; border-radius: 55% 47% 62% 40%; background: linear-gradient(170deg, rgba(255,255,255,.48), #bd6e68 22%, #8f4e49 78%); box-shadow: inset 0 12px 20px rgba(255,255,255,.25), 0 24px 45px rgba(73,39,34,.19); transform: rotate(8deg); }
.blunova-story-wand { position: absolute; right: 13%; bottom: 1%; width: 36px; height: 67%; border-radius: 18px; background: linear-gradient(90deg, #70442d, #e7b58d 25%, #fff0db 48%, #9a5938 75%, #d49b72); box-shadow: 0 20px 35px rgba(47,47,47,.2); transform: rotate(18deg); }
.blunova-story-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 85px clamp(45px, 8vw, 125px); background: linear-gradient(132deg, var(--blunova-soft-beige), #f4ece7); }
.blunova-story-copy h2 { margin: -5px 0 23px; font-size: clamp(54px, 5.5vw, 78px); font-weight: 500; line-height: .95; }
.blunova-story-copy h2 em { color: var(--blunova-gold); font-weight: 500; }
.blunova-story-copy p { max-width: 535px; margin: 0 0 30px; color: #5e5651; font-size: 13px; line-height: 1.9; }

.blunova-trust { border-top: 1px solid rgba(255,255,255,.8); border-bottom: 1px solid var(--blunova-border); background: var(--blunova-ivory); }
.blunova-trust-item { display: flex; min-height: 112px; align-items: center; gap: 15px; padding: 25px 22px; border-right: 1px solid var(--blunova-border); }
.blunova-trust [class*='col-']:last-child .blunova-trust-item { border-right: 0; }
.blunova-trust-item > span { color: var(--blunova-gold); font-family: 'Cormorant Garamond', serif; font-size: 25px; }
.blunova-trust-item strong,
.blunova-trust-item small { display: block; }
.blunova-trust-item strong { margin-bottom: 3px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.blunova-trust-item small { color: var(--blunova-muted); font-size: 9px; }

.blunova-footer { color: var(--blunova-charcoal); background: var(--blunova-ivory); }
.blunova-footer-newsletter { padding: 54px 0; color: var(--blunova-white); background: var(--blunova-charcoal); }
.blunova-footer-newsletter span { margin-bottom: 8px; color: var(--blunova-gold); }
.blunova-footer-newsletter h2 { max-width: 610px; margin: 0; color: var(--blunova-white); font-size: clamp(31px, 3vw, 44px); line-height: 1.05; }
.blunova-newsletter-form { position: relative; display: flex; max-width: 560px; margin-left: auto; }
.blunova-newsletter-form input { width: 100%; min-height: 54px; padding: 0 120px 0 20px; color: var(--blunova-charcoal); border: 1px solid rgba(255,255,255,.18) !important; border-radius: 0 !important; background: var(--blunova-white); font-size: 11px; }
.blunova-newsletter-form button { position: absolute; top: 0; right: 0; min-width: 105px; height: 54px; color: var(--blunova-white); border: 0; background: var(--blunova-gold); font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.blunova-newsletter-form button:hover { background: #ad8750; }
.blunova-newsletter-form .newsletter-message { position: absolute; top: calc(100% + 7px); left: 0; font-size: 10px; }

.blunova-footer-main { padding: 78px 0 63px; border-bottom: 1px solid var(--blunova-border); }
.blunova-footer-logo { display: inline-flex; padding: 10px; }
.blunova-footer-logo img { width: auto; height: auto; max-width: 185px; max-height: 72px; object-fit: contain; }
.blunova-footer-brand > p { max-width: 410px; margin: 20px 0 25px; color: var(--blunova-muted); font-size: 11px; line-height: 1.9; }
.blunova-footer-social { display: flex; gap: 9px; }
.blunova-footer-social a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; color: var(--blunova-charcoal); border: 1px solid var(--blunova-border); border-radius: 50%; background: transparent; }
.blunova-footer-social a:hover { color: var(--blunova-white); border-color: var(--blunova-gold); background: var(--blunova-gold); }
.blunova-footer-social svg { width: 17px; height: 17px; }
.blunova-footer-column { display: flex; flex-direction: column; gap: 12px; }
.blunova-footer-column h3 { margin: 0 0 7px; font-size: 23px; font-weight: 600; }
.blunova-footer-column a { color: var(--blunova-muted); font-size: 10px; font-weight: 500; }
.blunova-footer-column a:hover { color: var(--blunova-gold); }
.blunova-footer-bottom { padding: 19px 0; }
.blunova-footer-bottom p { margin: 0; color: var(--blunova-muted); font-size: 9px; letter-spacing: .07em; text-transform: uppercase; }

.tp-breadcrumb__area,
.tp-breadcrumb-area { border-bottom: 1px solid var(--blunova-border); background: var(--blunova-soft-beige); }
.tp-page-title,
.tp-breadcrumb__title,
.tp-breadcrumb-title { font-weight: 700; }

.tp-btn,
.tp-btn-2,
.tp-btn-3,
.tp-btn-border,
.tp-btn-border-2,
.tp-shop-widget-btn,
.tp-product-details-add-to-cart-btn,
.tp-product-list-add-to-cart-btn,
.tp-cart-checkout-btn,
.tp-login-btn,
.tp-register-btn,
button[type='submit'].btn-primary,
a.btn-primary {
    border: 1px solid var(--blunova-gold) !important;
    border-radius: 0 !important;
    background: var(--blunova-gold) !important;
    box-shadow: none !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.tp-btn:hover,
.tp-btn-2:hover,
.tp-btn-3:hover,
.tp-btn-border:hover,
.tp-btn-border-2:hover,
.tp-shop-widget-btn:hover,
.tp-product-details-add-to-cart-btn:hover,
.tp-product-list-add-to-cart-btn:hover,
.tp-cart-checkout-btn:hover,
.tp-login-btn:hover,
.tp-register-btn:hover,
button[type='submit'].btn-primary:hover,
a.btn-primary:hover { border-color: var(--blunova-charcoal) !important; background: var(--blunova-charcoal) !important; }

.tp-product-thumb,
.tp-product-thumb-2,
.tp-product-thumb-3,
.tp-product-thumb-4,
.tp-product-thumb-5 { overflow: hidden; border: 1px solid rgba(47,47,47,.06); border-radius: 0 !important; background: linear-gradient(145deg, #f1e7e1, #faf8f5 65%) !important; }

.tp-product-title,
.tp-product-title-2,
.tp-product-title-3,
.tp-product-title-4 { font-weight: 600; }

.tp-product-price,
.tp-product-price-2,
.tp-product-price-3,
.tp-product-price-4,
.tp-product-price-5 { color: var(--blunova-charcoal) !important; font-family: 'Montserrat', sans-serif !important; font-weight: 600; }

input:not([type='checkbox']):not([type='radio']),
textarea,
select,
.form-control,
.form-select { color: var(--blunova-charcoal); border: 1px solid var(--blunova-border) !important; border-radius: 0 !important; background: var(--blunova-white); box-shadow: none !important; font-family: 'Montserrat', sans-serif !important; }

input:focus,
textarea:focus,
select:focus,
.form-control:focus,
.form-select:focus { border-color: var(--blunova-gold) !important; box-shadow: 0 0 0 3px rgba(201,164,106,.1) !important; }

.offcanvas__wrapper,
.cartmini__wrapper { background: var(--blunova-ivory); }
.offcanvas__category { display: none !important; }
.tp-main-menu-mobile .blunova-nav-list { display: block; margin: 0; padding: 0; list-style: none; }
.tp-main-menu-mobile .blunova-nav-list li a { display: block; padding: 12px 0; color: var(--blunova-charcoal); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.tp-mobile-menu { border-top: 1px solid var(--blunova-border); background: rgba(248,246,243,.96); box-shadow: 0 -8px 30px rgba(47,47,47,.07); backdrop-filter: blur(16px); }
.sale-popup-section { display: none !important; }

@media (max-width: 1199px) {
    .blunova-main-menu .blunova-nav-list { gap: 23px; }
    .blunova-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .blunova-products-grid > :nth-child(5) { display: none; }
}

@media (max-width: 991px) {
    .blunova-header-main { min-height: 78px; }
    .blunova-header-actions { min-height: 78px; gap: 12px; }
    .blunova-header-actions .tp-header-action { gap: 12px; }
    .blunova-header-logo .logo { justify-content: flex-start; padding-left: 0; }
    .blunova-header-logo .logo img { max-width: 148px; max-height: 55px; }
    .blunova-header-actions .tp-header-action-item-wishlist { display: none !important; }
    .blunova-hero { min-height: auto; }
    .blunova-hero-copy { max-width: 650px; padding: 80px 0 0; text-align: center; margin: 0 auto; }
    .blunova-hero-copy > p { margin-right: auto; margin-left: auto; }
    .blunova-hero-notes { justify-content: center; }
    .blunova-hero-visual { min-height: 480px; }
    .blunova-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .blunova-products-grid > :nth-child(4) { display: none; }
    .blunova-story-image,
    .blunova-story-copy { min-height: 500px; }
    .blunova-newsletter-form { margin-left: 0; }
}

@media (max-width: 767px) {
    .blunova-hero h1 { font-size: 58px; }
    .blunova-gloss-stage { gap: 7px; padding-right: 0; padding-left: 0; }
    .blunova-gloss-unit { width: 78px; }
    .blunova-gloss-cap { height: 95px; }
    .blunova-gloss-bottle { height: 170px; }
    .blunova-benefit-item { min-height: 142px; border-bottom: 1px solid var(--blunova-border); }
    .blunova-benefits [class*='col-']:nth-child(2n) .blunova-benefit-item { border-right: 0; }
    .blunova-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blunova-products-grid > :nth-child(4) { display: block; }
    .blunova-products-grid > :nth-child(5) { display: none; }
    .blunova-story-copy { padding: 65px 35px; }
    .blunova-trust [class*='col-']:nth-child(2n) .blunova-trust-item { border-right: 0; }
    .blunova-trust-item { border-bottom: 1px solid var(--blunova-border); }
}

@media (max-width: 575px) {
    .blunova-announcement-content { min-height: 30px; font-size: 8px; letter-spacing: .1em; }
    .blunova-header-main { min-height: 70px; }
    .blunova-header-actions { min-height: 70px; gap: 9px; }
    .blunova-header-actions .tp-header-action { gap: 9px; }
    .blunova-header-logo .logo img { max-width: 124px; max-height: 46px; }
    .blunova-header-icon,
    .blunova-header-actions .tp-header-action-btn { width: 22px; }
    .blunova-header-icon svg,
    .blunova-header-actions svg { width: 19px; height: 19px; }
    .blunova-hero-copy { padding-top: 62px; }
    .blunova-hero h1 { font-size: 48px; }
    .blunova-hero-copy > p { font-size: 12px; }
    .blunova-hero-visual { min-height: 365px; }
    .blunova-gloss-stage { transform: scale(.84); transform-origin: center bottom; }
    .blunova-best-sellers { padding: 78px 0 82px; }
    .blunova-products-grid { gap: 12px; }
    .blunova-product-card-content { padding-top: 13px; }
    .blunova-product-card h3 { min-height: 37px; font-size: 17px; }
    .blunova-outline-button { min-height: 40px; padding: 10px 8px; font-size: 8px; }
    .blunova-story-image,
    .blunova-story-real-image { min-height: 390px; }
    .blunova-story-copy { min-height: 450px; padding: 58px 27px; }
    .blunova-story-copy h2 { font-size: 53px; }
    .blunova-footer-newsletter { padding: 45px 0 55px; }
    .blunova-newsletter-form input { padding-right: 92px; }
    .blunova-newsletter-form button { min-width: 80px; }
    .blunova-footer-main { padding: 60px 0 50px; }
}

/* ==========================================================
   BLU NOVA BEAUTY — PRODUCTION POLISH PHASE 3B
   ========================================================== */

html {
    scroll-padding-top: 165px;
}

#best-sellers,
.blunova-section-heading {
    scroll-margin-top: 165px;
}

.blunova-best-sellers {
    position: relative;
}

/* Larger branding while preserving the official proportions. */

.blunova-header-logo .logo img,
.blunova-sticky-header .blunova-header-logo .logo img {
    width: 156px !important;
    height: auto !important;
    max-width: 156px !important;
    max-height: 58px !important;
    object-fit: contain !important;
}

.offcanvas__logo img,
.blunova-footer-logo img {
    width: 145px !important;
    height: auto !important;
    max-width: 145px !important;
}

/* Hide inherited Shofy demo information from the mobile drawer. */

.offcanvas__btn,
.offcanvas__currency-wrapper {
    display: none !important;
}

.offcanvas__bottom,
.offcanvas__footer {
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

/*
 * Hide generic demo social profiles until the real Blu Nova
 * Instagram, Facebook, Pinterest and TikTok URLs are supplied.
 */

.blunova-footer-social {
    display: none !important;
}

/* Premium navigation interaction. */

.blunova-main-menu .blunova-nav-list a {
    position: relative;
}

.blunova-main-menu .blunova-nav-list a::after {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    height: 1px;
    background: var(--blunova-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
    content: '';
}

.blunova-main-menu .blunova-nav-list a:hover::after,
.blunova-main-menu .blunova-nav-list a:focus-visible::after {
    transform: scaleX(1);
}

/* Product and editorial refinements. */

.blunova-product-card {
    transition: transform 220ms ease;
}

.blunova-product-card:hover {
    transform: translateY(-3px);
}

.blunova-product-card-visual {
    box-shadow: 0 18px 45px rgba(47, 47, 47, 0.035);
}

.blunova-story-copy > p {
    max-width: 570px;
}

.blunova-footer-brand {
    max-width: 470px;
}

/* Tablet and compact desktop. */

@media (max-width: 1199px) {
    html {
        scroll-padding-top: 145px;
    }

    #best-sellers,
    .blunova-section-heading {
        scroll-margin-top: 145px;
    }

    .blunova-header-logo .logo img,
    .blunova-sticky-header .blunova-header-logo .logo img {
        width: 145px !important;
        max-width: 145px !important;
    }
}

/* Mobile navigation and footer safety. */

@media (max-width: 991px) {
    html {
        scroll-padding-top: 96px;
    }

    #best-sellers,
    .blunova-section-heading {
        scroll-margin-top: 96px;
    }

    .blunova-header-logo .logo img,
    .blunova-sticky-header .blunova-header-logo .logo img {
        width: 138px !important;
        max-width: 138px !important;
        max-height: 52px !important;
    }

    .offcanvas__top {
        margin-bottom: 32px !important;
    }

    .offcanvas__content {
        padding-bottom: 25px;
    }

    .tp-main-menu-mobile .blunova-nav-list li a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(47, 47, 47, 0.08);
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .blunova-footer-bottom {
        padding-bottom: 82px;
    }
}

/* Phone homepage layout. */

@media (max-width: 767px) {
    .blunova-hero {
        overflow: hidden;
    }

    .blunova-hero .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .blunova-hero-copy {
        max-width: none !important;
        margin: 0 !important;
        padding-top: 58px !important;
        text-align: left !important;
    }

    .blunova-hero-copy > p {
        max-width: 470px;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .blunova-hero-notes {
        justify-content: flex-start !important;
    }

    .blunova-hero-visual {
        min-height: 400px !important;
        margin-top: -12px;
    }

    .blunova-gloss-stage {
        left: -5%;
        width: 110%;
        padding-right: 0;
        padding-left: 0;
        transform: scale(0.82);
        transform-origin: center bottom;
    }

    .blunova-benefit-item {
        padding-right: 16px;
        padding-left: 16px;
    }

    .blunova-story-copy {
        text-align: left;
    }

    .blunova-footer-newsletter .row {
        row-gap: 28px;
    }

    .blunova-newsletter-form {
        width: 100%;
        max-width: none;
    }

    .blunova-footer-main .row {
        row-gap: 38px;
    }
}

@media (max-width: 575px) {
    .blunova-announcement-content {
        padding-right: 10px;
        padding-left: 10px;
    }

    .blunova-header-logo .logo img,
    .blunova-sticky-header .blunova-header-logo .logo img {
        width: 122px !important;
        max-width: 122px !important;
        max-height: 46px !important;
    }

    .blunova-hero-copy {
        padding-top: 50px !important;
    }

    .blunova-hero h1 {
        font-size: clamp(45px, 14vw, 56px) !important;
        line-height: 0.95;
    }

    .blunova-hero-copy > p {
        font-size: 12px !important;
        line-height: 1.75;
    }

    .blunova-primary-button {
        min-height: 44px;
        padding: 12px 24px;
    }

    .blunova-hero-visual {
        min-height: 335px !important;
    }

    .blunova-gloss-stage {
        left: -12%;
        width: 124%;
        transform: scale(0.72) !important;
    }

    .blunova-benefit-item {
        min-height: 138px;
        padding: 25px 12px 22px;
    }

    .blunova-benefit-item svg {
        width: 29px;
        height: 29px;
    }

    .blunova-benefit-item h3 {
        font-size: 8px;
        letter-spacing: 0.085em;
    }

    .blunova-benefit-item p {
        font-size: 9px;
    }

    .blunova-best-sellers {
        padding-top: 75px;
        padding-bottom: 82px;
    }

    .blunova-section-heading {
        margin-bottom: 35px;
    }

    .blunova-section-heading h2 {
        font-size: 44px;
    }

    .blunova-products-grid {
        gap: 22px 11px !important;
    }

    .blunova-product-card h3 {
        min-height: auto !important;
        font-size: 17px !important;
    }

    .blunova-outline-button {
        min-height: 40px;
        padding-right: 7px;
        padding-left: 7px;
        font-size: 7px !important;
        letter-spacing: 0.09em;
    }

    .blunova-story-copy {
        min-height: 420px;
        padding: 52px 25px;
    }

    .blunova-story-copy h2 {
        font-size: 49px;
    }

    .blunova-footer-newsletter h2 {
        font-size: 38px;
        line-height: 1.05;
    }

    .blunova-newsletter-form {
        display: flex;
        min-height: 52px;
    }

    .blunova-newsletter-form input {
        min-width: 0;
        padding-right: 15px !important;
        padding-left: 15px;
    }

    .blunova-newsletter-form button {
        position: static !important;
        min-width: 79px !important;
        flex: 0 0 79px;
    }

    .blunova-footer-main {
        padding-top: 55px;
    }

    .blunova-footer-column h3 {
        font-size: 21px;
    }
}

/* BLUNOVA_PRODUCT_IMAGE_FILL_PHASE4C
   Fill portrait product cards without top/bottom blank bands.
*/

.blunova-best-sellers .blunova-product-card-visual {
    padding: 0 !important;
}

.blunova-best-sellers .blunova-real-product-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* ==========================================================
   BLUNOVA_PRODUCT_IMAGE_WRAPPER_FILL_V1

   RvMedia may place the image inside a picture or lazy-load
   wrapper. Force the real image to fill the complete portrait
   product-card area.
   ========================================================== */

.blunova-best-sellers .blunova-product-card-visual > a {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

.blunova-best-sellers .blunova-product-card-visual > a > picture,
.blunova-best-sellers .blunova-product-card-visual > a > figure,
.blunova-best-sellers .blunova-product-card-visual > a > span {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.blunova-best-sellers .blunova-real-product-image {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
}
