/* =========================================================
   WALLPAPER MARKET INTERIOR
   STYLE.CSS FINAL - CLEAN VERSION
   Tema: Abu-abu / Cream + Mustard
========================================================= */


/* =========================================================
   1. VARIABLES
========================================================= */

:root {
    --cream: #e8e5de;
    --cream-light: #f1f0ed;
    --cream-soft: #d8d4ca;

    --mustard: #b08b3d;
    --mustard-light: #c4a45a;
    --mustard-dark: #9b7d3f;

    --dark: #343434;
    --dark-2: #292929;

    --text: #3f3f3f;
    --muted: #747474;

    --white: #ffffff;
    --border: #d7d4cc;

    --shadow: 0 15px 40px rgba(50, 50, 50, .10);
    --radius: 18px;
}


/* =========================================================
   2. RESET & GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: var(--cream-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   3. NAVBAR - SAMPUL
========================================================= */

.home-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 17px 0;

    background: rgba(241, 240, 237, .94);
    border-bottom: 1px solid rgba(155, 125, 63, .14);

    backdrop-filter: blur(10px);
}

.market-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.market-logo:hover {
    color: var(--mustard-dark);
}

.logo-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--mustard);
    border-radius: 50%;

    color: var(--mustard);
    font-size: 17px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.logo-text small {
    margin-top: 5px;

    font-size: 7px;
    letter-spacing: 2.5px;

    color: var(--muted);
}

.home-navbar .nav-link {
    position: relative;

    margin-left: 22px;
    padding: 8px 0 !important;

    color: var(--dark);
    font-size: 12px;
    font-weight: 500;

    transition: .3s;
}

.home-navbar .nav-link:hover {
    color: var(--mustard);
}

.home-navbar .nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--mustard);

    transition: .3s;
}

.home-navbar .nav-link:hover::after,
.home-navbar .nav-link.active::after {
    width: 100%;
}

.home-navbar .nav-link.active {
    color: var(--mustard);
    font-weight: 600;
}

.home-navbar .nav-pesan {
    padding: 9px 18px !important;
    margin-left: 20px;

    border: 1px solid var(--mustard);
    border-radius: 25px;

    color: var(--mustard) !important;
}

.home-navbar .nav-pesan::after {
    display: none;
}

.home-navbar .nav-pesan:hover {
    background: var(--mustard);
    color: var(--white) !important;
}

.navbar-toggler {
    border: none;
    color: var(--dark);
    font-size: 25px;
    box-shadow: none !important;
}


/* =========================================================
   4. NAVBAR - HALAMAN DALAM
========================================================= */

.wallpaper-navbar {
    background: rgba(241, 240, 237, .97);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(10px);
}

.wallpaper-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--dark);

    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
}

.wallpaper-logo:hover {
    color: var(--mustard-dark);
}

.wallpaper-navbar .nav-link {
    color: var(--text);
    font-size: 13px;
    transition: .3s;
}

.wallpaper-navbar .nav-link:hover,
.wallpaper-navbar .nav-link.active {
    color: var(--mustard-dark);
}


/* =========================================================
   5. SAMPUL / HOME HERO
========================================================= */

.home-hero {
    position: relative;
    min-height: 100vh;

    overflow: hidden;
    isolation: isolate;

    background: var(--cream);
}


/* FOTO */

.home-hero::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 70%;
    height: 100%;

    background-image: url("image/hertasning.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    clip-path: polygon(
        25% 0,
        100% 0,
        100% 100%,
        0 100%
    );

    z-index: 1;
}


/* OVERLAY */

.home-hero::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(232, 229, 222, .98) 0%,
        rgba(232, 229, 222, .82) 12%,
        rgba(232, 229, 222, .48) 28%,
        rgba(232, 229, 222, .15) 48%,
        rgba(232, 229, 222, 0) 68%
    );

    clip-path: polygon(
        25% 0,
        100% 0,
        100% 100%,
        0 100%
    );

    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 5;
}

.hero-content {
    position: relative;

    max-width: 600px;

    padding: 175px 0 130px;
}


/* LABEL */

.hero-label {
    display: flex;
    align-items: center;
    gap: 11px;

    margin-bottom: 22px;

    color: var(--mustard-dark);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-label span {
    display: block;

    width: 30px;
    height: 1px;

    background: var(--mustard);
}


/* TITLE */

.hero-content h1 {
    margin: 0 0 25px;

    color: #353535;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(50px, 5.2vw, 72px);

    line-height: .92;
    font-weight: 600;

    letter-spacing: -1.5px;
}

.hero-content h1 span {
    color: var(--mustard-dark);
    font-style: italic;
}


/* DESCRIPTION */

.hero-description {
    max-width: 480px;

    margin: 0 0 28px;

    color: #5f5d58;

    font-size: 12px;
    line-height: 1.8;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 25px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 500;

    transition: .3s;
}

.hero-btn-primary {
    background: var(--mustard-dark);
    border: 1px solid var(--mustard-dark);
    color: var(--white);
}

.hero-btn-primary:hover {
    background: #80652f;
    border-color: #80652f;
    color: var(--white);

    transform: translateY(-2px);
}

.hero-btn-primary i {
    margin-left: 7px;
}

.hero-btn-outline {
    background: rgba(255, 255, 255, .45);
    border: 1px solid var(--mustard);

    color: var(--mustard-dark);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, .75);
    color: var(--dark);

    transform: translateY(-2px);
}


/* HERO INFO */

.hero-info {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 40px;
}

.hero-info > div:not(.hero-divider) {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-info strong {
    color: #353535;
    font-size: 11px;
    font-weight: 600;
}

.hero-info small {
    color: #66635d;
    font-size: 9px;
}

.hero-divider {
    width: 1px;
    height: 38px;

    background: rgba(80, 75, 68, .30);
}


/* KATEGORI */

.hero-categories {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    z-index: 10;

    background: rgba(241, 240, 237, .88);
    border-top: 1px solid rgba(155, 125, 63, .14);

    backdrop-filter: blur(12px);
}

.hero-category {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-right: 1px solid rgba(155, 125, 63, .14);

    color: var(--text);

    font-size: 10px;
    font-weight: 500;

    transition: .3s;
}

.hero-category:hover {
    background: rgba(216, 212, 202, .85);
    color: var(--mustard-dark);
}

.hero-category i {
    color: var(--mustard-dark);
    font-size: 17px;
}


/* =========================================================
   6. TENTANG - NAVBAR
========================================================= */

.about-navbar {
    background: rgba(232, 229, 222, .97);
    border-bottom: 1px solid var(--border);
    min-height: 76px;
}

.about-brand {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
}

.about-brand-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--mustard);
    color: var(--white);

    border-radius: 50%;
    font-size: 15px;
}

