:root {
    --text-dark: #1e1e1e;
    --muted: #6b6b6b;
    --accent: #8d7d6a;
    --accent-dark: #7a6a57;
    --white: #ffffff;
    --bg-soft: #f7f6f3;
    --border-soft: rgba(0, 0, 0, .06);
    --black: #000;
    --promo-bg: #1f1f1f;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: .25s ease;
}

.page-wrap {
    width: 100%;
    overflow: hidden;
}

.site-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: all .3s ease;
}

.promo-bar {
    background: var(--promo-bg);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.top-nav-desktop {
    background: #fff;
    transition: all .3s ease;
}

.desktop-header-inner {
    position: relative;
    min-height: 115px;
    width: 100%;
}

.desktop-logo-wrap {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.desktop-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.desktop-icons {
    position: absolute;
    top: 26px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 3;
}

.desktop-icons a {
    color: #222;
    font-size: 19px;
    line-height: 1;
}

.desktop-icons a:hover {
    color: var(--accent);
}

.desktop-menu {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 42px 14px;
    z-index: 2;
}

.desktop-menu-list {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.desktop-menu-list li {
    list-style: none;
    position: relative;
}

.desktop-menu-list li a,
.menu-with-icon {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    color: #222;
    padding: 10px 4px;
    text-transform: uppercase;
    position: relative;
    background: none;
    border: none;
}

.desktop-menu-list li a::after,
.menu-with-icon::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: .3s ease;
}

.desktop-menu-list li a:hover::after,
.menu-with-icon:hover::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    padding: 10px 0;
    min-width: 220px;
}

.dropdown-item {
    font-size: 13px;
    padding: 10px 18px;
    color: #222;
}

.dropdown-item:hover {
    background: #f7f6f3;
    color: var(--accent-dark);
}

/* =========================
   MOBILE HEADER
========================= */

.top-nav-mobile {
    background: #fff;
    transition: all .3s ease;
}


/* fixed state */
.site-header.is-fixed .top-nav-desktop,
.site-header.is-fixed .top-nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    animation: headerSlideDown .35s ease;
}

.site-header.is-fixed .promo-bar {
    display: none;
}

.site-header.is-fixed .desktop-header-inner {
    position: relative;
    min-height: 115px;
    width: 100%;
}

.site-header.is-fixed .desktop-logo-wrap {
    top: 12px;
}

.site-header.is-fixed .desktop-logo {
    height: 100px;
}

.site-header.is-fixed .desktop-icons {
    top: 18px;
    right: 28px;
}

.site-header.is-fixed .desktop-menu {
    padding: 0 42px 10px;
}

.site-header.is-fixed .mobile-header-inner {
    min-height: 64px;
}

body.header-fixed-padding {
    padding-top: 110px;
}

@media (max-width: 991.98px) {
    body.header-fixed-padding {
        padding-top: 72px;
    }
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.mobile-left,
.mobile-right {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 90px;
}

.mobile-right {
    justify-content: flex-end;
}

.mobile-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.mobile-action {
    font-size: 20px;
    color: #222;
    padding: 8px;
    line-height: 1;
}

.mobile-action:hover {
    color: var(--accent);
}

.mobile-menu-panel {
    padding: 18px 16px 22px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.mobile-menu-panel a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    color: #222;
    text-transform: uppercase;
}

.mobile-menu-panel a:hover {
    color: var(--accent);
}

/* =========================
   HERO / CAROUSEL
========================= */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel-item,
.hero-slide {
    min-height: 620px;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0, 0, 0, .34), rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .30)),
        linear-gradient(to bottom, rgba(0, 0, 0, .06), rgba(0, 0, 0, .42));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
    transform: translateY(-8px);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, .94);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 18px;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    color: #fff;
    font-size: 88px;
    line-height: .92;
    font-weight: 400;
    margin: 0 0 18px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-btn,
.contact-btn {
    min-width: 174px;
    height: 46px;
    padding: 0 20px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    transition: .25s ease;
    text-transform: uppercase;
    letter-spacing: .09em;
    border: 1px solid transparent;
}

.hero-btn-primary,
.contact-btn {
    background: #9a8b77;
    color: #fff;
    border-color: #9a8b77;
}

.hero-btn-primary:hover,
.contact-btn:hover {
    background: #8a7b67;
    border-color: #8a7b67;
    color: #fff;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .7);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: #fff;
}

.hero-mini-points {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    font-weight: 400;
}

.hero-mini-points span {
    position: relative;
    padding-left: 14px;
}

.hero-mini-points span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d9cab8;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 7%;
    opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background-size: 42% 42%;
    backdrop-filter: blur(4px);
}

