:root {
    --pink: #e0798a;
    --pink-deep: #d15f73;
    --cream: #fdf6f0;
    --blush: #fbe9e7;
    --rose-bg: #fdeef0;
    --cocoa: #2a1a14;
    --cocoa-soft: #3a251d;
    --ink: #1f1411;
    --muted: #7a6a64;
}
* {
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.serif {
    font-family: "Playfair Display", serif;
}
.script {
    font-family: "Great Vibes", cursive;
}
a {
    text-decoration: none;
}
.text-pink {
    color: var(--pink);
}
.sec {
    padding: 64px 0;
}

/* Top bar */
.topbar {
    background: var(--cocoa);
    color: #f3e6df;
    font-size: 0.78rem;
    padding: 9px 0;
}
.topbar a {
    color: #f3e6df;
}
.topbar a:hover {
    color: var(--pink);
}
.topbar i {
    color: var(--pink);
    margin-right: 6px;
}
.topbar .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 6px;
}
.topbar .social a i {
    margin: 0;
    color: #f3e6df;
    font-size: 0.72rem;
}

/* Navbar */
.navbar {
    background: var(--cream);
    padding: 14px 0;
    box-shadow: 0 2px 18px rgba(42, 26, 20, 0.05);
}
.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background: var(--blush); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.3rem;
}
.brand-name {
    font-family: "Great Vibes", cursive;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--cocoa);
}
.brand-sub {
    font-size: 0.5rem;
    letter-spacing: 0.22em;
    color: var(--muted);
    text-transform: uppercase;
}
.brand-est {
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    color: var(--pink);
}
.nav-link {
    font-size: 0.86rem;
    color: var(--cocoa);
    padding: 6px 14px !important;
    font-weight: 400;
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: var(--pink);
}
.nav-link.active::after {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background: var(--pink);
    border-radius: 2px;
    margin: 3px auto 0;
}
.btn-pink {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 0.82rem;
    box-shadow: 0 8px 18px rgba(224, 121, 138, 0.3);
}
.btn-pink:hover {
    background: var(--pink-deep);
    color: #fff;
}
@media (max-width: 991.98px) {
    .navbar .navbar-collapse {
        border-top: 1px solid rgba(42, 26, 20, 0.08);
        margin-top: 12px;
        padding-top: 8px;
    }
    .navbar-nav {
        align-items: flex-start !important;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        padding: 10px 2px !important;
        width: 100%;
        text-align: left;
    }
    .nav-link.active::after {
        margin: 4px 0 0 0;
    }
    .navbar-nav .btn-pink {
        display: inline-block;
        margin-left: 0;
    }
}

/* Hero */
.hero {
    background: linear-gradient(180deg, #fdf1ee 0%, #fbe6e6 100%);
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    line-height: 1.18;
    font-weight: 600;
}
.hero .kicker {
    font-family: "Great Vibes", cursive;
    font-size: 1.6rem;
    color: var(--pink);
}
.divider-heart {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--pink);
    margin: 18px 0 26px;
}
.divider-heart span {
    height: 1px;
    width: 70px;
    background: var(--pink);
    opacity: 0.6;
}
.feat {
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--cocoa);
    padding: 0 14px;
    border-right: 1px solid rgba(42, 26, 20, 0.12);
}
.feat:last-child {
    border-right: none;
}
.feat i {
    display: block;
    font-size: 1.35rem;
    color: var(--pink);
    margin-bottom: 10px;
}
.hero-img {
    /* width: 100%; */
    width: auto;
    height: 100%;
    object-fit: cover;
    /* object-position: top; */
}
.hero-visual {
    position: relative;
    border-radius: 0;
    text-align: end;
}
@media (min-width: 992px) {
    .hero-visual {
        height: 430px;
    }
}

/* About */
.about {
    background: var(--cream);
    position: relative;
}
.eyebrow {
    color: var(--pink);
    letter-spacing: 0.24em;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 500;
}
.about h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-top: 14px;
}
.about p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.9;
    max-width: 460px;
}
.sign {
    font-family: "Great Vibes", cursive;
    font-size: 1.7rem;
    color: var(--pink);
}
.about-img {
    border-radius: 6px;
    width: 100%;
    height: 290px;
    object-fit: cover;
    box-shadow: 0 18px 40px rgba(42, 26, 20, 0.14);
}