.about-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.about-brand-text strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    letter-spacing: 1.5px;
    color: var(--dark);
}

.about-brand-text small {
    margin-top: 4px;

    font-size: 7px;
    letter-spacing: 2px;
    color: var(--muted);
}

.about-navbar .nav-link {
    position: relative;

    margin-left: 22px;
    padding: 27px 0 !important;

    color: var(--dark);

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.about-navbar .nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 18px;

    width: 0;
    height: 1px;

    background: var(--mustard);

    transition: .3s;
}

.about-navbar .nav-link:hover::after,
.about-navbar .nav-link.active::after {
    width: 100%;
}

.about-navbar .nav-link.active {
    color: var(--mustard-dark);
}


/* =========================================================
   7. TENTANG - HERO
========================================================= */

.about-luxury-hero {
    position: relative;
    overflow: hidden;

    padding: 75px 0 70px;

    background: linear-gradient(
        135deg,
        #e8e5de 0%,
        #ddd9d0 55%,
        #cfc9bc 100%
    );
}

.about-luxury-hero::after {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -150px;
    top: -170px;

    border: 1px solid rgba(176,139,61,.25);
    border-radius: 50%;
}

.about-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--mustard-dark);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
}

.about-luxury-hero h1 {
    max-width: 900px;

    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 7vw, 88px);
    line-height: .94;
    font-weight: 600;

    color: var(--dark);
}

.about-luxury-hero h1 span {
    color: var(--mustard-dark);
    font-style: italic;
}

.about-luxury-hero p {
    max-width: 650px;

    margin: 25px 0 0;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.9;
}

.about-number {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    text-align: left;
}

.about-number span {
    font-family: "Cormorant Garamond", serif;

    font-size: 70px;
    line-height: 1;

    color: var(--mustard);
}

.about-number small {
    color: var(--muted);

    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 2px;
}


/* =========================================================
   8. TENTANG - STORY
========================================================= */

.about-story-section {
    padding: 70px 0;
    background: var(--cream-light);
}

.section-mini-title {
    display: inline-block;

    margin-bottom: 17px;

    color: var(--mustard-dark);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
}

.about-section-title {
    max-width: 700px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(38px, 5vw, 57px);
    line-height: 1.02;
    font-weight: 600;

    color: var(--dark);
}

.about-story-text {
    max-width: 560px;

    margin-top: 16px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.9;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 25px;

    color: var(--dark);

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
}

.signature-line {
    width: 45px;
    height: 1px;

    background: var(--mustard);
}


/* PHOTO ABOUT */

.about-photo-frame {
    position: relative;

    padding: 10px;

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: 0 20px 45px rgba(52,52,52,.10);
}

.about-photo-frame img {
    width: 100%;
    height: 430px;

    display: block;

    object-fit: cover;
}

.about-photo-number {
    position: absolute;

    top: 25px;
    left: 25px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--mustard);

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
}

.about-photo-caption {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    padding: 16px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background: rgba(52,52,52,.90);
    color: var(--white);
}

.about-photo-caption span {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--mustard-light);
}

.about-photo-caption strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 500;
}


/* =========================================================
   9. TENTANG - PRODUCTS
========================================================= */

.about-products-section {
    padding: 70px 0;
    background: var(--cream);
}

.section-intro {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.9;
}

.about-product-card {
    position: relative;

    min-height: 190px;

    padding: 22px;

    background: var(--cream-light);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: .35s ease;
}

.about-product-card:hover {
    transform: translateY(-6px);

    background: var(--white);

    border-color: rgba(176,139,61,.5);

    box-shadow: 0 15px 35px rgba(52,52,52,.08);
}

.about-product-card > span {
    position: absolute;

    top: 18px;
    right: 20px;

    color: #bbb;

    font-size: 10px;
    letter-spacing: 1px;
}

.product-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: rgba(176,139,61,.12);

    color: var(--mustard-dark);

    border-radius: 50%;
}

.about-product-card h3 {
    margin: 0 0 8px;

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;
    font-weight: 600;

    color: var(--dark);
}

.about-product-card p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
   10. TENTANG - BENEFITS
========================================================= */

.about-benefit-section {
    padding: 70px 0;

    background: var(--dark);
}

.section-mini-title.light {
    color: var(--mustard-light);
}

.about-dark-title {
    max-width: 500px;

    margin-bottom: 22px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(40px, 5vw, 60px);
    line-height: 1;

    color: var(--white);
}

.about-dark-text {
    max-width: 500px;

    color: #aaa;

    font-size: 13px;
    line-height: 1.9;
}

.about-dark-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 20px;
    padding: 13px 21px;

    background: var(--mustard);

    color: var(--white);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;

    transition: .3s;
}

.about-dark-button:hover {
    background: var(--mustard-light);
    color: var(--white);
}

.benefit-box {
    min-height: 180px;

    padding: 23px;

    position: relative;

    border: 1px solid rgba(255,255,255,.10);

    transition: .3s;
}

.benefit-box:hover {
    border-color: rgba(196,164,90,.55);
    transform: translateY(-4px);
}

.benefit-box > span {
    position: absolute;

    right: 20px;
    top: 20px;

    color: #777;
    font-size: 9px;
}

.benefit-box > i {
    display: block;

    margin-bottom: 20px;

    color: var(--mustard-light);
    font-size: 24px;
}

.benefit-box h3 {
    margin-bottom: 10px;

    font-family: "Cormorant Garamond", serif;

    color: var(--white);
    font-size: 28px;
}

.benefit-box p {
    margin: 0;

    color: #999;

    font-size: 11px;
    line-height: 1.8;
}


/* =========================================================
   11. TENTANG - LOCATION
========================================================= */

.about-location-section {
    padding: 70px 0;

    background: var(--cream-light);
}

.location-main-card {
    overflow: hidden;

    background: var(--dark);

    box-shadow: 0 20px 45px rgba(52,52,52,.10);
}