.hero-carousel .carousel-indicators {
    margin-bottom: 24px;
    gap: 8px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 30px;
    height: 4px;
    border: none;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, .45);
    opacity: 1;
    margin: 0;
}

.hero-carousel .carousel-indicators .active {
    background: #fff;
}

/* =========================
   SECTION GENERAL
========================= */
.section-block {
    padding: 90px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-title-wrap {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-kicker {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .22em;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 14px;
    font-weight: 600;
    color: #1f1f1f;
}

.section-desc {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

/* =========================
   CATEGORY CARDS
========================= */
.category-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    padding: 34px 28px;
    height: 100%;
    transition: .25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
}

.category-number {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2eee9;
    color: var(--accent-dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.category-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.category-text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.category-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: #444;
    font-size: 14px;
}

.category-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 8px;
}

.text-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent-dark);
}

.text-link:hover {
    color: #5f5244;
}

/* =========================
   PRODUCT CARDS
========================= */
.product-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    overflow: hidden;
    height: 100%;
    transition: .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
}

.product-media {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: #ece7e1;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    color: #3c342c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 8px 12px;
}

.product-body {
    padding: 24px 22px;
}

.product-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-meta {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-soft {
    min-width: 132px;
    height: 42px;
    border: 1px solid #d9d0c5;
    background: #f8f5f1;
    color: #4c4137;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-soft:hover {
    background: #efe7dd;
    color: #342c25;
}

/* =========================
   WHY CHOOSE US
========================= */
.why-wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
}

.why-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    padding: 42px 36px;
}

.why-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.why-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.why-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-list strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
    color: #1f1f1f;
}

.why-list span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
   CTA
========================= */
.cta-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-bottom: 12px;
}

.cta-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 90px 20px;
}

.cta-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 28px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .86);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199.98px) {

    .hero-carousel,
    .hero-carousel .carousel-item,
    .hero-slide,
    .hero-content {
        min-height: 580px;
    }

    .hero-title {
        font-size: 76px;
    }

    .desktop-menu {
        padding-left: 26px;
        padding-right: 26px;
    }

    .desktop-menu-list {
        gap: 14px;
    }

    .why-wrap {
        grid-template-columns: 1fr;
    }

    .why-image {
        min-height: 420px;
    }
}

@media (max-width: 991.98px) {

    .hero-carousel,
    .hero-carousel .carousel-item,
    .hero-slide,
    .hero-content {
        min-height: 520px;
    }

    .hero-title {
        font-size: 62px;
    }

    .section-block {
        padding: 75px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 40px;
    }
}

.mobile-offcanvas {
    width: 290px;
    background: #fff;
    border-right: 1px solid rgba(0, 0, 0, .06);
}

.mobile-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.mobile-offcanvas-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.mobile-offcanvas-body {
    padding: 0;
}

.mobile-menu-panel {
    padding: 14px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
}

.mobile-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    color: #222;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    transition: .25s ease;
}

.mobile-menu-panel a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.mobile-menu-panel a:last-child {
    border-bottom: none;
}


/* =========================
   FOOTER BASE
========================= */
.footer {
    width: min(100% - 40px, 1600px);
    margin: 0 auto;
    background: #9a8b77;
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
    padding: 46px 48px 20px;
    overflow: hidden;
    box-shadow: 0 -10px 34px rgba(0, 0, 0, .08);
}

/* =========================
   TOP
========================= */
.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.footer-heading {
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.footer-mail {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-mail i {
    font-size: 20px;
    color: #fff;
}

.footer-mail:hover {
    background: rgba(255, 255, 255, .24);
    transform: translateY(-2px);
}

/* =========================
   DIVIDER
========================= */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .14);
    margin: 30px 0 18px;
}

/* =========================
   BOTTOM
========================= */
.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: .3s ease;
}

.footer-brand:hover .footer-logo {
    opacity: .85;
    transform: scale(1.03);
}

.footer-brand i {
    font-size: 12px;
    position: relative;
    top: -1px;
}

.footer-brand:hover {
    opacity: .85;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .05em;
    transition: .3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    opacity: .8;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-socials a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    background: rgba(255, 255, 255, .05);
    transition: all .3s ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-2px);
}

/* =========================
   LARGE DESKTOP
========================= */
@media (min-width: 1400px) {
    .footer {
        padding: 52px 56px 22px;
    }

    .footer-heading {
        font-size: 42px;
    }

    .footer-nav {
        gap: 34px;
    }
}