/* Section head */
.sec-head {
    text-align: center;
    margin-bottom: 38px;
}
.sec-head .t {
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--pink);
    font-weight: 500;
}
.sec-head .h {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    color: var(--pink);
}
.sec-head .h::before,
.sec-head .h::after {
    content: "";
    display: block;
    height: 1px;
    width: 40px;
    background: currentColor;
    opacity: 0.55;
}
.sec-head .h i {
    font-size: 0.72rem;
}
.services .sec-head .h {
    color: var(--pink);
}

.category-slider .tslide,
.service-slider .tslide {
    padding: 0 0.75rem;
}

.category-slider .cat,
.service-slider .svc {
    margin: 0;
}

/* Categories */
.categories {
    background: var(--rose-bg);
}
.cat {
    text-align: center;
}
.cat img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0 10px 22px rgba(42, 26, 20, 0.1);
    transition: transform 0.35s ease;
}
.cat:hover img {
    transform: translateY(-6px) scale(1.04);
}
.cat p {
    margin-top: 14px;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--cocoa);
}

/* Services */
.services {
    background: var(--cocoa);
}
.services .sec-head .t {
    color: #fff;
}
.svc {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}
.svc:hover {
    transform: translateY(-6px);
}
.svc img {
    width: 100%;
    height: 112px;
    object-fit: cover;
}
.svc .badge-ic {
    position: absolute;
    top: 98px;
    left: 14px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 0.85rem;
}
.svc .bd {
    padding: 26px 14px 20px;
}
.svc h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.svc p {
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Gallery */
.gallery {
    /* background: var(--cream); */
    background: var(--rose-bg);
}
.gitem {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: zoom-in;
}
.gitem img {
    width: 100%;
    height: 100%;
    /* height: 120px; */
    object-fit: cover;
    border-radius: 6px;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}
.gitem::after {
    content: "\F52A";
    font-family: "bootstrap-icons";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    background: rgba(42, 26, 20, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gitem:hover img {
    transform: scale(1.06);
    filter: saturate(1.1);
}
.gitem:hover::after {
    opacity: 1;
}
.gallery-slider .tslide {
    padding: 0 8px;
    box-sizing: border-box;
}
.gallery-slider .gitem img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* Lightbox */
.lb {
    position: fixed;
    inset: 0;
    background: rgba(26, 14, 11, 0.92);
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 26px;
}
.lb.open {
    display: flex;
}
.lb img {
    max-width: min(92vw, 860px);
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.lb .lb-cap {
    position: absolute;
    bottom: 26px;
    left: 0;
    right: 0;
    text-align: center;
    color: #f3e6df;
    font-size: 0.8rem;
}
.lb button {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb button:hover {
    background: var(--pink);
}
.lb .lb-close {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
}
.lb .lb-prev {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}
.lb .lb-next {
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

/* Testimonials */
.testimonials {
    background: var(--cream);
    padding-bottom: 70px;
    overflow: hidden;
}
.testimonial-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
}
.tslider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 8px;
}
.ttrack {
    display: flex;
    align-items: stretch;
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.4, 0.1, 0.2, 1);
}
.tslide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    padding: 0 8px;
    box-sizing: border-box;
}
.tcard {
    background: #fdf7f2;
    border: 1px solid #f4cecf;
    border-radius: 10px;
    padding: 20px 20px 18px;
    height: 100%;
    min-height: 185px;
    /* box-shadow: 0 8px 22px rgba(42, 26, 20, 0.06); */
}
.tcard .qt {
    color: var(--pink);
    font-size: 3rem;
    line-height: 1.5rem;
    font-family: "Playfair Display", serif;
    margin-top: 7px;
}
.tcard p {
    font-size: 0.76rem;
    line-height: 1.8;
    color: var(--cocoa-soft);
    margin: 0;
}
.tcard .who {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.76rem;
    color: var(--cocoa);
}
.tcard .who img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.tnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #f4cecf;
    border-radius: 50%;
    background: transparent;
    /* color: #c9a9a9; */
    color: #e0798a;
    font-size: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(42, 26, 20, 0.08);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
    padding: 0;
    margin: 0;
}
.tnav:hover {
    background: var(--pink);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}
.tnav i {
    padding: 0;
    margin: 0;
}
.tnav.prev {
    left: -52px;
}
.tnav.next {
    right: -52px;
}
.tdots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
}
.tdots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: #e3cccc;
    padding: 0;
    transition:
        width 0.3s ease,
        background 0.3s ease;
}
.tdots button.on {
    background: var(--pink);
    width: 20px;
    border-radius: 4px;
}
@media (max-width: 1100px) {
    .testimonial-slider {
        padding: 0 42px;
    }
    .tnav.prev {
        left: 0;
    }
    .tnav.next {
        right: 0;
    }
    .tslide {
        flex-basis: 50%;
        width: 50%;
    }
}
@media (max-width: 575.98px) {
    .testimonial-slider {
        padding: 0 38px;
    }
    .tslide {
        flex-basis: 100%;
        width: 100%;
        padding: 0 4px;
    }
    .tnav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    .tnav.prev {
        left: 0;
    }
    .tnav.next {
        right: 0;
    }
    .tcard {
        min-height: 180px;
    }
}

