body {
    background-color: #f7f5f2;
    color: #1a1a1a;
    font-family: "inter", sans-serif;

    margin: 0;
}

h1 {
    font-size: 64px;
}

p {
    font-size: 18px;
}

button {
    padding: 14px 24px;
    border: 1px solid #1a1a1a;
    background-color: transparent;
}

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

    padding: 30px 60px;

    border-bottom: 1px solid #d8d4cf;
}.nav-left,
.nav-right {
    display: flex;
    gap: 30px;
}.navbar a {
    color: #1a1a1a;
    text-decoration: none;

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

    text-transform: uppercase;
    letter-spacing: 1.5px;
}.logo img {
    width: 180px;
    height: auto;
    display: block;
}.hero {
    height: 75vh;

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

    text-align: center;

    background-image: url("assets/images/hero.jpg");
    background-size: cover;
    background-position: center 25%;

    color: white;

    position: relative;
}
.hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.35);
}.hero-content {
    max-width: 900px;

    position: relative;
    z-index: 1;
}.hero-label {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}.hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: 96px;
    font-weight: 400;
    line-height: 0.9;

    margin: 0;
}.hero-description {
    font-size: 16px;

    margin-top: 30px;
    margin-bottom: 40px;
}.hero-button {
    display: inline-block;

    color: white;
    text-decoration: none;

    border-bottom: 1px solid white;

    padding-bottom: 5px;

    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}.categories {
    padding: 140px 60px 160px;

    text-align: center;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.categories h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 400;

    margin-top: 15px;
    margin-bottom: 60px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    max-width: 1500px;
    margin: 0 auto;
}

.category-image {
    height: 520px;

    overflow: hidden;
}.category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
    transition: transform 0.8s ease;
}.category-card:hover .category-image img {
    transform: scale(1.04);
}

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

    font-size: 36px;
    font-weight: 400;

    margin: 24px 0 8px;
}

.category-card a {
    color: #1a1a1a;
    text-decoration: none;

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

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

    border-bottom: 1px solid #1a1a1a;

    padding-bottom: 4px;
}.bridal-card img {
    object-position: center 45%;
}

.couture-card img {
    object-position: center 35%;
}

.rental-card img {
    object-position: center 25%;
}.menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}body.menu-open {
    overflow: hidden;
}
@media (max-width: 1100px) and (min-width: 769px) {

    .navbar {
        padding: 24px 30px;
    }

    .nav-left,
    .nav-right {
        gap: 18px;
    }

    .navbar a {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .logo img {
        width: 125px;
    }


    .hero {
        height: 72vh;
    }

    .hero-content {
        max-width: 760px;
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 76px;
    }

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


    .categories {
        padding: 110px 35px 130px;
    }

    .categories h2 {
        font-size: 58px;
    }

    .category-grid {
        gap: 18px;
    }

    .category-image {
        height: 430px;
    }

}
.bridal-page .hero {
    background-image: url("assets/images/bridal.jpg");
    background-position: center 35%;
}.bridal-intro {
    max-width: 900px;

    margin: 0 auto;

    padding: 140px 40px;

    text-align: center;
}

.bridal-intro h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 72px;
    font-weight: 400;

    margin: 18px 0 30px;
}

.bridal-intro-text {
    max-width: 650px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;
}
.bridal-gallery {
    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 12px;

    padding: 0 30px 140px;
}

.bridal-gallery-item {
    height: 650px;

    overflow: hidden;
}

.bridal-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.8s ease;
}

.bridal-gallery-item:hover img {
    transform: scale(1.03);
}.bridal-process {
    background-color: #ebe7e2;

    padding: 140px 60px;

    text-align: center;
}

.bridal-process h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 64px;
    font-weight: 400;

    margin: 18px 0 70px;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    max-width: 1400px;

    margin: 0 auto;

    gap: 40px;
}

.process-step span {
    font-size: 11px;

    letter-spacing: 2px;
}