/* =========================
   LAPTOP
========================= */
@media (max-width: 991.98px) {
    .footer {
        width: calc(100% - 32px);
        padding: 38px 28px 18px;
        border-top-left-radius: 22px;
        border-top-right-radius: 22px;
    }

    .footer-heading {
        font-size: 32px;
        line-height: 1.1;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-nav {
        justify-content: flex-start;
        gap: 18px 22px;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .page-title {
        font-size: 68px;
    }

    .section-block {
        padding: 74px 0;
    }
}

/* =========================
   TABLET
========================= */
@media (max-width: 767.98px) {
    .footer {
        width: calc(100% - 24px);
        padding: 32px 20px 18px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .footer-top {
        gap: 16px;
    }

    .footer-heading {
        font-size: 26px;
        line-height: 1.12;
    }

    .footer-divider {
        margin: 24px 0 16px;
    }

    .footer-nav {
        gap: 14px 18px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 575.98px) {
    .footer {
        width: calc(100% - 16px);
        padding: 28px 16px 16px;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }

    .footer-top {
        align-items: flex-start;
        gap: 14px;
    }

    .footer-heading {
        font-size: 22px;
        line-height: 1.15;
    }

    .footer-mail {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .footer-mail i {
        font-size: 17px;
    }

    .footer-divider {
        margin: 20px 0 14px;
    }

    .footer-bottom {
        gap: 14px;
    }

    .footer-brand {
        font-size: 14px;
    }

    .footer-nav {
        justify-content: flex-start;
        gap: 12px 16px;
    }

    .footer-nav a {
        font-size: 10px;
        letter-spacing: .04em;
    }

    .footer-socials a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}


.page-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: linear-gradient(to right, rgba(0, 0, 0, .45), rgba(0, 0, 0, .18) 45%, rgba(0, 0, 0, .35)),
    linear-gradient(to bottom, rgba(0, 0, 0, .10), rgba(0, 0, 0, .42)),
    url("{{ asset('assets/images/hero-page.png') }}") center center / cover no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
}

.page-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .95);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 18px;
}

.page-title {
    font-family: 'Great Vibes', cursive;
    color: #fff;
    font-size: 86px;
    line-height: .9;
    font-weight: 400;
    margin: 0 0 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .18);
}

.page-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .92);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}





/* SECTION */
.section-block {
    padding: 90px 0;
}

.section-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 12px;
    font-weight: 600;
    color: #1f1f1f;
}

.section-desc {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}


.info-card,
.form-card {
    background: #fff;
    border: 1px solid var(--border-soft);
}

.info-card {
    padding: 40px 34px;
    position: sticky;
    top: 24px;
}

.info-badge {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 14px;
}

.info-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 14px;
    color: #1f1f1f;
}

.info-text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.appointment-points {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.appointment-points li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
    color: #444;
    font-size: 14px;
    line-height: 1.8;
}

.appointment-points li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 9px;
}

.hours-box {
    background: var(--bg-soft);
    padding: 22px 20px;
    border: 1px solid rgba(0, 0, 0, .05);
    margin-bottom: 24px;
}

.hours-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 12px;
    color: #3c332b;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    font-size: 14px;
    color: #51473e;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-mini {
    display: grid;
    gap: 14px;
}

.contact-mini-item {
    padding: 16px 18px;
    background: #fcfbf9;
    border: 1px solid rgba(0, 0, 0, .05);
}

.contact-mini-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

.contact-mini-value {
    font-size: 14px;
    color: #3f3831;
    line-height: 1.7;
}

/* FORM */
.form-card {
    padding: 40px 34px;
}

.form-top {
    margin-bottom: 30px;
}

.form-badge {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: 12px;
}

.form-title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 12px;
    color: #1f1f1f;
}

.form-subtitle {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #453b33;
    margin-bottom: 10px;
}


.form-control,
.form-select {
    height: 58px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: var(--input-bg);
    padding: 0 18px;
    font-size: 16px;
    color: #1f1f1f;
    box-shadow: none !important;
    transition: .25s ease;
}

textarea.form-control {
    min-height: 150px;
    padding-top: 16px;
    resize: none;
}


.form-control::placeholder,
textarea.form-control::placeholder {
    color: #8a8a8a;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
    border-color: #cdbda7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(205, 189, 167, .12) !important;
}

.form-select {
    cursor: pointer;
}

.form-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}

@media (max-width: 767px) {
    .form-card {
        padding: 24px;
    }

    .form-control,
    .form-select {
        height: 54px;
        font-size: 14px;
    }

    textarea.form-control {
        min-height: 130px;
    }
}

.service-option {
    display: block;
    position: relative;
    cursor: pointer;
}

.service-option>input {
    position: absolute;
    opacity: 0;
}

.service-box {
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fbfaf8;
    padding: 18px 16px;
    min-height: 140px;
    transition: .25s ease;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
}