.location-main-content {
    height: 100%;

    padding: 40px;
}

.location-main-content > span {
    color: var(--mustard-light);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.location-main-content h3 {
    margin: 17px 0;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;

    font-size: 42px;
    font-weight: 600;
}

.location-main-content > p {
    max-width: 600px;

    color: #aaa;

    font-size: 13px;
    line-height: 1.8;
}

.location-contact {
    margin: 25px 0;

    display: flex;
    flex-wrap: wrap;

    gap: 22px;
}

.location-contact div {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #bbb;

    font-size: 11px;
}

.location-contact i {
    color: var(--mustard-light);
}

.location-map-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 5px;
    padding: 12px 18px;

    border: 1px solid rgba(196,164,90,.5);

    color: var(--mustard-light);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;

    transition: .3s;
}

.location-map-button:hover {
    background: var(--mustard);
    color: var(--white);
    border-color: var(--mustard);
}

.location-pattern {
    height: 100%;
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;

    background: linear-gradient(
        135deg,
        #4a4a46,
        #292929
    );

    overflow: hidden;
}

.location-pattern::before,
.location-pattern::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(196,164,90,.18);
    border-radius: 50%;
}

.location-pattern::before {
    width: 340px;
    height: 340px;
}

.location-pattern::after {
    width: 230px;
    height: 230px;
}

.location-pattern-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--mustard);
    border-radius: 50%;

    color: var(--mustard-light);
    font-size: 27px;
}

.location-pattern > span {
    position: relative;
    z-index: 2;

    margin-top: 20px;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
}


/* OTHER LOCATIONS */

.other-location-card {
    min-height: 250px;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    transition: .3s;
}

.other-location-card:hover {
    transform: translateY(-5px);

    border-color: rgba(176,139,61,.45);

    box-shadow: 0 15px 35px rgba(52,52,52,.08);
}

.other-location-card > span {
    color: var(--mustard-dark);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
}

.other-location-card h3 {
    margin: 13px 0;

    color: var(--dark);

    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
}

.other-location-card p {
    min-height: 70px;

    margin-bottom: 20px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.7;
}

.other-location-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--dark);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;

    transition: .3s;
}

.other-location-card a:hover {
    color: var(--mustard-dark);
}


/* =========================================================
   12. TENTANG - FINAL CTA
========================================================= */

.about-final-cta {
    padding: 60px 0;

    background: var(--cream);
}

.about-final-box {
    position: relative;
    overflow: hidden;

    padding: 45px;

    background: linear-gradient(
        135deg,
        #dedbd3,
        #cfc9bd
    );

    border: 1px solid var(--border);
}

.about-final-box::after {
    content: "WM";

    position: absolute;

    right: 20px;
    bottom: -55px;

    font-family: "Cormorant Garamond", serif;

    font-size: 190px;
    line-height: 1;

    color: rgba(176,139,61,.10);
}

.about-final-box > span {
    color: var(--mustard-dark);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
}

.about-final-box h2 {
    max-width: 700px;

    margin: 15px 0 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(40px, 5vw, 62px);
    line-height: .98;

    color: var(--dark);
}

.final-cta-button,
.final-cta-outline {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
}

.final-cta-button {
    padding: 14px 20px;

    background: var(--dark);
    color: var(--white);

    transition: .3s;
}

.final-cta-button:hover {
    background: var(--mustard-dark);
    color: var(--white);
}

.final-cta-outline {
    margin-left: 10px;

    padding: 13px 18px;

    border: 1px solid var(--dark);

    color: var(--dark);

    transition: .3s;
}

.final-cta-outline:hover {
    background: var(--dark);
    color: var(--white);
}


/* =========================================================
   13. KOLEKSI
========================================================= */

.collection-header {
    background: var(--cream);

    padding: 150px 0 80px;

    border-bottom: 1px solid var(--border);
}

.collection-header-content {
    max-width: 760px;
}

.collection-header .section-label {
    display: inline-block;

    color: var(--mustard);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.collection-header h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 6vw, 78px);

    line-height: .95;

    color: var(--dark);

    margin-bottom: 25px;
}

.collection-header p {
    max-width: 620px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.9;
}


/* SECTION */

.collection-section {
    padding: 90px 0;

    background: var(--cream-light);
}


/* CARD */

.collection-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 18px;

    transition: .35s ease;
}

.collection-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(50, 50, 50, .12);
}


/* IMAGE */

.collection-card .card-img-top {
    width: 100%;
    height: 300px;

    object-fit: cover;

    transition: transform .5s ease;
}

.collection-card:hover .card-img-top {
    transform: scale(1.04);
}


/* BODY */

.collection-card .card-body {
    padding: 30px;

    display: flex;
    flex-direction: column;

    flex: 1;
}

.material-label {
    color: var(--mustard);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.collection-card .card-title {
    font-family: "Cormorant Garamond", serif;

    font-size: 32px;
    font-weight: 600;

    color: var(--dark);

    margin-bottom: 12px;
}

.collection-card .card-text {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 20px;
}


/* INFO */

.material-info {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 20px;
}

.material-info div {
    background: var(--cream);

    border: 1px solid var(--border);

    padding: 8px 11px;

    border-radius: 30px;

    color: var(--text);

    font-size: 10px;
}

.material-info i {
    color: var(--mustard);
    margin-right: 4px;
}


/* PRICE */

.material-price {
    padding: 17px 0;

    border-top: 1px solid var(--border);

    margin-bottom: 20px;
}

.material-price small {
    display: block;

    color: var(--muted);

    font-size: 11px;

    margin-bottom: 4px;
}

.material-price strong {
    color: var(--dark);

    font-size: 18px;
    font-weight: 600;
}


/* BUTTON */

.material-btn {
    width: 100%;

    padding: 13px 18px;

    background: var(--mustard);

    border: 1px solid var(--mustard);
    border-radius: 8px;

    color: var(--white);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;

    transition: .3s;
}

.material-btn:hover {
    background: var(--mustard-dark);

    border-color: var(--mustard-dark);

    color: var(--white);
}

.material-btn i {
    margin-left: 8px;
}


/* PRICE NOTE */

.price-note {
    padding: 0 0 70px;

    background: var(--cream-light);
}

.price-note-box {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 24px 28px;

    background: var(--cream);

    border: 1px solid var(--border);
    border-left: 4px solid var(--mustard);
}

.price-note-box > i {
    color: var(--mustard);
    font-size: 22px;
}

.price-note-box strong {
    display: block;

    color: var(--dark);

    margin-bottom: 5px;
}

.price-note-box p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.7;
}