.process-step h3 {
    font-family: "Cormorant Garamond", serif;

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

    margin: 20px 0 15px;
}

.process-step p {
    font-size: 13px;
    line-height: 1.7;

    margin: 0;
}.bridal-cta {
    padding: 160px 40px;

    text-align: center;
}

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

    font-size: 72px;
    font-weight: 400;

    max-width: 850px;

    margin: 20px auto 50px;
}

.bridal-cta-button {
    display: inline-block;

    color: #1a1a1a;
    text-decoration: none;

    text-transform: uppercase;

    font-size: 11px;
    letter-spacing: 2px;

    border: 1px solid #1a1a1a;

    padding: 18px 30px;

    transition: all 0.3s ease;
}

.bridal-cta-button:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}
.booking-main {
    background-color: #f7f5f2;
}


.booking-header {
    max-width: 1000px;

    margin: 0 auto;

    padding: 140px 40px 90px;

    text-align: center;
}


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

    font-size: 74px;
    font-weight: 400;
    line-height: 0.95;

    max-width: 760px;

    margin: 20px auto 30px;

    text-wrap: balance;
}


.booking-header > p:last-child {
    max-width: 560px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.7;
}.booking-section {
    max-width: 900px;

    margin: 0 auto;

    padding: 0 40px 160px;
}


.booking-form {
    border-top: 1px solid #cfc9c2;

    padding-top: 60px;
}.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;
}


.form-group {
    display: flex;
    flex-direction: column;

    margin-bottom: 35px;
}


.form-group label {
    margin-bottom: 12px;

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

    text-transform: uppercase;
    letter-spacing: 1.8px;
}.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: none;
    border-bottom: 1px solid #8e8983;

    background-color: transparent;

    padding: 14px 0;

    color: #1a1a1a;

    font-family: "Inter", sans-serif;
    font-size: 15px;

    outline: none;

    box-sizing: border-box;
}.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #1a1a1a;
}.booking-submit {
    display: block;

    width: 100%;

    margin-top: 25px;

    padding: 20px 30px;

    border: 1px solid #1a1a1a;

    background-color: #1a1a1a;
    color: #ffffff;

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

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

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

    cursor: pointer;

    transition: all 0.3s ease;
}


.booking-submit:hover {
    background-color: transparent;
    color: #1a1a1a;
}
.booking-success {
    text-align: center;

    padding: 80px 20px 40px;
}


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

    font-size: 64px;
    font-weight: 400;
    line-height: 1;

    margin: 20px auto 30px;
}


