/* ====================================================
   ROOT TOKENS
==================================================== */
:root {
    --c-navbar: #0d0c0c;
    /* navbar bg */
    --c-hero-end: #191616;
    /* hero fades to this at bottom */
    --c-section: #191616;
    /* contact section bg — same warm dark */
    --c-footer: #ffffff;
    --c-accent: #4BB5EE;
    --c-accent-dk: #3498DB;
    --c-white: #ffffff;
    --c-muted: rgba(255, 255, 255, 0.55);
    --c-border: rgba(255, 255, 255, 0.22);
    --c-input: rgba(255, 255, 255, 0.04);
    --f-opensans: "Open Sans", sans-serif;
    --f-playfair: "Playfair Display SC", serif;
    --ease: 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* ====================================================
   BASE
==================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #221f1f;
    color: var(--c-white);
    font-family: var(--f-opensans);
    font-weight: 300;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main-middle-content ul li, .main-middle-content ol li,
.main-middle-content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}
img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}
.main-middle-content {
padding-top: 150px;
padding-bottom: 50px;
flex: 1;
}

/* ====================================================
   ANIMATIONS
==================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -250% center;
    }

    100% {
        background-position: 250% center;
    }
}

@keyframes floatFlower {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(3.5deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(41, 171, 226, .45);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(41, 171, 226, 0);
    }
}

/* ====================================================
   SCROLL-REVEAL
==================================================== */
.sr {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.sr.on {
    opacity: 1;
    transform: translateY(0);
}

.sl {
    opacity: 0;
    transform: translateX(-38px);
    transition: opacity .75s ease, transform .75s ease;
}

.sl.on {
    opacity: 1;
    transform: translateX(0);
}

.sr2 {
    opacity: 0;
    transform: translateX(38px);
    transition: opacity .75s ease, transform .75s ease;
}

.sr2.on {
    opacity: 1;
    transform: translateX(0);
}

.d1 {
    transition-delay: .10s;
}

.d2 {
    transition-delay: .20s;
}

.d3 {
    transition-delay: .30s;
}

.d4 {
    transition-delay: .40s;
}

.d5 {
    transition-delay: .50s;
}

/* ====================================================
   NAVBAR
==================================================== */
.site-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn .5s ease both;
}

.site-nav.scrolled {
    box-shadow: 0 4px 28px rgba(0, 0, 0, .65);
    background: #221f1f;
}

/* 3-column grid: fixed left/right, auto center */
.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 90px;
    max-width: 100%;
}

/* ── Menu button ── */
.btn-menu {
    font-family: var(--f-opensans);
    font-size: 16px;
    letter-spacing: 40%;
    color: rgb(255, 255, 255);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color var(--ease);
    padding: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-menu:hover {
    color: var(--c-accent);
}

.hb {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hb s {
    display: block;
    height: 1.5px;
    background: currentColor;
    transition: all var(--ease);
    transform-origin: left center;
}

.btn-menu:hover .hb s:nth-child(1) {
    transform: rotate(42deg);
}

.btn-menu:hover .hb s:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.btn-menu:hover .hb s:nth-child(3) {
    transform: rotate(-42deg);
}

/* ── Brand ── */
.nav-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-brand img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: transform var(--ease), filter var(--ease);
}

.nav-brand img:hover {
    transform: scale(1.05);
    filter: brightness(1.12);
}

/* ── Shop now ── */
.nav-end {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
}

.lnk-shop {
    font-family: var(--f-opensans);
    font-size: 16px;
    letter-spacing: 40%;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    position: relative;
    transition: color var(--ease);
}

.lnk-shop::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: width var(--ease);
}

.lnk-shop:hover {
    color: var(--c-accent);
}

.lnk-shop:hover::after {
    width: 100%;
}

/* ====================================================
   SLIDE-IN SIDE MENU
==================================================== */

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ── Overlay ── */
.side-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.menu-open .side-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* ── Side panel ── */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #0d0c0c;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

body.menu-open .side-menu {
    transform: translateX(0);
}

/* ── Panel header (logo + close) ── */
.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.side-menu-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}

.side-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.side-menu-close:hover {
    background: rgba(75, 181, 238, 0.18);
    border-color: var(--c-accent);
    transform: rotate(90deg);
}

.close-icon {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-family: var(--f-opensans);
    font-weight: 300;
}

/* ── Navigation list ── */
.side-menu-nav {
    list-style: none;
    padding: 24px 0;
    margin: 0;
    flex: 1;
}

.side-menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.side-menu-item:first-child {
    border-top: none;
}

.side-menu-link {
    display: flex;
    align-items: center;
    padding: 18px 28px;
    font-family: var(--f-opensans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.side-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--c-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.side-menu-link:hover {
    color: var(--c-white);
    padding-left: 36px;
}

.side-menu-link:hover::before {
    transform: scaleY(1);
}

/* ── Panel footer (Shop button) ── */
.side-menu-footer {
    padding: 24px 28px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.side-menu-shop-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--c-accent);
    color: #fff;
    font-family: var(--f-opensans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.side-menu-shop-btn:hover {
    background: var(--c-accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(75, 181, 238, 0.40);
    color: #fff;
}

/* ── Nav link staggered entrance animation ── */
@keyframes menuItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body.menu-open .side-menu-item:nth-child(1) {
    animation: menuItemSlideIn 0.35s ease 0.15s both;
}

body.menu-open .side-menu-item:nth-child(2) {
    animation: menuItemSlideIn 0.35s ease 0.22s both;
}

body.menu-open .side-menu-item:nth-child(3) {
    animation: menuItemSlideIn 0.35s ease 0.29s both;
}

body.menu-open .side-menu-item:nth-child(4) {
    animation: menuItemSlideIn 0.35s ease 0.36s both;
}

body.menu-open .side-menu-footer {
    animation: menuItemSlideIn 0.35s ease 0.42s both;
}

/* ====================================================
   HERO BANNER
==================================================== */
.hero {
    position: relative;
    min-height: 600px;
    background: url('../images/Frame 5.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
}

/* Left-to-right dim so text is readable over the bokeh image */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(5, 4, 4, 0.55) 0%,
            rgba(5, 4, 4, 0.28) 40%,
            rgba(5, 4, 4, 0.04) 100%);
    z-index: 1;
}

/* Bottom fade: transitions hero into the contact section colour */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    background: linear-gradient(180deg, rgba(34, 31, 31, 0) 0%, #221F1F 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-body {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

/* Shimmer title */
.hero-title {
    font-family: var(--f-playfair);
    font-size: 93.51px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: 16px;
    background: linear-gradient(90deg,
            #fff 0%, #fff 28%, var(--c-accent) 50%, #fff 72%, #fff 100%);
    background-size: 260% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 63px;
    animation: fadeUp .9s ease both, shimmer 3.2s linear 1s 1 both;
}

.hero-crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-opensans);
    font-size: 16px;
    letter-spacing: 40%;
    color: rgba(255, 255, 255, 1);
    animation: fadeUp .9s ease .22s both;
    font-weight: 700;
}

.hero-crumb a {
    color: rgba(255, 255, 255, .70);
    transition: color var(--ease);
}

.hero-crumb a:hover {
    color: var(--c-accent);
}

.hero-crumb .sep {
    color: rgba(255, 255, 255, .40);
}

/* Floating flower */
.hero-flower {
    position: absolute;
    right: 0;
    top: 150px;
    height: 100%;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    object-position: top right;
    opacity: 0.82;
    z-index: 2;
    animation: floatFlower 7s ease-in-out infinite, fadeIn 1s ease .3s both;
    pointer-events: none;
}

/* ====================================================
   CONTACT SECTION
==================================================== */
.contact-sec {
    background: rgba(34, 31, 31, 1);
    padding: 80px 0 95px;
}

/* ── Left image box ── */
.img-col {
    position: relative;
}

.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    height: 100%;
    min-height: 390px;
}

.img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 171, 226, .14) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--ease);
    z-index: 1;
}