.service-top {
    margin-bottom: 12px;
}

.service-radio {
    pointer-events: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #cdbda7;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.custom-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #cdbda7;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: .25s ease;
}

.service-input:checked+.service-box {
    border-color: #cdbda7;
    background: #f2eee9;
}

.service-input:checked+.service-box .custom-radio::after {
    transform: translate(-50%, -50%) scale(1);
}

.service-name {
    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.service-note {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    min-height: 56px;
    border: none;
    border-radius: 0;
    background: #9a8b77;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: .25s ease;
}

.submit-btn:hover {
    background: #887864;
}



@media (max-width: 767.98px) {
    .mobile-header-inner {
        min-height: 68px;
    }

    .mobile-logo {
        height: 100px;
    }

    .hero-carousel,
    .hero-carousel .carousel-item,
    .hero-slide,
    .hero-content {
        min-height: 470px;
    }

    .hero-inner {
        max-width: 100%;
        transform: none;
    }

    .hero-kicker {
        font-size: 10px;
        min-height: 32px;
        padding: 0 14px;
        margin-bottom: 14px;
    }

    .hero-title {
        font-size: 50px;
        line-height: .96;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-btn,
    .contact-btn {
        min-width: 145px;
        height: 42px;
        font-size: 10px;
    }

    .hero-mini-points {
        font-size: 11px;
        gap: 8px 16px;
    }

    .page-hero,
    .page-hero-content {
        min-height: 360px;
    }

    .page-title {
        font-size: 52px;
        line-height: .96;
    }

    .page-subtitle {
        font-size: 13px;
    }

    .info-card,
    .form-card {
        padding: 30px 22px;
    }

    .info-title,
    .form-title {
        font-size: 28px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 31px;
    }

    .section-desc {
        font-size: 14px;
    }

    .product-media {
        height: 380px;
    }

    .why-card {
        padding: 32px 24px;
    }

    .cta-inner {
        padding: 75px 18px;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .promo-bar {
        font-size: 10px;
        letter-spacing: .08em;
        padding: 7px 10px;
    }

    .mobile-header-inner {
        padding: 0 10px;
    }

    .mobile-left,
    .mobile-right {
        min-width: 78px;
    }

    .mobile-logo {
        height: 80px;
    }

    .hero-carousel,
    .hero-carousel .carousel-item,
    .hero-slide,
    .hero-content {
        min-height: 420px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-btn,
    .contact-btn,
    .btn-soft {
        width: 100%;
        max-width: 220px;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        display: none;
    }

    .section-block {
        padding: 62px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .category-card,
    .product-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta-title {
        font-size: 28px;
    }

}


@media (max-width: 1199.98px) {

    .info-card {
        position: relative;
        top: auto;
    }
}



.sidebar-card,
.shop-main-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
}

.sidebar-card {
    padding: 30px 24px;
    position: sticky;
    top: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}

.filter-group {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.filter-group:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.filter-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 16px;
    color: #3f352d;
}

.filter-search {
    position: relative;
}

.filter-search .form-control {
    padding-left: 16px;
}

.filter-list {
    display: grid;
    gap: 14px;
}

.custom-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #49413a;
    cursor: pointer;
    line-height: 1.5;
}

.custom-check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #9a8b77;
}

.sidebar-btn,
.sidebar-btn-outline {
    width: 100%;
    min-height: 52px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: .25s ease;
}

.sidebar-btn {
    border: none;
    background: #9a8b77;
    color: #fff;
}

.sidebar-btn:hover {
    background: #887864;
    color: #fff;
}

.sidebar-btn-outline {
    border: 1px solid #d8cdc0;
    background: #f8f4ef;
    color: #51473f;
}

.sidebar-btn-outline:hover {
    background: #efe7dd;
    color: #342c25;
}

.shop-main-card {
    padding: 30px;
}

.shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.shop-results h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1f1f1f;
}

.shop-results p {
    margin: 0;
    color: #7a726b;
    font-size: 14px;
    line-height: 1.7;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.shop-sort-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: #4b4138;
}

.shop-sort .form-select {
    min-width: 220px;
    min-height: 48px;
    background: #fbfaf8;
}

.product-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 9px;
    overflow: hidden;
    transition: .3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-media {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #ece7e1;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff;
    color: #3c342c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 8px 12px;
}

.product-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #5a5046;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.product-favorite:hover {
    background: #9a8b77;
    color: #fff;
}

.product-body {
    padding: 22px 20px 24px;
}

.product-category {
    color: #9a8b77;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 14px;
    color: #1f1f1f;
}