/* COLLECTION CTA */

.collection-cta {
    padding: 80px 0;

    background: var(--dark);
}

.cta-box {
    max-width: 700px;

    margin: auto;

    text-align: center;
}

.cta-box .section-label {
    color: var(--mustard-light);
}

.cta-box h2 {
    font-family: "Cormorant Garamond", serif;

    color: var(--white);

    font-size: 48px;

    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,.65);

    margin-bottom: 30px;
}

.cta-btn {
    padding: 13px 25px;

    background: var(--mustard);

    border: 1px solid var(--mustard);

    color: var(--white);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
}

.cta-btn:hover {
    background: var(--mustard-light);

    border-color: var(--mustard-light);

    color: var(--dark);
}


/* =========================================================
   14. PESAN / KONSULTASI
========================================================= */

.booking-header {
    background: var(--cream);

    padding: 150px 0 80px;

    border-bottom: 1px solid var(--border);
}

.booking-header-content {
    max-width: 760px;
}

.booking-header h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 6vw, 76px);

    line-height: .95;

    color: var(--dark);

    margin-bottom: 25px;
}

.booking-header p {
    max-width: 620px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.9;
}


/* FORM SECTION */

.booking-section {
    padding: 80px 0;

    background: var(--cream-light);
}

.booking-card {
    max-width: 850px;

    margin: auto;

    padding: 40px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 18px;

    box-shadow: var(--shadow);
}

.booking-card-header {
    margin-bottom: 30px;
}

.booking-card-header span {
    color: var(--mustard);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}

.booking-card-header h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 42px;

    color: var(--dark);

    margin: 8px 0;
}

.booking-card-header p {
    color: var(--muted);

    font-size: 13px;

    margin: 0;
}


/* FORM */

.booking-card .form-label {
    color: var(--dark);

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 8px;
}

.booking-card .form-control,
.booking-card .form-select {
    border: 1px solid var(--border);

    border-radius: 8px;

    padding: 13px 15px;

    color: var(--text);

    font-family: "Montserrat", sans-serif;

    font-size: 13px;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: var(--mustard);

    box-shadow: 0 0 0 .2rem rgba(176, 139, 61, .12);
}

.booking-card textarea {
    resize: vertical;
}


/* SELECTED PRICE */

.selected-price {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 20px;

    background: var(--cream);

    border: 1px solid var(--border);
    border-left: 4px solid var(--mustard);

    border-radius: 10px;
}

.price-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--mustard);

    color: var(--white);

    border-radius: 50%;
}

.selected-price small {
    display: block;

    color: var(--muted);

    font-size: 9px;

    letter-spacing: 1.5px;
    font-weight: 600;
}

.selected-price strong {
    display: block;

    color: var(--dark);

    font-size: 18px;

    margin: 3px 0;
}

.selected-price p {
    margin: 0;

    color: var(--muted);

    font-size: 11px;
}


/* SUBMIT */

.booking-submit {
    width: 100%;

    padding: 15px;

    background: var(--mustard);

    border: 1px solid var(--mustard);

    color: var(--white);

    border-radius: 8px;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;

    transition: .3s;
}

.booking-submit:hover {
    background: var(--mustard-dark);

    border-color: var(--mustard-dark);

    color: var(--white);
}

.booking-submit i {
    margin: 0 5px;
}


/* INFO */

.booking-info {
    padding: 0 0 70px;

    background: var(--cream-light);
}

.info-card {
    height: 100%;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 14px;
}

.info-card > i {
    color: var(--mustard);

    font-size: 27px;
}

.info-card h3 {
    font-family: "Cormorant Garamond", serif;

    color: var(--dark);

    font-size: 27px;

    margin: 15px 0 8px;
}

.info-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   15. GALERI
========================================================= */

.gallery-header {
    background: var(--cream);

    padding: 110px 20px 75px;

    border-bottom: 1px solid var(--border);

    text-align: center;
}

.gallery-label {
    display: inline-block;

    color: var(--mustard);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.gallery-header h1 {
    margin: 0 0 18px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(45px, 6vw, 78px);

    font-weight: 600;

    color: var(--dark);
}

.gallery-header p {
    max-width: 650px;

    margin: auto;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


/* GALLERY SECTION */

.gallery-section {
    padding: 80px 0;

    background: var(--cream-light);
}

.gallery-card {
    height: 100%;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;

    transition: .35s;
}

.gallery-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(52, 52, 52, .12);
}


/* IMAGE */

.gallery-image {
    position: relative;

    height: 310px;

    overflow: hidden;

    background: #ddd;
}

.gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.04);
}


/* BADGE */

.gallery-badge {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 8px 14px;

    background: var(--mustard);

    color: var(--white);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    border-radius: 3px;
}


/* CONTENT */

.gallery-content {
    padding: 28px 27px 30px;
}

.gallery-content h2 {
    margin-bottom: 10px;

    font-family: "Cormorant Garamond", serif;

    font-size: 31px;
    font-weight: 600;

    color: var(--dark);
}

.gallery-content p {
    margin-bottom: 22px;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* LINK */

.gallery-link {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--dark);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: .3s;
}

.gallery-link i {
    color: var(--mustard);

    transition: .3s;
}

.gallery-link:hover {
    color: var(--mustard);
}

.gallery-link:hover i {
    transform: translate(3px, -3px);
}


/* GALLERY CTA */

.gallery-cta {
    padding: 70px 0;

    background: var(--cream-light);
}

.gallery-cta-box {
    padding: 65px 30px;

    background: var(--dark);

    border-radius: 18px;

    color: var(--white);

    text-align: center;
}

.gallery-cta-box span {
    display: block;

    margin-bottom: 15px;

    color: var(--mustard-light);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 3px;
}

.gallery-cta-box h2 {
    max-width: 700px;

    margin: auto auto 15px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(35px, 5vw, 55px);
    font-weight: 600;
}

.gallery-cta-box p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #c9c9c9;

    line-height: 1.8;

    font-size: 14px;
}

.gallery-cta-btn {
    padding: 13px 25px;

    background: var(--mustard);

    color: var(--white);

    border: 1px solid var(--mustard);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;

    border-radius: 3px;
}