.success-message {
    max-width: 600px;

    margin: 0 auto;

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


.success-note {
    max-width: 520px;

    margin: 25px auto 45px;

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

    color: #67615c;
}


.booking-home-link {
    display: inline-block;

    color: #1a1a1a;
    text-decoration: none;

    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;

    border-bottom: 1px solid #1a1a1a;

    padding-bottom: 5px;
}
.booking-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}
@media (max-width: 768px) {

    .navbar {
        padding: 20px;
        justify-content: center;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo img {
        width: 115px;
    }    .hero {
        height: 78vh;
        background-position: center top;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 24px;
    }

    .hero h1 {
        font-size: 54px;
        line-height: 0.95;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;

        margin-top: 24px;
        margin-bottom: 30px;
    }

    .hero-button {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
        .categories {
        padding: 90px 20px 110px;
    }

    .categories h2 {
        font-size: 48px;

        margin-bottom: 50px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .category-image {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .category-card h3 {
        font-size: 34px;
        margin-top: 18px;
    }    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: flex;

        flex-direction: column;
        gap: 5px;

        position: absolute;
        left: 22px;

        background: none;
        border: none;

        padding: 8px;

        cursor: pointer;
    }

    .menu-toggle span {
        width: 22px;
        height: 1px;

        background-color: #1a1a1a;

        display: block;
    }    .mobile-menu {
        display: flex;

        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 100vh;

        background-color: #f7f5f2;

        z-index: 1000;

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

        transform: translateX(-100%);

        transition: transform 0.5s ease;
        overflow-y: auto;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }    .mobile-menu-links {
        display: flex;
        flex-direction: column;

        text-align: center;

        gap: 28px;
    }

    .mobile-menu-links a {
        color: #1a1a1a;
        text-decoration: none;

        font-family: "Cormorant Garamond", serif;

        font-size: 38px;
        font-weight: 400;
    }    .menu-close {
        position: absolute;

        top: 25px;
        right: 25px;

        background: none;
        border: none;

        color: #1a1a1a;

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

        cursor: pointer;
    }    .bridal-intro {
        padding: 90px 24px;
    }

    .bridal-intro h2 {
        font-size: 52px;
    }


    .bridal-gallery {
        grid-template-columns: 1fr;

        padding: 0 20px 100px;

        gap: 20px;
    }

    .bridal-gallery-item {
        height: auto;

        aspect-ratio: 4 / 5;
    }


    .bridal-process {
        padding: 90px 24px;
    }

    .bridal-process h2 {
        font-size: 48px;

        margin-bottom: 50px;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .bridal-cta {
        padding: 100px 24px;
    }

    .bridal-cta h2 {
        font-size: 50px;
    }   
     
.booking-header {
    padding: 65px 24px 55px;
}

.booking-header h1 {
    font-size: 44px;
    line-height: 0.98;

    max-width: 340px;

    margin: 18px auto 24px;
}

.booking-header > p:last-child {
    max-width: 320px;

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


    .booking-section {
        padding: 0 24px 100px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}@media (max-width: 768px) {

    .bridal-page {
        width: 100%;
        overflow-x: hidden;
    }

    .bridal-page .hero {
        width: 100%;
        max-width: none;

        height: 78vh;

        background-position: center 30%;
    }

    .bridal-page .hero-content {
        width: 100%;
        max-width: 100%;

        padding: 0 24px;

        box-sizing: border-box;
    }

    .bridal-page .hero h1 {
        font-size: 52px;
        line-height: 0.92;
    }    .bridal-page .bridal-gallery {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;

        padding: 0 20px 100px;

        gap: 20px;

        box-sizing: border-box;
    }

    .bridal-page .bridal-gallery-item {
        width: 100%;
        height: auto;

        aspect-ratio: 4 / 5;

        overflow: hidden;
    }

    .bridal-page .bridal-gallery-item img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit: cover;
        object-position: center;
    }    .bridal-page .bridal-intro {
        width: 100%;

        padding: 90px 24px;

        box-sizing: border-box;
    }

    .bridal-page .bridal-intro h2 {
        font-size: 46px;
        line-height: 1;
    }

    .bridal-page .bridal-intro-text {
        font-size: 14px;
        line-height: 1.7;

        max-width: 340px;
    }

}
.admin-login-page {
    background-color: #f7f5f2;

    min-height: 100vh;
}


.admin-login {
    min-height: 100vh;

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

    padding: 40px 24px;

    box-sizing: border-box;
}


.admin-login-box {
    width: 100%;
    max-width: 480px;
}


.admin-login-box h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: 64px;
    font-weight: 400;

    margin: 18px 0 15px;
}


.admin-login-description {
    margin-bottom: 50px;

    font-size: 14px;
}


.admin-login-error {
    margin-top: 20px;

    font-size: 13px;

    text-align: center;
}
/* =========================
   ADMIN DASHBOARD
========================= */

.admin-page {
    min-height: 100vh;
    background-color: #f7f5f2;
}

.admin-dashboard {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 70px 40px;

    box-sizing: border-box;
}

.admin-dashboard-header {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    padding-bottom: 30px;

    border-bottom: 1px solid #d8d4ce;
}

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

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

    font-weight: 400;

    margin: 10px 0 0;
}

.admin-logout {
    padding: 12px 22px;

    border: 1px solid #111;

    background: transparent;
    color: #111;

    font-size: 11px;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.admin-logout:hover {
    background-color: #111;
    color: white;
}

.admin-loading {
    padding: 60px 0;

    font-size: 14px;
}

#admin-content {
    padding: 60px 0;
}


@media (max-width: 768px) {

    .admin-dashboard {
        padding: 45px 24px;
    }

    .admin-dashboard-header {
        flex-direction: column;

        align-items: flex-start;
    }

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

}
/* =========================
   ADMIN APPOINTMENTS
========================= */

.admin-summary {
    margin-bottom: 70px;
}

.admin-summary-card {
    display: inline-flex;
    flex-direction: column;

    min-width: 220px;

    padding: 28px 30px;

    border: 1px solid #d8d4ce;

    background-color: #fff;
}

.admin-summary-number {
    font-family: "Cormorant Garamond", serif;

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

    margin-bottom: 10px;
}

.admin-summary-label {
    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.admin-section-heading {
    margin-bottom: 30px;
}

.admin-section-heading h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 42px;
    font-weight: 400;

    margin: 8px 0 0;
}


.appointments-list {
    display: flex;
    flex-direction: column;

    gap: 18px;
}


.appointment-card {
    padding: 28px 30px;

    background-color: #fff;

    border: 1px solid #dedbd5;
}


.appointment-card-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 30px;

    padding-bottom: 25px;

    border-bottom: 1px solid #ece9e4;
}


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

    font-size: 30px;
    font-weight: 400;

    margin: 0 0 5px;
}


.appointment-service {
    margin: 0;

    font-size: 13px;

    opacity: 0.65;
}


.appointment-status {
    display: inline-block;

    padding: 7px 11px;

    border: 1px solid #c8c4be;

    font-size: 9px;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.appointment-details {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 30px;

    padding-top: 25px;
}


.appointment-detail span,
.appointment-occasion span {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    opacity: 0.55;
}


.appointment-detail p {
    margin: 0;

    font-size: 13px;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


.appointment-occasion {
    margin-top: 25px;

    padding-top: 25px;

    border-top: 1px solid #ece9e4;
}


.appointment-occasion p {
    margin: 0;

    max-width: 700px;

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


.appointments-empty {
    padding: 50px 0;

    text-align: center;

    font-size: 14px;

    opacity: 0.6;
}


@media (max-width: 768px) {

    .admin-summary-card {
        width: 100%;

        box-sizing: border-box;
    }


    .appointment-card {
        padding: 24px 20px;
    }


    .appointment-card-top {
        flex-direction: column;
    }


    .appointment-details {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap: 25px;
    }


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

}/* =========================
   ADMIN APPOINTMENT ACTIONS
========================= */

.appointment-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;

    padding-top: 24px;

    border-top: 1px solid #ece9e4;
}


.appointment-action-button {
    padding: 11px 18px;

    border: 1px solid #111;

    background-color: #111;
    color: #fff;

    font-size: 10px;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    cursor: pointer;
}


.appointment-action-button:hover {
    background-color: transparent;
    color: #111;
}


.appointment-action-button:disabled {
    opacity: 0.5;

    cursor: wait;
}


.appointment-cancel {
    background-color: transparent;
    color: #111;
}


.appointment-cancel:hover {
    background-color: #111;
    color: #fff;
}
/* =========================
   ADMIN FILTERS & SUMMARY
========================= */

.admin-summary {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap: 12px;

    margin-bottom: 70px;
}


.admin-summary-card {
    min-width: 0;

    padding: 26px 24px;

    background-color: #fff;

    border: 1px solid #dedbd5;
}


.admin-controls {
    display: flex;

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

    gap: 30px;

    margin-bottom: 30px;
}


.admin-status-tabs {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.admin-filter-button {
    padding: 10px 15px;

    border: 1px solid #cbc7c0;

    background-color: transparent;

    color: #111;

    font-size: 9px;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.admin-filter-button:hover,
.admin-filter-button.active {
    background-color: #111;

    color: #fff;

    border-color: #111;
}


.appointment-search {
    width: 100%;

    max-width: 330px;

    padding: 12px 0;

    border: none;

    border-bottom:
        1px solid #aaa69f;

    background: transparent;

    font-family: inherit;

    font-size: 13px;

    outline: none;
}


.appointment-search:focus {
    border-bottom-color: #111;
}


@media (max-width: 1000px) {

    .admin-summary {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }

}


@media (max-width: 768px) {

    .admin-summary {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        margin-bottom: 50px;
    }


    .admin-controls {
        flex-direction: column;

        align-items: stretch;
    }


    .appointment-search {
        max-width: none;
    }

}
/* =========================
   ADMIN DATE FILTERS
========================= */

.admin-filter-groups {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.admin-filter-group {
    display: flex;

    align-items: center;

    gap: 18px;
}


.admin-filter-label {
    width: 70px;

    flex-shrink: 0;

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    opacity: 0.55;
}


.admin-date-tabs {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.admin-date-filter {
    padding: 10px 15px;

    border: 1px solid #cbc7c0;

    background-color: transparent;

    color: #111;

    font-size: 9px;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.admin-date-filter:hover,
.admin-date-filter.active {
    background-color: #111;

    color: #fff;

    border-color: #111;
}


@media (max-width: 768px) {

    .admin-filter-group {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }


    .admin-filter-label {
        width: auto;
    }

}
/* =========================
   APPOINTMENT DETAIL DRAWER
========================= */

.appointment-drawer-overlay {
    position: fixed;

    inset: 0;

    background-color:
        rgba(0, 0, 0, 0.25);

    z-index: 998;
}


.appointment-drawer {
    position: fixed;

    top: 0;
    right: 0;

    width: min(
        520px,
        100%
    );

    height: 100vh;

    padding: 38px;

    box-sizing: border-box;

    background-color: #f7f5f2;

    overflow-y: auto;

    z-index: 999;

    box-shadow:
        -20px 0 50px
        rgba(0, 0, 0, 0.08);
}


.appointment-drawer-header {
    display: flex;

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

    padding-bottom: 25px;

    border-bottom:
        1px solid #d8d4ce;
}


.appointment-drawer-close {
    border: none;

    background: transparent;

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

    cursor: pointer;
}


.appointment-drawer-content {
    padding-top: 35px;
}


.appointment-drawer-content h2 {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 46px;

    font-weight: 400;

    line-height: 1;

    margin:
        25px 0 8px;
}


.drawer-service {
    margin:
        0 0 40px;

    font-size: 14px;

    opacity: 0.65;
}


.drawer-details {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 28px;

    padding:
        30px 0;

    border-top:
        1px solid #dedbd5;

    border-bottom:
        1px solid #dedbd5;
}


.drawer-detail span,
.drawer-notes span {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    opacity: 0.55;
}


.drawer-detail p {
    margin: 0;

    font-size: 13px;

    overflow-wrap: anywhere;
}


.drawer-notes {
    padding:
        30px 0;
}


.drawer-notes p {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;
}


.drawer-contact-actions {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    padding-top: 10px;
}


.drawer-email-button {
    display: inline-flex;

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

    padding:
        11px 18px;

    border:
        1px solid #111;

    color: #111;

    font-size: 10px;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    text-decoration: none;
}


.drawer-email-button:hover {
    background-color: #111;

    color: white;
}


body.drawer-open {
    overflow: hidden;
}


@media (max-width: 600px) {

    .appointment-drawer {
        padding:
            28px 22px;
    }


    .appointment-drawer-content h2 {
        font-size: 40px;
    }


    .drawer-details {
        grid-template-columns:
            1fr;
    }

}
/* =========================
   BOOKING SECURITY
========================= */

.booking-security {
    margin: 10px 0 5px;
}