.product-meta {
    color: #7a726b;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 14px;
    min-height: 44px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.product-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    background: #f6f1eb;
    color: #5e5145;
    font-size: 11px;
    font-weight: 600;
}

.product-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1;
}

.product-old-price {
    font-size: 13px;
    color: #9a938c;
    text-decoration: line-through;
    margin-top: 4px;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-shop-primary,
.btn-shop-outline {
    min-height: 46px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .10em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.btn-shop-primary {
    flex: 1 1 140px;
    border: none;
    background: #9a8b77;
    color: #fff;
}

.btn-shop-primary:hover {
    background: #887864;
    color: #fff;
}

.btn-shop-outline {
    flex: 1 1 120px;
    border: 1px solid #d9d0c5;
    background: #f8f5f1;
    color: #4c4137;
}

.btn-shop-outline:hover {
    background: #efe7dd;
    color: #342c25;
}

.offcanvas {
    border: none;
}

.offcanvas-header {
    padding: 24px 24px 10px;
}

.offcanvas-title {
    font-size: 18px;
    font-weight: 600;
}

.offcanvas-body {
    padding: 10px 24px 24px;
}

@media (max-width: 1199.98px) {

    .sidebar-card {
        position: relative;
        top: auto;
    }


}

@media (max-width: 767.98px) {

    .shop-main-card {
        padding: 22px 18px 26px;
    }

    .sidebar-card {
        padding: 24px 18px;
    }

    .shop-results h2 {
        font-size: 26px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-price {
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {

    .shop-sort {
        width: 100%;
    }

    .shop-sort .form-select {
        min-width: 100%;
    }

    .shop-topbar {
        margin-bottom: 24px;
    }


    .product-body {
        padding: 18px;
    }
}

.product-details-section {
    padding: 90px 0;
}

.product-gallery,
.product-details-card,
.details-box,
.related-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
}

.product-gallery {
    padding: 20px;
}

.main-product-image {
    height: 580px;
    overflow: hidden;
    background: #f5f1ec;
    border-radius: 24px;
}

.main-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-image {
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f5f1ec;
}

.thumbnail-image.active {
    border-color: #9a8b77;
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details-card {
    padding: 34px;
    position: sticky;
    top: 24px;
}

.product-category {
    display: inline-flex;
    min-height: 34px;
    padding: 0 14px;
    background: #f6f1eb;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 18px;
}

.product-description {
    font-size: 15px;
    line-height: 1.9;
    color: #6d655e;
    margin-bottom: 28px;
}

.product-meta-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    margin-bottom: 14px;
}

.meta-label {
    color: #7b736d;
    font-size: 13px;
}

.meta-value {
    font-weight: 600;
}

.product-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.product-tags span {
    padding: 8px 14px;
    background: #f6f1eb;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.qty-cart-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.qty-box {
    display: flex;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    overflow: hidden;
}

.qty-btn {
    width: 48px;
    height: 52px;
    border: none;
    background: #f8f5f1;
}

.qty-input {
    width: 60px;
    text-align: center;
    border: none;
}

.add-cart-btn {
    flex: 1;
    min-height: 52px;
    border: none;
    background: #1f1f1f;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.wishlist-btn {
    width: 100%;
    min-height: 52px;
    border: 1px solid #ddd;
    background: #f8f5f1;
    font-weight: 700;
    text-transform: uppercase;
}

.related-section {
    padding: 80px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
}

.related-card {
    padding: 16px;
}

.related-media {
    height: 220px;
    overflow: hidden;
    background: #f5f1ec;
}

.related-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-title {
    font-weight: 600;
    margin-top: 12px;
}

.related-price {
    font-weight: 700;
    margin-top: 6px;
}

@media(max-width:991px) {
    .product-details-card {
        position: relative;
    }

    .main-product-image {
        height: 420px;
    }
}

.breadcrumb-bar {
    padding: 18px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 13px;
}

.breadcrumb-item {
    font-weight: 500;
    color: #7a726b;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #b3a79c;
    padding: 0 10px;
    font-weight: 400;
}

.breadcrumb-item a {
    color: #6b5f55;
    text-decoration: none;
    transition: .2s ease;
}

.breadcrumb-item a:hover {
    color: #1f1f1f;
}

.breadcrumb-item.active {
    color: #1f1f1f;
    font-weight: 600;
}

.mini-link {
    font-size: 13px;
    font-weight: 600;
    color: #5d5248;
    text-decoration: none;
    transition: .2s ease;
    white-space: nowrap;
}

.mini-link:hover {
    color: #000;
}

@media (max-width: 576px) {
    .breadcrumb-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}




    .policy-hero{
        position:relative;
        padding:140px 0 110px;
        overflow:hidden;
        background:
            linear-gradient(rgba(0,0,0,.68), rgba(0,0,0,.55)),
            url('{{ asset('assets/images/hero-page.png') }}') center center/cover no-repeat;
        color:#fff;
    }

    .policy-hero::before{
        content:'';
        position:absolute;
        inset:0;
        background:linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.4));
    }

    .policy-hero .container{
        position:relative;
        z-index:2;
    }

    .policy-kicker{
        display:inline-flex;
        align-items:center;
        gap:10px;
        font-size:12px;
        letter-spacing:.25em;
        text-transform:uppercase;
        font-weight:700;
        margin-bottom:22px;
        color:rgba(255,255,255,.85);
    }

    .policy-kicker::before{
        content:'';
        width:55px;
        height:1px;
        background:rgba(255,255,255,.55);
    }

    .policy-title{
        font-size:64px;
        line-height:1.05;
        font-weight:700;
        margin-bottom:22px;
        letter-spacing:-1.8px;
        max-width:700px;
    }

    .policy-subtitle{
        max-width:720px;
        font-size:17px;
        line-height:2;
        color:rgba(255,255,255,.82);
        margin:0;
    }

    .policy-section{
        position:relative;
        padding:100px 0;
        background:#f8f7f5;
    }

    .policy-card{
        background:#ffffff;
        padding:55px;
        border:1px solid rgba(0,0,0,.05);
        box-shadow:
            0 10px 30px rgba(0,0,0,.03),
            0 35px 90px rgba(0,0,0,.06);
    }

    .policy-heading{
        font-size:40px;
        font-weight:700;
        line-height:1.2;
        margin-bottom:14px;
        color:#1f1720;
        letter-spacing:-1px;
    }

    .policy-text{
        color:#6d6d6d;
        font-size:16px;
        line-height:2;
        max-width:760px;
        margin-bottom:45px;
    }

    .policy-list{
        display:grid;
        gap:22px;
    }

    .policy-item{
        display:flex;
        align-items:flex-start;
        gap:18px;
        padding:24px;
        border-radius:22px;
        background:#fcfbf9;
        border:1px solid rgba(0,0,0,.05);
        transition:.35s ease;
    }

    .policy-item:hover{
        border-color:rgba(154,139,119,.25);
        box-shadow:0 20px 45px rgba(0,0,0,.05);
    }

    .policy-count{
        min-width:46px;
        height:46px;
        border-radius:50%;
        background:#9a8b77;
        color:#fff;
        font-size:13px;
        font-weight:700;
        display:flex;
        align-items:center;
        justify-content:center;
        letter-spacing:.08em;
        box-shadow:0 10px 20px rgba(154,139,119,.28);
    }

    .policy-item p{
        margin:0;
        color:#444;
        line-height:1.9;
        font-size:15px;
    }

    .note-box{
        margin-top:35px;
        padding:30px;
        background:#f5f1ea;
        border:1px solid rgba(0,0,0,.05);
    }

    .note-title{
        font-size:22px;
        font-weight:700;
        margin-bottom:18px;
        color:#1f1720;
    }

    .note-box ul{
        padding-left:18px;
    }

    .note-box li{
        margin-bottom:10px;
        color:#444;
        line-height:1.8;
    }

    .note-box p{
        color:#444;
        line-height:1.9;
    }

    .continue-btn{
        margin-top:42px;
        width:100%;
        height:62px;
        border:none;
        background:#9a8b77;
        color:#fff;
        text-transform:uppercase;
        font-size:12px;
        letter-spacing:.18em;
        font-weight:700;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
        transition:.3s ease;
    }

    .continue-btn:hover{
        background:#877764;
        color:#fff;
        box-shadow:0 18px 35px rgba(154,139,119,.3);
    }

    @media(max-width:991px){

        .policy-title{
            font-size:50px;
        }

        .policy-card{
            padding:40px;
        }
    }

    @media(max-width:767px){

        .policy-hero{
            padding:110px 0 90px;
        }

        .policy-title{
            font-size:38px;
            line-height:1.15;
        }

        .policy-subtitle{
            font-size:15px;
            line-height:1.9;
        }

        .policy-section{
            padding:70px 0;
        }

        .policy-card{
            padding:24px;
            border-radius:22px;
        }

        .policy-heading{
            font-size:30px;
        }

        .policy-item{
            padding:18px;
            border-radius:12px;
        }

        .policy-count{
            min-width:40px;
            height:40px;
            font-size:12px;
        }

        .continue-btn{
            height:58px;
        }
    }


    .appointment-page1{
        padding:90px 0;
        background:#f8f7f5;
    }

    .appointment-wrapper1{
        max-width:1050px;
        margin:0 auto;
        transition:.3s ease;
        background:#fff;
        border-left:1px solid rgba(0,0,0,.06);
        border-right:1px solid rgba(0,0,0,.06);
    }

    .appointment-item1{
        display:flex;
        align-items:center;
        justify-content:space-between;
        min-height:120px;
        padding:0 38px;
        border-bottom:1px solid rgba(0,0,0,.06);
    }

    .appointment-title1{
        margin:0;
        font-size:20px;
        font-weight:700;
        letter-spacing:-0.2px;
        text-transform:uppercase;
        color:#9a8b77;
    }

    .select-btn1{
        width:80px;
        height:42px;
        border:none;
        border-radius:0;
        background:#9a8b77;
        color:#fff;
        font-size:14px;
        font-weight:700;
        text-transform:uppercase;
        transition:all .25s ease;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
    }

    .select-btn1:hover{
         background: #877764;
        color:#fff;
    }

    @media (max-width: 768px){

        .appointment-item1{
            padding:24px 20px;
            gap:20px;
            min-height:auto;
        }

        .appointment-title1{
            font-size:16px;
            line-height:1.5;
        }

        .select-btn1{
            width:74px;
            height:40px;
            font-size:13px;
        }
    }

    

    

.appointment-page {
    padding: 30px 0 80px;
}

.appointment-wrapper {
    max-width: 1080px;
    margin: auto;
}

.service-category {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: .2px;
}

.appointment-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
}

.appointment-body {
    padding: 28px;
}

.appointment-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.appointment-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    color: #9a8b77;
    margin-bottom: 4px;
}