.gallery-cta-btn:hover {
    background: var(--mustard-dark);

    border-color: var(--mustard-dark);

    color: var(--white);
}


/* =========================================================
   16. FOOTER UMUM
========================================================= */

.wallpaper-footer {
    padding: 50px 0 25px;

    background: var(--dark-2);

    color: #ddd;
}

.wallpaper-footer h3 {
    color: var(--white);

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;

    margin-bottom: 15px;
}

.wallpaper-footer h4 {
    color: var(--mustard-light);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.wallpaper-footer p {
    color: #aaa;

    font-size: 12px;

    line-height: 1.8;
}

.wallpaper-footer a {
    display: block;

    width: fit-content;

    color: #aaa;

    font-size: 12px;

    margin-bottom: 9px;

    transition: .3s;
}

.wallpaper-footer a:hover {
    color: var(--mustard-light);
}

.wallpaper-footer i {
    color: var(--mustard-light);

    margin-right: 7px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.1);

    color: #888;

    font-size: 10px;
}


/* =========================================================
   17. ABOUT FOOTER
========================================================= */

.about-footer {
    padding: 55px 0 25px;

    background: #292929;

    color: #aaa;
}

.about-footer h3 {
    margin-bottom: 15px;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;

    font-size: 31px;
}

.about-footer h4 {
    margin-bottom: 17px;

    color: var(--mustard-light);

    font-size: 9px;

    letter-spacing: 2px;
}

.about-footer p {
    color: #999;

    font-size: 11px;

    line-height: 1.8;
}

.about-footer p i {
    margin-right: 7px;

    color: var(--mustard-light);
}

.about-footer a {
    display: block;

    margin-bottom: 9px;

    color: #999;

    font-size: 11px;

    transition: .3s;
}

.about-footer a:hover {
    color: var(--mustard-light);
}

.about-footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.09);

    color: #777;

    font-size: 9px;
}


/* =========================================================
   18. BOOTSTRAP ACCORDION TAMBAHAN
========================================================= */

.luxury-accordion .accordion-item {
    background: transparent;

    border: none;

    border-bottom: 1px solid rgba(52,52,52,.16);

    border-radius: 0;
}

.luxury-accordion .accordion-button {
    padding: 20px 5px;

    background: transparent;

    box-shadow: none;

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    color: var(--dark);
}

.luxury-accordion .accordion-button:not(.collapsed) {
    color: var(--mustard);

    background: transparent;
}

.luxury-accordion .accordion-button:focus {
    box-shadow: none;
}

.luxury-accordion .accordion-body {
    padding: 0 5px 22px;

    font-size: 12px;

    line-height: 1.9;

    color: var(--muted);
}


/* =========================================================
   19. RESPONSIVE TABLET
========================================================= */

@media (max-width: 991px) {

    /* NAVBAR */

    .home-navbar {
        padding: 14px 0;
    }

    .home-navbar .nav-link {
        margin-left: 0;
        padding: 10px 0 !important;
    }

    .home-navbar .nav-pesan {
        margin-left: 0;
        margin-top: 5px;
        display: inline-block;
    }

    .about-navbar .nav-link {
        margin-left: 0;
        padding: 12px 0 !important;
    }

    .about-navbar .nav-link::after {
        bottom: 5px;
    }


    /* HOME */

    .home-hero::before,
    .home-hero::after {
        width: 68%;

        clip-path: polygon(
            22% 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }

    .hero-content {
        max-width: 560px;

        padding: 145px 20px 130px;
    }

    .hero-content h1 {
        font-size: 55px;
    }


    /* ABOUT */

    .about-luxury-hero {
        padding: 80px 0;
    }

    .about-photo-frame img {
        height: 400px;
    }

    .location-main-content {
        padding: 35px;
    }
}


/* =========================================================
   20. RESPONSIVE MOBILE
========================================================= */

@media (max-width: 767px) {

    /* HOME */

    .home-hero {
        min-height: 100vh;
    }

    .home-hero::before,
    .home-hero::after {
        width: 100%;
        height: 58%;

        clip-path: polygon(
            0 0,
            100% 0,
            100% 88%,
            0 100%
        );
    }

    .home-hero::after {
        background: linear-gradient(
            180deg,
            rgba(232,229,222,0) 40%,
            rgba(232,229,222,.40) 70%,
            rgba(232,229,222,1) 100%
        );
    }

    .hero-content {
        padding: 330px 20px 80px;
    }

    .hero-label {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .hero-label span {
        width: 20px;
    }

    .hero-content h1 {
        font-size: 43px;
        line-height: .95;
    }

    .hero-description {
        font-size: 11px;
    }

    .hero-buttons {
        gap: 7px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        padding: 10px 16px;
        font-size: 9px;
    }

    .hero-info {
        gap: 15px;
        margin-top: 27px;
    }

    .hero-info strong {
        font-size: 8px;
    }

    .hero-info small {
        font-size: 7px;
    }

    .hero-divider {
        height: 28px;
    }

    .hero-categories {
        display: none;
    }


    /* ABOUT */

    .about-luxury-hero {
        padding: 75px 0;
    }

    .about-luxury-hero h1 {
        font-size: 52px;
    }

    .about-number {
        margin-top: 20px;
    }

    .about-story-section,
    .about-products-section,
    .about-benefit-section,
    .about-location-section {
        padding: 55px 0;
    }

    .about-photo-frame img {
        height: 360px;
    }

    .about-photo-caption {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-main-content {
        padding: 32px 25px;
    }

    .location-main-content h3 {
        font-size: 36px;
    }

    .location-pattern {
        min-height: 280px;
    }

    .about-final-box {
        padding: 35px 25px;
    }

    .final-cta-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .about-footer-bottom,
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }


    /* COLLECTION */

    .collection-header {
        padding: 120px 20px 60px;
    }

    .collection-header h1 {
        font-size: 48px;
    }

    .collection-section {
        padding: 60px 15px;
    }

    .collection-card .card-img-top {
        height: 250px;
    }

    .collection-card .card-body {
        padding: 25px;
    }

    .collection-card .card-title {
        font-size: 29px;
    }

    .price-note {
        padding-bottom: 60px;
    }

    .price-note-box {
        padding: 20px;
    }

    .cta-box h2 {
        font-size: 40px;
    }


    /* PESAN */

    .booking-header {
        padding: 120px 20px 60px;
    }

    .booking-header h1 {
        font-size: 48px;
    }

    .booking-section {
        padding: 60px 15px;
    }

    .booking-card {
        padding: 25px 20px;
    }

    .booking-card-header h2 {
        font-size: 36px;
    }

    .selected-price {
        align-items: flex-start;
    }


    /* GALERI */

    .gallery-header {
        padding: 80px 20px 55px;
    }

    .gallery-header h1 {
        font-size: 48px;
    }

    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-image {
        height: 280px;
    }

    .gallery-content {
        padding: 24px;
    }

    .gallery-cta-box {
        padding: 55px 22px;
    }
}


/* =========================================================
   21. VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .logo-icon {
        width: 34px;
        height: 34px;

        font-size: 15px;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .logo-text small {
        font-size: 6px;
        letter-spacing: 2px;
    }

    .about-luxury-hero h1 {
        font-size: 45px;
    }

    .about-section-title {
        font-size: 42px;
    }

    .about-photo-frame img {
        height: 310px;
    }

    .about-product-card {
        min-height: 200px;
        padding: 20px;
    }

    .gallery-image {
        height: 250px;
    }
}

/* =========================================================
   22. KOLEKSI - FOTO + HARGA
   ========================================================= */

.category-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
    transition: .35s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(50, 50, 50, .13);
    border-color: rgba(176, 139, 61, .45);
}

/* GAMBAR KATALOG: BESAR + UTUH, TIDAK TERPOTONG */
.category-image {
    width: 100% !important;
    height: auto !important;
    max-height: 360px;
    display: block;
    object-fit: contain !important;
    object-position: center !important;
    background: #f8f5ef;
    padding: 0;
}

.category-card:hover .category-image {
    transform: none;
}

.category-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    margin: -26px auto 10px;

    background: var(--white);
    border: 1px solid var(--mustard);
    border-radius: 50%;

    color: var(--mustard);
    font-size: 20px;

    box-shadow: 0 8px 20px rgba(50, 50, 50, .10);
}