/* CTA */
.cta {
    background: var(--rose-bg);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}
.cta .item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cta .ic {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff;
    color: var(--pink);
    font-size: 1.1rem;
    box-shadow: 0 6px 14px rgba(42, 26, 20, 0.08);
}
.cta h5 {
    font-size: 0.95rem;
    margin: 0 0 3px;
}
.cta small {
    color: var(--muted);
    font-size: 0.76rem;
}
.cta .wa {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--cocoa);
    color: #e9d9d2;
    padding: 52px 0 0;
}
footer h6 {
    color: #fff;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}
footer a {
    color: #d8c5bd;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 9px;
}
footer a:hover {
    color: var(--pink);
}
footer p {
    font-size: 0.78rem;
    line-height: 1.9;
    color: #c9b6ae;
}
.f-contact li {
    display: flex;
    gap: 9px;
    font-size: 0.78rem;
    color: #d8c5bd;
    margin-bottom: 11px;
    line-height: 1.5;
}
.f-contact i {
    color: var(--pink);
    margin-top: 2px;
}
.f-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    margin-right: 8px;
}
.pay span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #2a1a14;
    border-radius: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 6px 10px;
    margin: 0 6px 8px 0;
}
.fbottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 16px 0;
    font-size: 0.74rem;
    color: #b8a49c;
}
.fbottom a {
    display: inline;
    margin: 0 0 0 22px;
}

/* Decorative pattern backgrounds */
.about,
.gallery,
.testimonials {
    position: relative;
}
.about::before,
.gallery::before,
.testimonials::before,
.categories::before,
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(224, 121, 138, 0.16) 1px,
        transparent 0
    );
    background-size: 22px 22px;
    opacity: 0.7;
}
.categories {
    position: relative;
    overflow: hidden;
}
.categories::before {
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(209, 95, 115, 0.18) 1px,
        transparent 0
    );
    background-size: 26px 26px;
}
.hero::before {
    background-image: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.35) 0 2px,
        transparent 2px 14px
    );
    opacity: 0.3;
}
.services {
    position: relative;
    overflow: hidden;
}
.services::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(255, 255, 255, 0.09) 1px,
        transparent 0
    );
    background-size: 24px 24px;
}
.about > .container,
.gallery > .container,
.testimonials > .container,
.categories > .container,
.services > .container,
.hero > .container-fluid {
    position: relative;
    z-index: 1;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(224, 121, 138, 0.07) 0 10px,
        transparent 10px 20px
    );
}
.cta > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .sec {
        padding: 46px 0;
    }
    .about-img {
        height: 240px;
        margin-top: 26px;
    }
    .feat {
        border-right: none;
        margin-bottom: 14px;
    }
}