.img-box:hover::after {
    opacity: 1;
}

.contact-photo {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: center 18%;
    filter: brightness(.96) contrast(1.04) saturate(1.06);
    transition: transform .6s ease, filter .6s ease;
}

.img-box:hover .contact-photo {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.06) saturate(1.12);
}

/* ── Form column ── */
.form-col {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

/* ── Individual field wrapper ── */
.field {
    position: relative;
    margin-bottom: 18px;
}

/* Animated accent underline on focus */
.field::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--c-accent);
    transition: width .4s ease;
    pointer-events: none;
    z-index: 1;
}

.field:focus-within::after {
    width: 100%;
}

/* ── Text inputs ── */
.f-input {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid white;
    border-radius: 0;
    color: var(--c-white);
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 400;
    padding: 30px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color var(--ease),
}

::placeholder {
    color: white !important;
}

.f-input::placeholder {
    color: rgba(255, 255, 255, .40);
}

.f-input:focus {
    border-color: var(--c-accent);
    background: rgba(41, 171, 226, .06);
    box-shadow: 0 0 0 2px rgba(41, 171, 226, .14);
}

/* ── Textarea ── */
.f-textarea {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid white;
    border-radius: 0;
    color: var(--c-white);
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 400;
    padding: 30px;
    min-height: 120px;
    resize: none;
    outline: none;
    transition: border-color var(--ease),
}

.f-textarea::placeholder {
    color: rgba(255, 255, 255, .40);
}

.f-textarea:focus {
    border-color: var(--c-accent);
    background: rgba(41, 171, 226, .06);
    box-shadow: 0 0 0 2px rgba(41, 171, 226, .14);
}