.category-card .card-body {
    padding: 8px 25px 25px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-number {
    display: block;

    margin-bottom: 5px;

    color: var(--mustard);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}

.category-title {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 29px;
    font-weight: 600;

    line-height: 1.05;

    color: var(--dark);
}

.category-price {
    margin: 9px 0 12px;

    color: var(--mustard-dark);

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.category-text {
    min-height: 66px;

    margin: 0 0 20px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.8;
}

.category-btn {
    width: 100%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: auto;

    padding: 12px 18px !important;

    background: transparent !important;

    border: 1px solid var(--mustard) !important;
    border-radius: 30px !important;

    color: var(--mustard-dark) !important;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;

    transition: .3s ease;
}

.category-btn:hover {
    background: var(--mustard) !important;
    border-color: var(--mustard) !important;
    color: var(--white) !important;
}

.category-btn i {
    margin-left: 7px;

    transition: transform .25s ease;
}

.category-btn:hover i {
    transform: translateX(3px);
}


/* RESPONSIVE */

@media (max-width: 767px) {
    .category-image {
        max-height: none;
    }

    .category-title {
        font-size: 27px;
    }

    .category-text {
        min-height: auto;
    }

    .category-card .card-body {
        padding-left: 22px;
        padding-right: 22px;
    }
}


/* =========================================================
   KOLEKSI - HEADER TENGAH, WARNA CREAM
   ========================================================= */

.collection-section {
    margin: 0;
    padding: 72px 20px 78px;
    background: var(--cream);
    text-align: center;
}

.collection-section > .container {
    max-width: 1200px;
}

.collection-section .text-center {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 58px !important;
}

.collection-section .section-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--mustard);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.collection-title {
    margin: 0 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 6vw, 78px);
    font-weight: 600;
    line-height: .98;
    color: var(--dark);
}

.collection-description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
}

@media (max-width: 767px) {
    .collection-section {
        padding: 58px 18px 64px;
    }

    .collection-section .text-center {
        margin-bottom: 42px !important;
    }

    .collection-title {
        font-size: clamp(44px, 12vw, 60px);
    }

    .collection-description {
        font-size: 13px;
    }
}


/* =========================================================
   KOLEKSI - HERO GAYA HALAMAN GALERI
   ========================================================= */

.collection-hero {
    min-height: 365px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 68px 20px 72px;
    background: var(--cream);
    border-bottom: 1px solid rgba(50, 50, 50, .08);
    text-align: center;
}

.collection-hero-content {
    width: min(100%, 980px);
    margin: 0 auto;
}

.collection-hero .section-label {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--mustard);
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.collection-hero-title {
    margin: 0 auto 24px;
    color: var(--dark);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(56px, 6.2vw, 82px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.5px;
}

.collection-hero-description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
}

.collection-section {
    padding-top: 56px;
    background: var(--cream-light);
}

@media (max-width: 767px) {
    .collection-hero {
        min-height: 320px;
        padding: 56px 18px 60px;
    }

    .collection-hero .section-label {
        margin-bottom: 18px;
        letter-spacing: 3px;
    }

    .collection-hero-title {
        font-size: clamp(48px, 13vw, 64px);
        line-height: .98;
    }

    .collection-hero-description {
        font-size: 13px;
        line-height: 1.8;
    }
}


/* FINAL KOLEKSI - GAMBAR KATALOG TIDAK MENYISAKAN RUANG KOSONG */
.category-card {
    height: auto;
}

.category-card .card-body {
    padding-top: 16px;
    padding-bottom: 22px;
}

.category-icon {
    margin-top: -22px;
}

/* =========================================================
   KOLEKSI - GESER KARTU/GAMBAR KE ATAS AGAR BAGIAN BAWAH TERLIHAT
   ========================================================= */

.collection-hero {
    min-height: 285px;
    padding: 42px 20px 48px;
}

.collection-hero .section-label {
    margin-bottom: 14px;
}

.collection-hero-title {
    font-size: clamp(50px, 5.2vw, 68px);
    line-height: .94;
    margin-bottom: 18px;
}

.collection-hero-description {
    max-width: 760px;
    font-size: 14px;
    line-height: 1.75;
}

.collection-section {
    padding-top: 34px;
    padding-bottom: 64px;
}

.category-image {
    max-height: 300px;
}