.appointment-meta {
    font-size: 18px;
    color: #666;
    line-height: 1.4;
}

.select-btn {
    min-width: 90px;
    height: 42px;
    border: none;
    border-radius: 0;
    background: #9a8b77;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
    transition: .3s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 20px;
}

.select-btn:hover {
    background: #877764;
}

.service-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.description-wrapper {
    overflow: hidden;
}

.appointment-description {
    padding-left: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 0;
}

.appointment-description li {
    margin-bottom: 4px;
}

.description-wrapper.collapsed {
    max-height: 130px;
}

.show-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 14px;
    letter-spacing: .08em;
    cursor: pointer;
}

.show-more:hover {
    opacity: .7;
}

@media (max-width: 768px) {

    .appointment-page {
        padding: 20px 14px 50px;
    }

    .appointment-body {
        padding: 20px;
    }

    .select-btn {
        font-size: 11px;
        height: 38px;
    }

    .appointment-title {
        font-size: 17px;
    }

    .appointment-meta {
        font-size: 16px;
    }

    .appointment-description {
        font-size: 15px;
    }

    .service-category {
        font-size: 18px;
    }

    .service-image {
        height: 220px;
    }
}





.booking-page {
    padding: 90px 0;
    background: #f8f7f5;
}

.booking-card {
    background: #fff;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}

.booking-image {
    position: sticky;
    top: 30px;
}

.booking-image img {
    width: 100%;
    border-radius: 22px;
    height: 620px;
    object-fit: cover;
}

.booking-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    color: #9a8b77;
    margin-bottom: 14px;
}