/* ── Submit button ── */
.btn-submit {
    display: inline-block;
    background: var(--c-accent);
    color: #fff;
    font-family: var(--f-opensans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 40%;
    text-transform: uppercase;
    border: 1px solid var(--c-accent);
    padding: 30px 60px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
    animation: glowPulse 3s ease-in-out 3s infinite;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .55s ease, height .55s ease;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    background: var(--c-accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(41, 171, 226, .45);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ====================================================
   FOOTER
==================================================== */
.site-footer {
    background: #fff;
    color: #333;
}

.footer-main {
    padding: 50px 0 38px;
}

.footer-logo {
    display: block;
    max-height: 62px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transition: transform var(--ease);
    animation: fadeIn .8s ease .15s both;
}

.footer-logo:hover {
    transform: scale(1.03);
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.f-links li {
    margin-bottom: 0px;
}

.f-links li a {
    font-family: var(--f-opensans);
    font-size: 18px;
    color: rgb(34, 31, 31);
    transition: color var(--ease), letter-spacing var(--ease);
    font-weight: 400;
    line-height: 40px;
}

.f-links li a:hover {
    color: var(--c-accent);
    letter-spacing: .02em;
}

/* Bottom bar */
.footer-bar {
    border-bottom: 4px solid var(--c-accent);
    padding: 42px 15px 94px 15px;
}

.f-copy {
    font-family: var(--f-opensans);
    font-size: 16px;
    color: rgb(34, 31, 31);
    font-weight: 400;
}

.f-policies {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.f-policies a {
    font-family: var(--f-opensans);
    font-size: 16px;
    color: rgb(34, 31, 31);
    font-weight: 400;
    transition: color var(--ease);
}

.f-policies a:hover {
    color: var(--c-accent);
}

/* ====================================================
   RESPONSIVE — shared (hero, contact, footer, nav)
==================================================== */

/* ── 1200px: small laptops ── */
@media (max-width: 1199.98px) {
    .nav-wrap {
        padding: 0 1.5rem;
    }
}

/* ── 992px: tablets ── */
@media (max-width: 991.98px) {
    .hero-flower {
        max-width: 200px;
        opacity: .6;
    }

    .img-box {
        min-height: 320px;
    }

    .contact-photo {
        min-height: 320px;
    }

    /* contact form col: remove desktop offset on tablet */
    .form-col.col-md-5.offset-1,
    .col-md-5.offset-1.form-col {
        margin-left: 0 !important;
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/* ── 768px: mobile landscape ── */
@media (max-width: 767.98px) {

    /* HEADER — slim, solid bg on mobile */
    .site-nav {
        background: #0d0c0c !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-wrap {
        grid-template-columns: auto 1fr auto;
        min-height: 64px;
        padding: 0 14px;
        gap: 0;
    }

    .btn-menu {
        padding: 14px 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        min-height: 64px;
        font-size: 0;
        /* hide text label */
        gap: 0;
    }

    .btn-menu .hb {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
    }

    .btn-menu .hb img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .nav-brand img {
        height: 26px;
    }

    .nav-end {
        padding: 14px 14px;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        min-height: 64px;
        display: flex;
        align-items: center;
    }

    .lnk-shop {
        font-size: 12px;
        letter-spacing: .14em;
    }

    /* HERO banner — compact on mobile */
    .hero {
        min-height: 180px;
        height: auto;
        padding-top: 120px;
        /* clear fixed nav */
        padding-bottom: 28px;
    }

    .hero-flower {
        max-width: 90px;
        opacity: .45;
        top: 64px;
        11
    }

    .hero-title {
        font-size: 1.7rem;
        letter-spacing: .08em;
    }

    .hero-crumb {
        font-size: 12px;
    }

    /* CONTACT SECTION — stack image above form */
    .contact-sec {
        padding: 36px 0 56px;
    }

    /* Remove desktop offset on the form column */
    .col-md-5.offset-1 {
        margin-left: 0 !important;
    }

    /* Image col full width, rounded, fixed height */
    .img-col {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .img-box {
        min-height: 220px;
        border-radius: 12px;
        overflow: hidden;
    }

    .contact-photo {
        min-height: 220px;
        object-position: center 10%;
    }

    /* Form col — card style, full width */
    .form-col {
        padding: 24px 20px 28px !important;
        margin-top: 28px;
    }

    .field {
        margin-bottom: 14px;
    }

    .f-input {
        padding: 15px 16px;
        font-size: 16px;
        min-height: 52px;
    }

    .f-textarea {
        padding: 15px 16px;
        font-size: 16px;
        min-height: 110px;
    }

    .btn-submit {
        display: block;
        width: 100%;
        padding: 16px;
        font-size: 14px;
        margin-top: 8px;
        min-height: 52px;
    }

    /* FOOTER — stacked, centered on mobile */
    .footer-main {
        padding: 36px 0 24px;
    }

    .footer-logo {
        max-height: 44px;
        display: block;
        margin: 0 auto 24px;
        object-position: center;
    }

    .f-links {
        text-align: center;
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 22px;
    }

    .f-links li {
        margin-bottom: 0;
    }

    .f-links li a {
        font-size: 14px;
        line-height: 36px;
    }

    .footer-bar {
        padding: 22px 16px 48px;
        text-align: center;
    }

    .f-copy {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .f-policies {
        justify-content: center;
        gap: 14px;
        margin-top: 8px;
        flex-wrap: wrap;
    }

    .f-policies a {
        font-size: 13px;
    }
}

/* ── 576px: mobile portrait ── */
@media (max-width: 575.98px) {

    .hero-flower {
        display: none;
    }

    .hero-title {
        margin-bottom: 17px;
    }

    .img-box {
        min-height: 180px;
        border-radius: 10px;
    }

    .contact-photo {
        min-height: 180px;
    }

    .form-col {
        padding: 20px 16px 24px !important;
        border-radius: 12px;
    }

    .f-links {
        gap: 2px 16px;
    }
}

/* ====================================================
   HOMEPAGE KEYFRAMES
==================================================== */
@keyframes hpTextIn {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hpScrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    50% {
        transform: translateY(8px);
        opacity: .9;
    }
}

@keyframes hpFloatBottle {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-16px) rotate(1deg);
    }
}

@keyframes hpFloatFlower {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(3.5deg);
    }
}

/* ====================================================
   HERO (Section 1)
   bg: home-banner.png — product shows IN background image
   Overlay right-side dark so right text is readable
   No separate product img needed
==================================================== */
.hp-hero {
    position: relative;
    min-height: 100vh;
    background: url('../images/home-banner.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 90px;
    overflow: hidden;
}

.hp-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18%;
    background: linear-gradient(to bottom, transparent, #221F1F);
    z-index: 2;
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hp-hero-container {
    position: relative;
    z-index: 3;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hp-hero-row {
    min-height: calc(100vh - 180px);
    align-items: center;
}

.hp-hero-flower {
    position: absolute;
    right: 0;
    bottom: -80px;
    height: auto;
    width: 380px;
    object-fit: contain;
    opacity: 0.6;
    z-index: 2;
    animation: hpFloatFlower 7s ease-in-out infinite, fadeIn 1s ease .3s both;
    pointer-events: none;
}

.hp-hero-text-col {
    padding-top: 20px;
    padding-bottom: 40px;
}

.hp-hero-title {
    font-family: var(--f-playfair);
    font-size: clamp(2.8rem, 4.8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: 24px;
    animation: hpTextIn 1s ease .1s both;
    letter-spacing: .03em;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hp-hero-sub {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 500;
    color: #FFF;
    line-height: 1.8;
    margin-bottom: 34px;
}

.hp-cta-row {
    margin-bottom: 22px;
}

.hp-explore-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    animation: hpScrollBounce 2s ease infinite;
}

.hp-explore-text {
    font-family: var(--f-opensans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 12px;
}

.hp-explore-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0));
}

/* ====================================================
   SHARED BUTTONS
==================================================== */
.hp-btn-primary {
    display: inline-block;
    font-family: var(--f-opensans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #fff;
    background: var(--c-accent);
    border: none;
    padding: 30px 60px;
    cursor: pointer;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease), color var(--ease);
    width: auto;
    text-align: center;
}

.hp-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .5s ease, height .5s ease;
}

.hp-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.hp-btn-primary:hover {
    background: var(--c-accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(41, 171, 226, .45);
    color: #fff;
}

.hp-btn-why {
    display: inline-block;
    font-family: var(--f-opensans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #fff;
    background: var(--c-accent);
    border: none;
    padding: 16px 42px;
    cursor: pointer;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}

.hp-btn-why:hover {
    background: var(--c-accent-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(41, 171, 226, .40);
    color: #fff;
}

/* ====================================================
   SHARED SECTION title helpers
==================================================== */
.hp-sec-header {
    margin-bottom: 80px;
}

.hp-sec-title-center {
    font-family: var(--f-playfair);
    font-size: 70px;
    font-weight: 400;
    text-transform: none;
    color: var(--c-white);
    margin-bottom: 0;
}

.hp-title-line {
    width: 60px;
    height: 2px;
    background: var(--c-accent);
    margin: 16px auto 0;
}

.hp-eyebrow-sm {
    font-family: var(--f-opensans);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 12px;
}

/* ====================================================
   SECTION 2 — THE EXPERIENCE
   bg: #141212 dark
   LEFT col: photo + floating Vector.png flower
   RIGHT col: eyebrow, italic quote, body, button
==================================================== */
.hp-experience {
    background: #221f1f;
    /* Darker taupe/brown matching screenshot */
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
}

.hp-exp-left-flower {
    position: absolute;
    top: 30%;
    transform: translateY(-30%);
    left: -40px;
    width: 350px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    opacity: 0.50;
    pointer-events: none;
    animation: hpFloatFlower 7s ease-in-out infinite, fadeIn 1s ease .4s both;
}

/* Boxed flex row  */
.hp-exp-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.hp-exp-img-col {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    overflow: hidden;
}

.hp-exp-content-col {
    flex: 1 1 auto;
    min-width: 0;
}

/* Flower overlapping top-right of left image col */
.hp-exp-flower {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 220px;
    height: auto;
    object-fit: contain;
    z-index: 3;
    opacity: .80;
    animation: hpFloatFlower 7s ease-in-out infinite, fadeIn 1s ease .4s both;
    pointer-events: none;
}

.hp-exp-img-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 540px;
}

.hp-exp-img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .7s ease, filter .7s ease;
}

.hp-exp-img-col:hover .hp-exp-img {
    transform: scale(1.04);
}

.hp-exp-content {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 140px;
}

.hp-exp-eyebrow {
    font-family: var(--f-opensans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 40%;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hp-exp-eyebrow::before {
    content: '';
    display: inline-block;
    width: 221px;
    height: 1px;
    background: #D9D9D9;
}

.hp-exp-quote {
    font-family: var(--f-opensans);
    font-size: 58px;
    font-weight: 300;
    color: var(--c-accent);
    line-height: 70px;
    margin-bottom: 50px;
}

.hp-exp-body {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 300;
    color: white;
    line-height: 35px;
    margin-bottom: 24px;
}

.hp-exp-body:last-of-type {
    margin-bottom: 34px;
}

/* ====================================================
   SECTION 3 — WHY MAVI ROZ
   bg: home-secont-sec-banner.png (golden/amber)
   Overlay 45% — background gold MUST be visible
   LEFT: flower + bottle  RIGHT: text
==================================================== */
.hp-why {
    position: relative;
    padding: 90px 0 100px;
    background: url('../images/home-secont-sec-banner.png') center center / cover no-repeat;
    overflow: hidden;
}

.hp-why::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(-90deg, #fff 0%, rgba(255, 255, 255, 0));
}

.hp-why .container {
    position: relative;
    z-index: 2;
}

.hp-why-flower {
    position: absolute;
    left: 0px;
    top: 50px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    animation: hpFloatFlower 8s ease-in-out 1s infinite, fadeIn 1s ease .3s both;
    pointer-events: none;
}

.hp-why-bottle-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hp-why-bottle {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    animation: hpFloatBottle 8s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .35));
}

.hp-why-bottle-reflection {
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
    margin-top: -60px;
    pointer-events: none;
    animation: hpFloatBottle 8s ease-in-out infinite;
    position: absolute;
}

.hp-why-eyebrow {
    font-family: var(--f-playfair);
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 24px;
}

.hp-why-title {
    font-family: var(--f-opensans);
    font-size: 60px;
    font-weight: 300;
    text-transform: none;
    color: #000;
    line-height: 70px;
    margin-bottom: 60px;
}

.hp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.hp-feature-item {
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    padding: 18px 0;
    cursor: pointer;
    transition: border-color var(--ease);
}

.hp-feature-item:hover {
    border-color: rgba(0, 0, 0, .25);
}

.hp-feature-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-opensans);
    font-size: 24px;
    font-weight: 600;
    color: #000;
    letter-spacing: .01em;
    user-select: none;
}

.hp-fi-icon {
    font-size: 35px;
    color: #000;
    transition: transform var(--ease);
    line-height: 1;
    font-style: normal;
    font-weight: 400;
    flex-shrink: 0;
}

.hp-feature-item.open .hp-fi-icon {
    transform: rotate(45deg);
}

.hp-feature-body {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 300;
    color: #000;
    line-height: 35px;
    overflow: hidden;
    transition: max-height .4s ease, padding-top .4s ease;
    max-height: 0;
}

.hp-feature-item.open .hp-feature-body {
    max-height: 120px;
    padding-top: 30px;
}

/* ====================================================
   SECTION 4 — DISCOVER YOUR SIGNATURE
   bg: home-third-sec-banner.png  72% dark overlay
   LEFT edge: flower decoration
   CENTER: single product card
==================================================== */
.hp-collection {
    position: relative;
    padding: 140px;
    background: url('../images/home-third-sec-banner.png') center center / cover no-repeat;
    overflow: hidden;
}

.hp-collection::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 5, 5, .50);
    z-index: 0;
}

.hp-collection .container {
    position: relative;
    z-index: 1;
}

.hp-collection-flower-topleft {
    position: absolute;
    left: 0px;
    top: 80px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    opacity: .05;
    animation: hpFloatFlower 7s ease-in-out 1.5s infinite, fadeIn 1s ease .5s both;
    pointer-events: none;
}

.why-sec-right.on {
    padding-left: 100px;
}

.hp-title-line-vertical {
    width: 2px;
    height: 31px;
    background: var(--c-accent);
    margin: 24px auto 0;
}

.hp-product-card {
    background: #ffffff;
    border: 3px solid var(--c-accent);
    overflow: hidden;
    transition: box-shadow .4s ease, border-color .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hp-product-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.hp-product-img-wrap {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    position: relative;
}

.badge-new {
    position: absolute;
    top: 0;
    left: 10%;
    background-color: var(--c-accent);
    color: #fff;
    font-family: var(--f-opensans);
    font-size: 24px;
    font-weight: 600;
    text-transform: none;
    padding: 8px 18px;
    z-index: 10;
}

.hp-product-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform .6s ease;
}

.hp-product-card:hover .hp-product-img {
    transform: scale(1.04);
}

.hp-product-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding-left: 100px;
}

.hp-product-card>.row {
    padding: 80px;
}

.hp-product-tag {
    font-family: var(--f-opensans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 10px;
}

.hp-product-name-custom {
    font-family: var(--f-opensans);
    font-size: 60px;
    font-weight: 300;
    color: #111;
    margin-bottom: 24px;
    line-height: 70px;
}

.hp-fragrance-label {
    font-family: var(--f-opensans);
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.hp-fragrance-table {
    width: 100%;
    margin-bottom: 16px;
    font-family: var(--f-opensans);
    font-size: 13px;
    color: #333;
    border-collapse: collapse;
}

.hp-fragrance-table td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    font-size: 20px;
    font-weight: 400;
}

.hp-ft-label {
    width: 136px;
    color: #000;
}

.hp-ft-value {
    color: #111;
}

.hp-product-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hp-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 44px;
}

.hp-dot {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, .25);
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--ease), width var(--ease);
    border: none;
    padding: 0;
}

.hp-dot.active {
    background: var(--c-accent);
    width: 48px;
}

/* ====================================================
   SECTION 5 — OUR SIGNATURE STANDARD
   bg: blue-rose image — 85% white overlay (roses show)
   Text LEFT · Model photo RIGHT
==================================================== */
.hp-standard {
    position: relative;
    padding: 140px 0;
    background-color: #ffffff;
    background-image: url('../images/blue-rose-png-transparent-background-vintage-flower-border%201.png');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    margin: 0;
}

.hp-standard-content {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.hp-standard-title {
    font-family: var(--f-playfair);
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 0px;
}

.hp-std-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hp-standard-eyebrow {
    font-family: var(--f-opensans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 40%;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.hp-std-eyebrow-line {
    flex-grow: 1;
    max-width: 221px;
    height: 1px;
    background: #000;
}

.hp-standard-quote {
    font-family: var(--f-opensans);
    font-size: 40px;
    font-weight: 300;
    color: var(--c-accent);
    line-height: 1.35;
    margin-bottom: 72px;
}

.hp-standard-body {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 400;
    color: #322013;
    line-height: 1.8;
}

.hp-standard-body strong {
    color: #111;
    font-weight: 700;
}

.hp-std-list-row {
    margin-top: 16px;
    margin-bottom: 24px;
}

.hp-standard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hp-standard-list li {
    font-family: var(--f-opensans);
    font-size: 20px;
    color: #322013;
    line-height: 35px;
}

.hp-standard-img-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 520px;
    z-index: 2;
}

.hp-standard-img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .7s ease;
}

.hp-standard-img-wrap:hover .hp-standard-img {
    transform: scale(1.03);
}

/* ====================================================
   SECTION 6 — CTA BANNER
   bg: home-last-sec-banner.png (cyan/blue roses)
==================================================== */
.hp-cta-banner {
    position: relative;
    min-height: 520px;
    background: url('../images/home-last-sec-banner.png') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 180px 0;
}

.hp-cta-inner {
    padding: 60px;
    width: 100%;
    max-width: 988px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.hp-cta-divider {
    width: 140px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.6);
    margin: 0 auto 24px;
}

.hp-cta-title {
    font-family: var(--f-playfair);
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    line-height: 70px;
    margin-bottom: 20px;
}

.hp-cta-sub {
    font-family: var(--f-opensans);
    font-size: 30px;
    font-weight: 300;
    color: #000;
    margin-bottom: 30px;
}

.hp-cta-btn-wrap {
    margin-top: 10px;
}
.prod-card img {
  height: auto !important;
  width: auto !important;
}

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

/* ── 1320px: wide tablets / small desktops ── */
@media (max-width: 1320px) {

    /* Scale large display headings — suppress 70px and 60px fixed desktop values */
    .hp-why-eyebrow {
        font-size: clamp(2rem, 4vw, 3.5rem);
        margin-bottom: 16px;
    }

    .hp-why-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        line-height: 1.25;
        margin-bottom: 48px;
    }

    /* Hero title (actual class is .hero-title, 93.51px desktop) */
    .hero-title {
        font-size: clamp(3rem, 5.5vw, 5.5rem);
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .hp-sec-title-center {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .hp-standard-title {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }

    .hp-standard-quote {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        margin-bottom: 40px;
    }

    .hp-cta-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        line-height: 1.1;
    }

    .hp-cta-sub {
        font-size: clamp(1rem, 2.2vw, 1.8rem);
    }

    /* Reduce section-level side paddings */
    .hp-collection {
        padding: 100px 60px;
    }

    .hp-cta-banner {
        padding: 120px 0;
    }

    .hp-cta-inner {
        padding: 50px 40px;
    }

    /* Product card */
    .hp-product-card>.row {
        padding: 50px;
    }

    .hp-product-info {
        padding-left: 60px;
    }

    .hp-product-name-custom {
        font-size: clamp(2rem, 4vw, 3.5rem);
        line-height: 1.2;
    }

    /* Experience */
    .hp-exp-content {
        padding: 40px 28px 60px 48px;
    }

    .hp-exp-quote {
        font-size: clamp(2rem, 3.5vw, 3rem);
        line-height: 1.3;
    }

    /* Why section right column */
    .why-sec-right.on {
        padding-left: 60px;
    }
}

/* ── 1200px: small laptops ── */
@media (max-width: 1199.98px) {

    /* Navbar */
    .btn-menu {
        padding: 30px 20px;
    }

    .nav-end {
        padding: 30px 20px;
    }

    /* Hero */
    .hp-hero-title {
        font-size: clamp(2.8rem, 5vw, 4.5rem);
    }

    .hp-hero-sub {
        font-size: 18px;
    }

    /* Experience section */
    .hp-exp-content {
        padding: 36px 24px 56px 32px;
    }

    .hp-exp-quote {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        margin-bottom: 32px;
    }

    .hp-exp-flower {
        width: 170px;
        right: -30px;
    }

    /* Why Mavi Roz */
    .hp-why-flower {
        width: 180px;
    }

    .hp-why-eyebrow {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
    }

    .hp-why-title {
        font-size: clamp(1.6rem, 2.6vw, 2.2rem);
        line-height: 1.3;
        margin-bottom: 36px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 4.5vw, 4.2rem);
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .why-sec-right.on {
        padding-left: 50px;
    }

    /* Product card */
    .hp-product-card>.row {
        padding: 40px;
    }

    .hp-product-info {
        padding-left: 40px;
    }

    .hp-product-name-custom {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
        line-height: 1.2;
    }

    /* Collection section */
    .hp-collection {
        padding: 80px 40px;
    }

    /* Standard section */
    .hp-standard-title {
        font-size: clamp(2rem, 3.5vw, 3.5rem);
    }

    .hp-standard-quote {
        font-size: clamp(1.6rem, 2.8vw, 2.2rem);
        margin-bottom: 40px;
    }

    /* Section heading */
    .hp-sec-title-center {
        font-size: clamp(2rem, 4.5vw, 4rem);
    }

    /* CTA Banner */
    .hp-cta-banner {
        padding: 100px 0;
    }

    .hp-cta-inner {
        padding: 40px 32px;
    }

    .hp-cta-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
        line-height: 1.15;
    }

    .hp-cta-sub {
        font-size: clamp(1rem, 2.2vw, 1.6rem);
    }
}

/* ── 992px: tablets ── */
@media (max-width: 991.98px) {
    .hp-hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .hp-hero-sub {
        font-size: 16px;
    }

    /* Section heading */
    .hp-sec-title-center {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    /* Experience section */
    .hp-exp-row {
        flex-direction: column;
    }

    .hp-exp-img-col {
        flex: none;
        max-width: 100%;
        height: 400px;
    }

    .hp-exp-img-wrap,
    .hp-exp-img {
        min-height: 400px;
        height: 400px;
    }

    .hp-exp-flower {
        width: 140px;
        right: -20px;
        top: -20px;
    }

    .hp-exp-content {
        padding: 36px 24px 48px;
    }

    .hp-exp-quote {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        margin-bottom: 24px;
    }

    /* Why Mavi Roz */
    .hp-why {
        padding: 70px 0 80px;
    }

    .hp-why-eyebrow {
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .hp-why-title {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        line-height: 1.3;
        margin-bottom: 28px;
    }

    .hp-why-bottle {
        max-width: 300px;
    }

    .hp-why-flower {
        width: 150px;
        left: -20px;
    }

    .why-sec-right.on {
        padding-left: 24px;
    }

    /* Collection section */
    .hp-collection {
        padding: 80px 20px;
    }

    .hp-collection-flower {
        width: 140px;
        left: -15px;
    }

    /* Product card */
    .hp-product-card>.row {
        padding: 32px;
    }

    .hp-product-info {
        padding-left: 24px;
    }

    .hp-product-name-custom {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 12px;
    }

    /* Standard section */
    .hp-standard {
        padding: 80px 0;
    }

    .hp-standard-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    }

    .hp-standard-quote {
        font-size: clamp(1.4rem, 2.5vw, 1.9rem);
        margin-bottom: 32px;
    }

    .hp-standard-img-wrap,
    .hp-standard-img {
        min-height: 400px;
    }

    /* CTA Banner */
    .hp-cta-banner {
        padding: 80px 0;
    }

    .hp-cta-inner {
        padding: 36px 28px;
    }

    .hp-cta-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        line-height: 1.15;
    }

    .hp-cta-sub {
        font-size: clamp(1rem, 2vw, 1.4rem);
    }
}

/* ── 768px: mobile landscape ── */
@media (max-width: 767.98px) {

    /* ---- HERO ---- */
    /* Split layout on mobile:
       Top half  → product image shows
       Bottom half → text on dark bg
    */
    .hp-hero {
        min-height: unset;
        padding-top: 0;
        padding-bottom: 0;
        background-position: left center;
        background-size: cover;
        display: block;
        /* remove flex so row stacks naturally */
        overflow: visible;
    }

    /* Dark gradient overlay only on the LOWER portion */
    .hp-hero::after {
        height: 100%;
        background: linear-gradient(to bottom, transparent, #221F1F);
    }

    /* No extra dark overlay — the ::after gradient handles it */
    .hp-hero::before {
        display: none;
    }

    .hp-hero-container {
        position: relative;
        z-index: 3;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hp-hero-row {
        min-height: unset;
        flex-direction: column;
        align-items: stretch;
    }

    /* TOP spacer col — becomes the product image viewport */
    .hp-hero-row>.col-12.col-lg-6:first-child {
        min-height: 320px;
        background: transparent;
        /* Just shows the hero section background */
    }

    /* BOTTOM text col — sits on dark background below product */
    .hp-hero-text-col {
        padding: 28px 20px 48px;
        text-align: center;
        border-top: none;
    }

    .hp-why-bottle-reflection {
        display: none;
    }

    /* hero title style */
    .hp-hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hp-hero-sub {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .hp-hero-flower {
        width: 150px;
        opacity: 0.35;
        bottom: -40px;
    }

    /* Scroll indicator */
    .hp-explore-wrap {
        display: none;
    }

    /* DISCOVER button full-width */
    .hp-btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* ---- SECTION 2: THE EXPERIENCE ---- */
    .hp-experience {
        padding: 60px 0 50px;
    }

    .hp-sec-header {
        margin-bottom: 32px;
    }

    .hp-sec-title-center {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
    }

    .hp-exp-row {
        flex-direction: column;
    }

    .hp-exp-img-col {
        flex: none;
        max-width: 100%;
        height: 280px;
    }

    .hp-exp-img-wrap,
    .hp-exp-img {
        min-height: 280px;
        height: 280px;
        border-radius: 0;
    }

    .hp-hero-sub {
        max-width: 100%;
    }

    .hp-exp-content {
        padding: 28px 20px 36px;
    }

    .hp-exp-quote {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        line-height: 1.35;
        margin-bottom: 20px;
    }

    .hp-exp-eyebrow {
        font-size: 13px;
        gap: 16px;
        margin-bottom: 16px;
    }

    .hp-exp-eyebrow::before {
        width: 60px;
    }

    .hp-exp-body {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .hp-exp-flower {
        width: 80px;
        right: 0;
        top: -8px;
    }

    /* ---- SECTION 3: WHY MAVI ROZ ---- */
    .hp-why {
        padding: 56px 0 64px;
    }

    .hp-why-flower {
        display: none;
    }

    .hp-why-eyebrow {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 8px;
    }

    .hp-why-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        line-height: 1.35;
        margin-bottom: 28px;
    }

    .hp-why-bottle {
        max-width: 80%;
        margin: 0 auto 28px;
        display: block;
    }

    .hp-feature-hd {
        font-size: 18px;
    }

    .hp-feature-body {
        font-size: 15px;
    }

    /* ---- SECTION 4: PRODUCT CARD ---- */
    .hp-collection {
        padding: 60px 0;
    }

    .hp-collection-flower {
        display: none;
    }

    /* Stack product card cols vertically */
    .hp-product-card>.row {
        flex-direction: column;
        padding: 0;
    }

    .hp-product-img-wrap,
    .hp-product-img {
        min-height: 260px;
        padding: 50px 10px 0px 10px;
    }

    .hp-product-info {
        padding: 28px 20px 32px;
        padding-left: 20px;
        /* reset desktop 100px */
    }

    .hp-product-name-custom {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hp-product-card>.row>div {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .hp-fragrance-table td {
        font-size: 15px;
        padding: 10px 0;
    }

    .hp-product-footer {
        flex-direction: column;
        gap: 12px;
    }

    .badge-new {
        font-size: 16px;
    }

    /* ---- SECTION 5: SIGNATURE STANDARD ---- */
    .hp-standard {
        padding: 60px 0;
    }

    .hp-standard-title {
        font-size: clamp(1.6rem, 6vw, 2.6rem);
        margin-bottom: 16px;
        text-align: center;
    }

    .hp-std-eyebrow-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px;
    }

    .hp-std-eyebrow-line {
        display: none;
    }

    .hp-standard-quote {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        line-height: 1.4;
        margin-bottom: 24px;
    }

    .hp-standard-body {
        font-size: 15px;
    }

    .hp-standard-list li {
        font-size: 15px;
        line-height: 1.8;
    }

    .hp-standard-content {
        padding-right: 0;
    }

    .hp-standard-img-wrap,
    .hp-standard-img {
        min-height: 280px;
        margin-bottom: 0;
        margin-top: 28px;
    }

    /* ---- SECTION 6: CTA BANNER ---- */
    .hp-cta-banner {
        min-height: 300px;
        padding: 60px 0;
    }

    .hp-cta-inner {
        padding: 32px 20px;
        border-radius: 4px;
    }

    .hp-cta-title {
        font-size: clamp(1.6rem, 6vw, 2.6rem);
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hp-cta-sub {
        font-size: clamp(1rem, 3vw, 1.4rem);
        margin-bottom: 20px;
    }
}

/* ── 576px: mobile portrait ── */
@media (max-width: 575.98px) {

    /* ---- HERO ---- */
    .hp-hero-title {
        font-size: 2rem;
    }

    .hp-hero-sub {
        font-size: 14px;
    }

    /* Buttons full-width */
    .hp-btn-primary,
    .hp-btn-why {
        display: block;
        text-align: center;
        width: 100%;
        padding: 16px 20px;
    }

    /* ---- EXPERIENCE ---- */
    .hp-exp-img-col,
    .hp-exp-img-wrap,
    .hp-exp-img {
        height: 220px;
        min-height: 220px;
    }

    .hp-exp-flower {
        display: none;
    }

    /* ---- WHY MAVI ROZ ---- */
    .hp-why-bottle {
        max-width: 80%;
    }

    /* ---- PRODUCT CARD ---- */
    .hp-product-img-wrap,
    .hp-product-img {
        min-height: 200px;
    }

    /* ---- CTA ---- */
    .hp-cta-inner {
        padding: 24px 14px;
    }
}

/* ====================================================
   ABOUT PAGE CSS
   Sections: Hero | Story | Meaning | Essence | Presence
   Inherits all tokens from style.css
==================================================== */

/* ====================================================
   SECTION 2 — STORY
   bg: #111 dark · Image LEFT · Text RIGHT
==================================================== */
.about-story {
    background: rgba(34, 31, 31, 1);
    padding: 140px 0px;
}

.about-story .row {
    flex-wrap: wrap;
    /* Fix flex issue on tablet/mobile */
}

.about-story-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 560px;
    overflow: hidden;
}

.about-story-img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

.about-story-text-col {
    padding-left: 140px;
}

.about-story-heading {
    font-family: var(--f-playfair);
    font-size: 58px;
    font-weight: 300;
    color: var(--c-accent);
    line-height: 70px;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.about-story-tagline {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 35px;
    margin-bottom: 0px;
}

.about-story-body {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 300;
    color: white;
    line-height: 35px;
}


/* ====================================================
   SECTION 3 — MEANING BEHIND THE NAME
   bg: white/light · Two word cards
==================================================== */
.about-meaning {
    position: relative;
    background: url('../images/home-third-sec-banner.png') center center / cover no-repeat;
    padding: 140px 0px;
    color: #fff;
}

.about-meaning::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 14, 0.72);
    z-index: 0;
}

.about-meaning .container {
    position: relative;
    z-index: 1;
}

.about-meaning-header {
    margin-bottom: 60px;
}

.about-meaning-title {
    font-family: var(--f-playfair);
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-meaning-sub {
    font-family: var(--f-opensans);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 40%;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0;
}

/* Word cards */
.about-word-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .12);
    padding: 60px;
    height: 100%;
    transition: box-shadow var(--ease);
}

.about-word-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.about-word-name {
    font-family: var(--f-opensans);
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 0;
    padding-bottom: 50px;
}

.about-word-mavi {
    color: var(--c-accent);
}

.about-word-roz {
    color: var(--c-accent);
}

.about-word-def {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 300;
    color: #000;
    line-height: 35px;
}

.about-word-def em {
    font-weight: 700;
    font-style: normal;
}

.about-meaning-footer {
    text-align: center;
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 700;
    color: white;
    font-style: normal;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================================
   SECTION 4 — ESSENCE WITHIN EVERY BOTTLE
   bg: home-third-sec-banner.png  dark overlay
   LEFT col: text + button
==================================================== */
.about-essence {
    position: relative;
    padding: 140px 0px;
    background: url('../images/about-sec-two-back.png') center center / cover no-repeat;
    overflow: hidden;
}

.about-essence::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}

.about-essence .container {
    position: relative;
    z-index: 1;
}

.about-essence-title {
    font-family: var(--f-playfair);
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--c-white);
    line-height: 1.1;
    margin-bottom: 70px;
}

.about-essence-lead {
    font-family: var(--f-opensans);
    font-size: 40px;
    font-weight: 300;
    color: white;
    line-height: 1.5;
    margin-bottom: 50px;
}

.about-essence-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.about-essence-list li {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.9;
    padding-left: 0;
    list-style: none;
}

.about-essence-list li.bold {
    font-weight: 700;
    color: #ffffff;
}

.about-essence-prose {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 300;
    color: white;
    line-height: 1.85;
    max-width: 520px;
    margin: 45px 0px !important;
}

.about-essence-prose.bold {
    font-weight: 700;
    color: #ffffff;
    font-size: 20px;
}

.about-essence-prose.mt-2 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

/* ====================================================
   SECTION 5 — A FRAGRANCE OF PRESENCE
   bg: home-secont-sec-banner.png (gold / amber)
   Centered white card  LEFT text  RIGHT product img
==================================================== */
.about-presence {
    position: relative;
    padding: 140px;
    background: url('../images/home-secont-sec-banner.png') center center / cover no-repeat;
    overflow: hidden;
}

.about-presence .container {
    position: relative;
    z-index: 1;
}

/* Section pretitle above the card */
.about-presence-pretitle {
    font-family: var(--f-playfair);
    font-size: 70px;
    font-weight: 400;
    text-transform: uppercase;
    color: black;
    text-align: center;
    letter-spacing: .06em;
    margin-bottom: 48px;
}

/* White card */
.about-presence-card {
    background: #ffffff;
    padding: 115px;
    overflow: hidden;
    border: 3px solid black;
}

/* Left text inside card */
.about-presence-lead {
    font-family: var(--f-playfair);
    font-size: 40px;
    font-weight: 300;
    color: #000;
    line-height: 1.35;
    margin-bottom: 32px;
}

.about-presence-text {
    font-size: 20px;
    font-weight: 300;
    color: black;
}

.about-presence-text p b {
    font-weight: 600;
    font-size: 24px;
}

.about-presence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-presence-list li {
    font-family: var(--f-opensans);
    font-size: 20px;
    font-weight: 300;
    color: #000;
    line-height: 2.2;
    position: relative;
}

.about-presence-note {
    font-family: var(--f-opensans);
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.7;
}

/* Right product image inside card */
.about-presence-img-col {
    display: flex;
    min-height: 360px;
}

.about-presence-img {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    display: block;
}


/* ====================================================
   ABOUT PAGE RESPONSIVE
==================================================== */
@media (max-width: 991.98px) {

    .about-story-img-col {
        flex: none;
        max-width: 100%;
    }

    .about-story-text-col {
        padding: 48px 24px 40px;
        flex: none;
        max-width: 100%;
    }

    .about-story-img-wrap,
    .about-story-img {
        min-height: 420px;
    }

    .about-meaning-title {
        font-size: clamp(1.6rem, 4vw, 2.4rem);
    }

    .about-essence-title {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }

    .about-presence-card {
        padding: 50px 40px;
    }

    .about-presence-pretitle {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
    }

    .about-presence .row {
        flex-direction: column;
    }

    .about-presence-text {
        padding: 40px 20px;
    }
}

@media (max-width: 767.98px) {
    .about-story {
        padding: 0 0 60px;
    }

    .about-story-img-wrap,
    .about-story-img {
        min-height: 300px;
    }

    .about-story-text-col {
        padding: 36px 16px 32px;
    }

    .about-story-heading {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .about-meaning {
        padding: 60px 0 50px;
    }

    .about-meaning-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .about-word-card {
        padding: 28px 24px 32px;
    }

    .about-essence {
        padding: 70px 0 80px;
    }

    .about-essence-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }

    .about-essence-lead {
        font-size: 16px;
    }

    .about-presence {
        padding: 60px 0 80px;
    }

    .about-presence-pretitle {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .about-presence-text {
        padding: 32px 20px;
    }

    .about-presence-lead {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .about-presence-img-col {
        min-height: 240px;
        padding: 24px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {

    .about-meaning-title {
        font-size: 1.4rem;
    }

    .about-essence-title {
        font-size: 1.3rem;
    }

    .about-presence-pretitle {
        font-size: 1.5rem;
    }

    .about-presence-pretitle {
        font-size: 1.5rem;
    }

    .about-presence-card {
        padding: 30px 20px;
    }
}


/* ====================================================
   PRODUCT PAGE  —  scoped under .product-page
   All styles here are ONLY for product.html and will
   never bleed into about_us.html or any other page.
==================================================== */

/* ── Section wrapper ── */
/* ── Card: white box with accent border ── */
.product-page .prod-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 3px solid var(--c-accent, #4bb5ee);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    overflow: hidden;
    transition: box-shadow .4s ease;
    align-items: start;
}

.product-page .prod-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, .38);
}

/* ── LEFT column — image ── */
.product-page .prod-image-col {
    flex: 0 0 45%;
    max-width: 45%;
}

.product-page .prod-img-wrap {
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 97px 0px 97px 97px;
}

.product-page .prod-img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform .6s ease;
}

.product-page .prod-card:hover .prod-img {
    transform: scale(1.04);
}

/* ── RIGHT column — content ── */
.product-page .prod-content-col {
    flex: 1 1 auto;
    min-width: 0;
}

.product-page .prod-info {
    padding: 97px 97px 97px 64px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

/* ── Product Name ── */
.product-page .prod-name {
    font-family: var(--f-opensans, 'Open Sans', sans-serif);
    font-size: 70px;
    font-weight: 300;
    color: #000;
    line-height: 70px;
    margin-bottom: 20px;
}

/* ── Bold subtitle ── */
.product-page .prod-subtitle {
    font-family: var(--f-opensans, 'Open Sans', sans-serif);
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 35px;
    margin-bottom: 20px;
}

/* ── Body description ── */
.product-page .prod-desc {
    font-family: var(--f-opensans, 'Open Sans', sans-serif);
    font-size: 20px;
    font-weight: 300;
    color: #000;
    line-height: 35px;
    margin-bottom: 18px;
}

/* ── Bold tagline ── */
.product-page .prod-tagline {
    font-family: var(--f-opensans, 'Open Sans', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    line-height: 35px;
    margin-bottom: 22px;
}

/* ── Fragrance Profile label ── */
.product-page .prod-frag-label {
    font-family: var(--f-opensans, 'Open Sans', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    letter-spacing: .02em;
    margin-bottom: 6px;
}

/* ── Fragrance table ── */
.product-page .prod-frag-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    font-family: var(--f-opensans, 'Open Sans', sans-serif);
    font-size: 15px;
    color: #333;
}

.product-page .prod-frag-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    vertical-align: top;
    line-height: 1.5;
}

.product-page .prod-ft-label {
    width: 160px;
    font-weight: 400;
    color: #000;
    font-size: 20px;
    padding-right: 16px;
    white-space: nowrap;
}

.product-page .prod-ft-value {
    font-weight: 400;
    color: #000;
    font-size: 20px;
}

/* ── Closing paragraph ── */
.product-page .prod-closing {
    font-family: var(--f-opensans, 'Open Sans', sans-serif);
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 35px;
    margin-bottom: 28px;
}

/* ── CTA footer ── */
.product-page .prod-footer {
    margin-top: 4px;
}
.wc-block-components-form .wc-block-components-text-input label, .wc-block-components-text-input label {
    color: white;
}
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="number"], 
.wc-block-components-form .wc-block-components-text-input input[type="password"], 
.wc-block-components-form .wc-block-components-text-input input[type="tel"], 
.wc-block-components-form .wc-block-components-text-input input[type="text"], 
.wc-block-components-form .wc-block-components-text-input input[type="url"], 
.wc-block-components-text-input input[type="email"], 
.wc-block-components-text-input input[type="number"], 
.wc-block-components-text-input input[type="password"], 
.wc-block-components-text-input input[type="tel"], 
.wc-block-components-text-input input[type="text"], 
.wc-block-components-text-input input[type="url"],
.wc-blocks-components-select .wc-blocks-components-select__select {
    border: 1px solid white !important;
    background: transparent !important;
    font-size: 20px !important;
    color: white !important;
    font-weight: 400 !important;
    border-radius: 0px !important;
    height: 65px !important;
}
.wc-block-components-address-form__address_2-toggle {
    font-size: 20px;
}
.wc-block-components-totals-item {
  font-size: 16px;
}
.wc-block-components-panel__button {
  font-size: 16px;
  color: white;
}
.wc-block-components-button {
  display: inline-block;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--f-opensans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 40%;
  text-transform: uppercase;
  border: 1px solid var(--c-accent);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  animation: glowPulse 3s ease-in-out 3s infinite;
}
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__label {
    font-size: 16px;
}
.wc-blocks-components-select .wc-blocks-components-select__container {
    background: transparent !important;
}
.wc-block-components-address-card {
    border: 1px solid white !important;
    border-radius: 0px !important;
}
.wc-block-components-address-card address .wc-block-components-address-card__address-section--secondary {
    color: white;
    font-size: 20px;
    font-weight: 400;
}
.TermsText {
  margin-bottom: 10px !important;
}
.wc-block-components-radio-control__label {
  font-size: 16px;
}
.wc-block-components-product-name {
  font-size: 20px !important;
  color: white !important;
  font-weight: 400;
}
.wc-block-formatted-money-amount {
  font-size: 20px;
}
.wc-block-components-quantity-selector__input,
.wc-block-components-quantity-selector > .wc-block-components-quantity-selector__button--minus,
.wc-block-components-quantity-selector > .wc-block-components-quantity-selector__button--plus {
  font-size: 20px !important;
}
th {
  font-size: 20px !important;
  letter-spacing: 5px;
}
.wc-block-cart__totals-title {
  font-size: 20px !important;
  letter-spacing: 5px !important;
}
/* ============================================================
   PRODUCT PAGE RESPONSIVE
   All breakpoints scoped under .product-page
   ============================================================ */

/* ── Tablet landscape  ≤ 1199px ── */
@media (max-width: 1199.98px) {

    .product-page .prod-info {
        padding: 44px 44px 44px 48px;
    }

    .product-page .prod-name {
        font-size: 34px;
    }

    .product-page .prod-img-wrap {
        padding: 32px;
        min-height: 440px;
    }

    .product-page .prod-img {
        min-height: 360px;
    }
}

/* ── Tablet portrait  ≤ 991px — stack the card ── */
@media (max-width: 991.98px) {

    .product-page .prod-card {
        flex-direction: column;
    }

    .product-page .prod-image-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-page .prod-img-wrap {
        min-height: 360px;
        padding: 40px 80px;
    }

    .product-page .prod-img {
        min-height: 280px;
        max-width: 380px;
        margin: 0 auto;
    }

    .product-page .prod-info {
        padding: 44px 40px;
    }

    .product-page .prod-name {
        font-size: 32px;
    }

    .product-page .prod-detail-sec {
        padding: 60px 0 80px;
    }
}

/* ── Mobile  ≤ 575px ── */
@media (max-width: 575.98px) {

    .product-page .prod-img-wrap {
        min-height: 280px;
        padding: 30px 24px;
    }

    .product-page .prod-img {
        min-height: 220px;
        max-width: 100%;
    }

    .product-page .prod-info {
        padding: 32px 24px;
    }

    .product-page .prod-name {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .product-page .prod-subtitle {
        font-size: 15px;
    }

    .product-page .prod-desc,
    .product-page .prod-tagline,
    .product-page .prod-closing {
        font-size: 14px;
    }

    .product-page .prod-frag-label {
        font-size: 15px;
    }

    .product-page .prod-frag-table {
        font-size: 13px;
    }

    .product-page .prod-ft-label {
        width: 120px;
        padding-right: 10px;
    }

    .product-page .prod-detail-sec {
        padding: 40px 0 60px;
    }
}
/* ====================================================
   DESKTOP INLINE MENU
==================================================== */
@media (min-width: 992px) {
    .nav-wrap {
        grid-template-columns: auto 1fr auto;
    }

    .nav-brand {
        padding-left: 40px;
        justify-content: flex-start;
    }

    .nav-center {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .desktop-menu-nav {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 36px;
        align-items: center;
    }

    .desktop-menu-nav li {
        margin: 0;
        padding: 0;
    }

    .desktop-menu-nav a {
        font-family: var(--f-opensans);
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color var(--ease);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .desktop-menu-nav a:hover,
    .desktop-menu-nav li.current-menu-item>a,
    .desktop-menu-nav li.current_page_item>a {
        color: var(--c-accent);
    }
}

/* ====================================================
   QUANTITY BOX
==================================================== */
.mavieroz-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    height: 52px;
    background: #fff;
    overflow: hidden;
}

.mavieroz-qty-box .qty-btn {
    background: transparent;
    border: none;
    width: 44px;
    height: 100%;
    font-size: 1.4rem;
    color: #333;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    outline: none;
}

.mavieroz-qty-box .qty-btn:hover {
    background: #f8f8f8;
    color: var(--c-accent);
}

.mavieroz-qty-box .qty-input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-family: var(--f-opensans);
    font-size: 16px;
    font-weight: 600;
    color: #111;
    background: transparent;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
}

.mavieroz-qty-box .qty-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.mavieroz-qty-box .qty-input::-webkit-outer-spin-button,
.mavieroz-qty-box .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
}