@media (max-width: 767px) {
    .collection-hero {
        min-height: 260px;
        padding: 38px 18px 42px;
    }

    .collection-hero-title {
        font-size: clamp(44px, 12vw, 58px);
    }

    .collection-section {
        padding-top: 28px;
    }
}

/* =========================================================
   FINAL PENYESUAIAN PROPORSI KOLEKSI
   - Header dibuat lebih lega di bagian atas
   - Foto katalog dipendekkan agar tidak memanjang ke bawah
   - Foto tetap utuh, tidak di-crop
========================================================= */
.collection-hero {
    min-height: 365px;
    padding: 78px 20px 74px;
}

.collection-hero .section-label {
    margin-bottom: 20px;
}

.collection-hero-title {
    font-size: clamp(54px, 5.8vw, 80px);
    line-height: .96;
    margin-bottom: 22px;
}

.collection-hero-description {
    max-width: 780px;
    font-size: 15px;
    line-height: 1.85;
}

.collection-section {
    padding-top: 48px;
    padding-bottom: 70px;
}

.category-image {
    width: 100% !important;
    height: 245px !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 6px !important;
    background: #f8f5ef;
}

.category-card .card-body {
    padding-top: 14px;
    padding-bottom: 24px;
}

@media (max-width: 991px) {
    .category-image {
        height: 225px !important;
    }
}

@media (max-width: 767px) {
    .collection-hero {
        min-height: 330px;
        padding: 68px 18px 62px;
    }

    .collection-hero-title {
        font-size: clamp(46px, 12vw, 62px);
    }

    .collection-section {
        padding-top: 34px;
    }

    .category-image {
        height: 220px !important;
    }
}


/* =========================================================
   FINAL - KARTU KOLEKSI DIBUAT LEBIH LUAS SEPERTI REFERENSI
   ========================================================= */
.collection-section {
    padding-top: 42px;
    padding-bottom: 80px;
}

.collection-section > .container {
    max-width: 1320px;
}

.collection-section .row {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 34px;
}

.category-card {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #ddd9d0;
    box-shadow: 0 14px 38px rgba(50, 50, 50, .10);
}

.category-image {
    width: 100% !important;
    height: 330px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
    padding: 8px !important;
    background: #f8f5ef;
}

.category-card .card-body {
    padding: 24px 28px 30px !important;
}

.category-title {
    font-size: clamp(28px, 2.2vw, 38px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.category-text {
    font-size: 15px;
    line-height: 1.8;
    max-width: 95%;
}

@media (max-width: 991px) {
    .category-image {
        height: 300px !important;
    }
}

@media (max-width: 767px) {.collection-section .row {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 24px;
    }

    .category-image {
        height: 260px !important;
    }

    .category-card .card-body {
        padding: 22px 22px 26px !important;
    }
}


/* =========================================================
   FINAL - 4 KARTU DESKTOP, SEDIKIT LEBIH LUAS
   ========================================================= */
@media (min-width: 992px) {
    .collection-section > .container {
        max-width: 1400px;
    }

    .collection-section .row {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 34px;
    }.category-card .card-body {
        padding: 22px 24px 28px !important;
    }
}
/* =========================================
   HEADER PESAN - ISI BENAR-BENAR DI TENGAH
========================================= */

.booking-header {
    width: 100% !important;
    text-align: center !important;
}

.booking-header .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.booking-header-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 90px 20px !important;

    text-align: center !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.booking-header-content .section-mini-title {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto 20px !important;
}

.booking-header-content h1 {
    display: block !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto 25px !important;
    text-align: center !important;
}

.booking-header-content p {
    display: block !important;
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.booking-header-content {
    transform: translateY(-25px) !important;
}
/* =====================================================
   FIX HALAMAN TENTANG
   ===================================================== */

/* HEADER TENTANG */
.about-header {
    background: var(--cream-light);
    padding: 45px 0 55px !important;
}

.about-header .container {
    max-width: 1200px;
}

.about-header .row {
    align-items: center;
}

.about-header .col-lg-8 {
    max-width: 900px;
}

.about-header .eyebrow {
    margin-bottom: 14px;
}

.about-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 6vw, 82px);
    line-height: .92;
    font-weight: 500;
    margin: 0 0 20px;
}

.about-header p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   BAGIAN TENTANG
   ===================================================== */

.about-section {
    padding: 70px 0 !important;
    background: var(--cream-light);
}

.about-section .container {
    max-width: 1200px;
}

.about-section .row {
    align-items: center;
}


/* FOTO */
.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* TEKS */
.about-content {
    padding-left: 15px;
}

.about-content .eyebrow {
    margin-bottom: 12px;
}

.about-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1;
    font-weight: 500;
    margin-bottom: 22px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
}


/* MATERIAL */
.about-product {
    margin-top: 28px;
}

.about-product > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-product > div i {
    font-size: 20px;
    color: var(--mustard);
}

.about-product p {
    margin-top: 8px;
}


/* =====================================================
   LOKASI
   ===================================================== */

.location-section {
    padding: 75px 0 !important;
    background: var(--cream-light);
}