.booking-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.booking-meta {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #222;
}

.booking-details {
    padding-left: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

.booking-details li {
    margin-bottom: 10px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f1f1f;
}

.addon-box {
    padding: 18px 20px;
    border-radius: 18px;
    background: #faf9f7;
    border: 1px solid rgba(0, 0, 0, .06);
    margin-bottom: 14px;
    transition: .25s ease;
}

.addon-box:hover {
    border-color: #c7b8a4;
    background: #f6f1ea;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border-color: #9a8b77;
    cursor: pointer;
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: #9a8b77;
    border-color: #9a8b77;
}

.form-check-label {
    padding-left: 8px;
    line-height: 1.7;
    color: #333;
    cursor: pointer;
    font-size: 15px;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
    color: #453b33;
}

.booking-status {
    margin-top: 10px;
    font-size: 14px;
}

.slots-wrapper {
    margin-top: 35px;
}

.slot-btn {
    height: 62px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    font-weight: 600;
    transition: .25s ease;
    color: #333;
}

.slot-btn:hover {
    border-color: #9a8b77;
    color: #9a8b77;
}

.slot-btn.active {
    background: #9a8b77;
    border-color: #9a8b77;
    color: #fff;
}

.back-btn {
    height: 58px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    width: 100%;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #222;
}

.submit-btn {
    width: 100%;
    height: 58px;
    border: none;
    background: #9a8b77;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 13px;
    font-weight: 700;
    transition: .25s ease;
}

.submit-btn:hover {
    background: #877764;
}

.submit-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.booking-total-card {
    margin-top: 35px;
    padding: 24px;
    border-radius: 20px;
    background: #faf9f7;
    border: 1px solid rgba(0, 0, 0, .06);
}

.total-price {
    font-size: 20px;
    font-weight: 700;
}

@media(max-width:991px) {

    .booking-image {
        position: relative;
        top: 0;
    }

    .booking-image img {
        height: 420px;
    }

    .booking-title {
        font-size: 32px;
    }
}

@media(max-width:767px) {

    .booking-page {
        padding: 50px 0;
    }

    .booking-card {
        padding: 22px;
    }

    .booking-image img {
        height: 320px;
    }

    .booking-title {
        font-size: 28px;
    }

    .slot-btn {
        height: 56px;
        font-size: 14px;
    }
}


.confirm-page {
    padding: 90px 0;
    background: #f8f7f5;
}

.confirm-card {
    background: #fff;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}

.summary-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 22px;
}

.page-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    color: #9a8b77;
    margin-bottom: 14px;
}