/* ============ Sub page styles ============ */
.page-hero {
    background: linear-gradient(180deg, #fdf1ee 0%, #fbe6e6 100%);
    position: relative;
    overflow: hidden;
    padding: 54px 0 48px;
    text-align: center;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(
        circle at 1px 1px,
        rgba(224, 121, 138, 0.16) 1px,
        transparent 0
    );
    background-size: 22px 22px;
    opacity: 0.7;
}
.page-hero > .container {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    font-weight: 600;
    margin: 0;
}
.page-hero .kicker {
    font-family: "Great Vibes", cursive;
    font-size: 1.4rem;
    color: var(--pink);
    margin-bottom: 2px;
}
.page-hero .divider-heart {
    justify-content: center;
    margin: 16px 0 10px;
}
.page-hero .divider-heart span {
    width: 52px;
}
.crumbs {
    font-size: 0.74rem;
    color: var(--muted);
}
.crumbs a {
    color: var(--pink);
}
.crumbs i {
    font-size: 0.6rem;
    margin: 0 7px;
    color: #c9a9a9;
}

.card-soft {
    background: #fff;
    border: 1px solid #f3dede;
    border-radius: 10px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 10px 24px rgba(42, 26, 20, 0.05);
}
.card-soft h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}
.card-soft p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.85;
    margin: 0;
}
.card-soft .ic {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--blush);
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.lead-p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.95;
}

/* Product cards (shop-ready) */
.prod {
    background: #fff;
    border: 1px solid #f3dede;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.prod:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 16px 30px rgba(42, 26, 20, 0.1); */
}
.prod img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.prod .bd {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.prod h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.prod p {
    font-size: 0.76rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 14px;
}
.prod .row-b {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.prod .price {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--cocoa);
}
.prod .price small {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.7rem;
}
.btn-outline-pink {
    border: 1px solid var(--pink);
    color: var(--pink);
    background: transparent;
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.76rem;
}
.btn-outline-pink:hover {
    background: var(--pink);
    color: #fff;
}
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}
.chip {
    border: 1px solid #eccfd3;
    background: #fff;
    color: var(--cocoa);
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 0.78rem;
}
.chip.on,
.chip:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: #fff;
}

/* Forms */
.form-control,
.form-select {
    border: 1px solid #eccfd3;
    border-radius: 8px;
    font-size: 0.82rem;
    padding: 11px 14px;
    background: #fff;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 0.18rem rgba(224, 121, 138, 0.15);
}
.form-label {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0dcdc;
    height: auto;
    min-height: 280px;
}
.map-wrap iframe {
    width: 100%;
    height: auto;
    min-height: 280px;
    border: 0;
    display: block;
}

/* Legal / prose pages */
.prose h3 {
    font-size: 1.05rem;
    margin: 30px 0 10px;
}
.prose p,
.prose li {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.95;
}
.prose ul {
    padding-left: 18px;
}

/* Accordion (FAQ) */
.accordion-item {
    border: 1px solid #f3dede;
    border-radius: 10px !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.accordion-button {
    font-size: 0.88rem;
    background: #fff;
    color: var(--cocoa);
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: var(--blush);
    color: var(--pink);
}
.accordion-body {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.9;
}

/* Cart badge (hidden until shop mode is enabled) */
.cart-btn {
    position: relative;
}
.cart-btn .count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--pink);
    color: #fff;
    border-radius: 999px;
    font-size: 0.6rem;
    min-width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card links keep the text colour of the card, not the default link blue */
a.svc,
a.cat,
a.card-soft,
a.prod {
    color: inherit;
}
a.card-soft:hover h4 {
    color: var(--pink);
}
.prod .row-b .btn {
    white-space: nowrap;
}
.prod .price {
    line-height: 1.4;
}

/*** Signature product section ***/
.signature-slider {
    position: relative;
    padding: 0 30px; /* space for nav buttons */
}
.signature-slider .tnav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border: 1px solid var(--pink);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--pink);
    font-size: 1.2rem;
}
.signature-slider .tnav:hover {
    background: var(--pink);
    color: #ffffff;
}
.signature-slider .tnav.prev {
    left: -15px;
}
.signature-slider .tnav.next {
    right: -15px;
}
.signature-slider .tslider-viewport {
    overflow: hidden;
}
.signature-slider .ttrack {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0.1, 0.2, 1);
}
.signature-slider .tslide {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}
.signature-slider .tdots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.signature-slider .tdots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}
.signature-slider .tdots button.on {
    background: var(--primary, #d48c7a);
}