.location-section .container {
    max-width: 1200px;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-heading p {
    max-width: 700px;
    line-height: 1.8;
}


/* KARTU LOKASI */
.location-card {
    overflow: hidden;
}

.location-info {
    height: 100%;
    padding: 45px;
}

.location-map {
    min-height: 380px;
    height: 100%;
}

.location-map iframe {
    display: block;
    border: 0;
}


/* LOKASI LAIN */
.other-location {
    height: 100%;
    padding: 30px;
}


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

@media (max-width: 991px) {

    .about-header {
        padding: 40px 0 45px !important;
    }

    .about-header h1 {
        font-size: 60px;
    }

    .about-content {
        padding-left: 0;
    }

    .about-section {
        padding: 55px 0 !important;
    }

    .location-section {
        padding: 55px 0 !important;
    }

}


@media (max-width: 576px) {

    .about-header {
        padding: 35px 0 40px !important;
    }

    .about-header h1 {
        font-size: 48px;
    }

    .about-header p {
        font-size: 15px;
    }

    .about-section {
        padding: 40px 0 !important;
    }

    .about-content h2 {
        font-size: 42px;
    }

    .location-section {
        padding: 45px 0 !important;
    }

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

    .location-info {
        padding: 30px;
    }

}/* TENTANG HEADER */
.about-header {
    width: 100% !important;
    background: var(--cream) !important;
    padding: 35px 20px 45px !important;
}

.about-header .container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.about-header-content {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 45px 20px !important;
    background: transparent !important;
    border-radius: 0 !important;
    text-align: center !important;
}

.about-header-content .eyebrow {
    margin-bottom: 12px !important;
    text-align: center !important;
}

.about-header-content h1 {
    margin: 0 auto 15px !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(50px, 6vw, 72px) !important;
    font-weight: 500 !important;
    line-height: .95 !important;
    color: var(--dark) !important;
    text-align: center !important;
}

.about-header-content p {
    max-width: 800px !important;
    margin: 0 auto !important;
    color: var(--text) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    text-align: center !important;
}
/* =========================================
   LOKASI - RAPihin
========================================= */

.location-section {
    background: var(--cream-light) !important;
    padding: 65px 20px 80px !important;
}

.location-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Judul lokasi */
.location-section .section-heading {
    text-align: center !important;
    margin-bottom: 45px !important;
}

.location-section .section-heading h2 {
    margin-bottom: 12px !important;
}

.location-section .section-heading p {
    max-width: 680px !important;
    margin: 0 auto !important;
}


/* HERTASNING */
.location-card {
    display: flex !important;
    align-items: stretch !important;
    background: var(--cream) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    margin-bottom: 55px !important;
}

.location-card .row {
    width: 100% !important;
    margin: 0 !important;
}

.location-card .col-lg-6 {
    padding: 0 !important;
}

.location-card .location-info {
    padding: 45px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.location-card .location-map {
    min-height: 400px !important;
}

.location-card iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    border: 0 !important;
    display: block !important;
}


/* 3 LOKASI LAIN */
.location-section .row.g-4 {
    --bs-gutter-x: 30px !important;
    --bs-gutter-y: 30px !important;
}

.location-section .row.g-4 > div {
    display: flex !important;
}

.location-section .location-item {
    width: 100% !important;
    padding: 10px 5px !important;
}

.location-section .location-item h3 {
    margin: 10px 0 12px !important;
    color: var(--dark) !important;
}

.location-section .location-item p {
    max-width: 330px !important;
    margin-bottom: 20px !important;
    line-height: 1.7 !important;
}


/* RESPONSIVE */
@media (max-width: 991px) {

    .location-card {
        display: block !important;
    }

    .location-card .location-info {
        padding: 35px !important;
    }

    .location-card .location-map,
    .location-card iframe {
        min-height: 350px !important;
    }
}

@media (max-width: 576px) {

    .location-section {
        padding: 50px 15px 60px !important;
    }

    .location-card .location-info {
        padding: 30px 25px !important;
    }

    .location-card .location-map,
    .location-card iframe {
        min-height: 300px !important;
    }

    .location-section .row.g-4 {
        --bs-gutter-x: 15px !important;
    }
}
.booking-header {
    min-height: 400px;
    height: 400px;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* =========================================================
   TAMBAHAN - KERANJANG PESANAN
   Merapikan tombol tambah, daftar produk, hapus, dan total.
========================================================= */

.add-product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;
    min-height: 48px;
    padding: 12px 18px;

    background: var(--mustard);
    border: 1px solid var(--mustard);
    border-radius: 8px;

    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
    transition: .25s ease;
}

.add-product-btn i {
    font-size: 16px;
}

.add-product-btn:hover {
    background: var(--mustard-dark);
    border-color: var(--mustard-dark);
    transform: translateY(-1px);
}

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


/* KARTU DAFTAR PESANAN */
.selected-price:has(#cartList) {
    align-items: flex-start;
}

.selected-price:has(#cartList) > div:last-child {
    min-width: 0;
    flex: 1;
}

.selected-price:has(#cartList) .price-icon {
    margin-top: 2px;
}

.selected-price:has(#cartList) > div:last-child > strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    line-height: 1.05;
}


/* DAFTAR PRODUK */
.cart-list {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 14px !important;
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;

    padding: 16px 17px;

    background: rgba(255, 255, 255, .58);
    border: 1px solid var(--border);
    border-radius: 9px;
}

.cart-item-info {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cart-item-info strong {
    color: var(--dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    line-height: 1.1;
}

.cart-item-info small,
.cart-item-price small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.cart-item-price {
    min-width: 115px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;

    text-align: right;
}

.cart-item-price strong {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.2;
}

.cart-remove {
    width: 36px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 36px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 7px;

    color: var(--muted);
    font-size: 14px;

    cursor: pointer;
    transition: .25s ease;
}

.cart-remove:hover {
    color: var(--white);
    background: var(--dark);
    border-color: var(--dark);
}

.cart-empty {
    padding: 18px;

    background: rgba(255, 255, 255, .5);
    border: 1px dashed var(--border);
    border-radius: 8px;

    color: var(--muted);
    font-size: 11px;
    text-align: center;
}


/* TOTAL PESANAN */
.cart-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;

    margin-top: 16px;
    padding-top: 17px;

    border-top: 1px solid var(--border);
}

.cart-total > div:first-child {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.cart-total > div:first-child span:last-child {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.cart-total .text-end {
    min-width: 125px;
}

.cart-total small {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.cart-total strong {
    display: block;
    margin-top: 3px;

    color: var(--dark);
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    line-height: 1;
}


/* RESPONSIVE KERANJANG */
@media (max-width: 767px) {

    .add-product-btn {
        width: 100%;
    }

    .cart-item {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    .cart-item-price {
        grid-column: 1 / 2;
        align-items: flex-start;
        text-align: left;
    }

    .cart-remove {
        grid-column: 2 / 3;
        grid-row: 1 / span 2;
    }

    .cart-total {
        align-items: flex-start;
    }

    .cart-total .text-end {
        min-width: 105px;
    }

    .cart-total strong {
        font-size: 23px;
    }
}

@media (max-width: 480px) {

    .selected-price:has(#cartList) {
        gap: 11px;
        padding: 16px;
    }

    .selected-price:has(#cartList) .price-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .selected-price:has(#cartList) > div:last-child > strong {
        font-size: 22px;
    }

    .cart-item {
        padding: 14px;
    }

    .cart-total {
        flex-direction: column;
        gap: 12px;
    }

    .cart-total .text-end {
        width: 100%;
        text-align: left !important;
    }
}