.page-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.page-subtitle {
    color: #777;
    line-height: 1.9;
    margin-bottom: 35px;
}

.summary-box {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 28px;
}

.summary-head {
    padding: 18px 22px;
    background: #faf9f7;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-size: 15px;
    font-weight: 700;
    color: #1f1f1f;
}

.summary-body {
    padding: 24px 22px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-label {
    color: #777;
    font-size: 14px;
}

.summary-value {
    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;
    text-align: right;
}

.addon-item {
    padding: 16px 18px;
    border-radius: 16px;
    background: #faf9f7;
    border: 1px solid rgba(0, 0, 0, .05);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.addon-name {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}

.addon-price {
    font-size: 14px;
    font-weight: 700;
    color: #1f1f1f;
}

.payment-box {
    background: #f4efe8;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, .06);
    margin-bottom: 30px;
}

.payment-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f1f1f;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.payment-row:last-child {
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.payment-label {
    color: #555;
    font-size: 15px;
}

.payment-value {
    font-weight: 700;
    color: #1f1f1f;
}

.back-btn {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 700;
}

.pay-btn {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    border: none;
    background: #9a8b77;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
    transition: .25s ease;
}

.pay-btn:hover {
    background: #877764;
}

@media(max-width:991px) {

    .summary-image img {
        height: 420px;
        margin-bottom: 30px;
    }

    .page-title {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .confirm-page {
        padding: 50px 0;
    }

    .confirm-card {
        padding: 22px;
    }

    .summary-image img {
        height: 320px;
    }

    .page-title {
        font-size: 28px;
    }

    .summary-row,
    .payment-row,
    .addon-item {
        flex-direction: column;
    }

    .summary-value {
        text-align: left;
    }
}


.success-page {
    min-height: 100vh;
    background: #f8f7f5;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.success-card {
    background: #fff;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}

.success-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #f4efe8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.success-icon svg {
    width: 52px;
    height: 52px;
    color: #9a8b77;
}

.success-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    color: #9a8b77;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.success-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f1f1f;
    position: relative;
    z-index: 2;
}

.success-text {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 38px;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.details-box {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.details-head {
    background: #faf9f7;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-size: 16px;
    font-weight: 700;
    color: #1f1f1f;
}

.details-body {
    padding: 12px 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: #777;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;
    text-align: right;
}

.notice-box {
    background: #f4efe8;
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 35px;
    border: 1px solid rgba(0, 0, 0, .05);
    position: relative;
    z-index: 2;
}

.notice-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1f1f1f;
}

.notice-list {
    padding-left: 18px;
    margin: 0;
    color: #555;
    line-height: 1.9;
}

.notice-list li {
    margin-bottom: 8px;
}

.action-btn {
    height: 58px;
    border: none;
    border-radius: 16px;
    padding: 0 28px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    transition: .25s ease;
}

.primary-btn {
    background: #9a8b77;
    color: #fff;
}

.primary-btn:hover {
    background: #857460;
}

.secondary-btn {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    color: #222;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.secondary-btn:hover {
    background: #f8f8f8;
    color: #111;
}

@media(max-width:991px) {

    .success-title {
        font-size: 38px;
    }
}

@media(max-width:767px) {

    .success-page {
        padding: 50px 0;
    }

    .success-card {
        padding: 28px;
    }

    .success-title {
        font-size: 30px;
    }

    .detail-row {
        flex-direction: column;
        gap: 8px;
    }

    .detail-value {
        text-align: left;
    }

    .action-btn {
        width: 100%;
    }
}