/* =========================================================
   PKL Warehouse Details Page
   File: public/assets/pkl/css/warehouse-details.css
   Header/Footer style matched with main PKL website
========================================================= */

:root {
    --pkl-cyan: #00C3FF;
    --pkl-cyan-dark: #00a8cc;
    --pkl-dark: #111827;
    --pkl-navy: #061827;
    --pkl-card: rgba(7, 24, 39, 0.94);
    --pkl-card-2: rgba(13, 42, 72, 0.82);
    --pkl-white: #ffffff;
    --pkl-muted: #a9bacb;
    --pkl-footer-muted: #7b8794;
    --pkl-footer-title: #4b5563;
    --pkl-border: rgba(0, 200, 240, 0.28);
    --pkl-border-light: #eef2f7;
    --pkl-shadow: 0 28px 90px rgba(0, 0, 0, 0.30);
    --pkl-font: "Raleway", Arial, Helvetica, sans-serif;
}

/* =========================================================
   Reset
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.pkl-warehouse-layout-body {
    background: #ffffff;
    color: var(--pkl-dark);
    font-family: var(--pkl-font);
}

/* =========================================================
   Header - same visual direction as main website
========================================================= */

.pkl-site-header {
    width: 100%;
    height: 74px;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    z-index: 9999;
    box-shadow: none;
}

.pkl-site-header__inner {
    width: min(1180px, calc(100% - 48px));
    height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pkl-site-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.pkl-site-header__logo img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 150px;
    object-fit: contain;
}

.pkl-site-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 42px;
    margin: 0;
    padding: 0;
}

.pkl-site-header__nav a {
    display: inline-flex;
    align-items: center;
    height: 74px;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.pkl-site-header__nav a:hover {
    color: var(--pkl-cyan);
}

/* =========================================================
   Main Page Background
========================================================= */

.pkl-warehouse-details-page {
    position: relative;
    padding: clamp(34px, 5vw, 72px) 20px clamp(48px, 6vw, 90px);
    color: var(--pkl-white);
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.28), transparent 24%),
        linear-gradient(135deg, #00C3FF 0%, #00b4df 46%, #0794c5 100%);
    overflow: hidden;
}

.pkl-warehouse-details-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 42px 42px;
}

/* =========================================================
   Shared Layout Width
========================================================= */

.pkl-warehouse-hero,
.pkl-details-summary,
.pkl-details-grid,
.pkl-gallery-showcase,
.pkl-location-section {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   Hero Section
========================================================= */

.pkl-warehouse-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 26px;
    align-items: stretch;
    margin-bottom: 24px;
}

.pkl-warehouse-hero__content,
.pkl-warehouse-hero__image,
.pkl-summary-card,
.pkl-details-panel,
.pkl-click-gallery__item,
.pkl-location-section {
    border: 1px solid var(--pkl-border);
    background: linear-gradient(160deg, var(--pkl-card), var(--pkl-card-2));
    box-shadow: var(--pkl-shadow);
    backdrop-filter: blur(18px);
}

.pkl-warehouse-hero__content {
    min-height: 440px;
    padding: clamp(28px, 4vw, 52px);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pkl-back-link {
    width: fit-content;
    margin-bottom: 26px;
    padding: 12px 18px;
    color: #041522;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    background: var(--pkl-cyan);
    transition: transform 0.25s ease, background 0.25s ease;
}

.pkl-back-link:hover {
    background: #35dfff;
    transform: translateY(-2px);
}

.pkl-details-kicker,
.pkl-panel-kicker,
.pkl-section-head span {
    color: var(--pkl-cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.pkl-warehouse-hero h1 {
    margin: 14px 0 18px;
    color: #ffffff;
    font-size: clamp(46px, 6vw, 86px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.pkl-warehouse-hero p {
    max-width: 760px;
    color: #c6d6e6;
    font-size: 16px;
    line-height: 1.85;
}

.pkl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pkl-status-pill,
.pkl-zone-pill {
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
}

.pkl-status-pill.available {
    color: #edfff4;
    background: rgba(32, 199, 100, 0.16);
    border: 1px solid rgba(32, 199, 100, 0.3);
}

.pkl-status-pill.reserved {
    color: #fff4e8;
    background: rgba(255, 139, 44, 0.16);
    border: 1px solid rgba(255, 139, 44, 0.3);
}

.pkl-status-pill.sold {
    color: #eef4fb;
    background: rgba(123, 141, 163, 0.2);
    border: 1px solid rgba(123, 141, 163, 0.35);
}

.pkl-zone-pill {
    color: var(--pkl-cyan);
    background: rgba(0, 200, 240, 0.09);
    border: 1px solid rgba(0, 200, 240, 0.25);
}

.pkl-warehouse-hero__image {
    border-radius: 32px;
    overflow: hidden;
}

.pkl-warehouse-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}

/* =========================================================
   Summary Cards
========================================================= */

.pkl-details-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.pkl-summary-card {
    padding: 24px;
    border-radius: 24px;
}

.pkl-summary-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--pkl-muted);
    font-size: 14px;
    font-weight: 800;
}

.pkl-summary-card strong {
    color: #ffffff;
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 900;
}

/* =========================================================
   Details Grid
========================================================= */

.pkl-details-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
    margin-bottom: 28px;
}

.pkl-details-panel {
    padding: 30px;
    border-radius: 28px;
}

.pkl-details-panel h2,
.pkl-section-head h2,
.pkl-location-content h2 {
    margin: 10px 0 22px;
    color: #ffffff;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.pkl-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pkl-spec-item {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.pkl-spec-item span {
    display: block;
    margin-bottom: 8px;
    color: var(--pkl-muted);
    font-size: 13px;
    font-weight: 700;
}

.pkl-spec-item strong {
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

/* =========================================================
   Features
========================================================= */

.pkl-features-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkl-features-list li {
    position: relative;
    padding: 16px 18px 16px 42px;
    border-radius: 16px;
    color: #eaf6ff;
    background: rgba(0, 200, 240, 0.09);
    border: 1px solid rgba(0, 200, 240, 0.16);
    font-weight: 800;
}

.pkl-features-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pkl-cyan);
}

/* =========================================================
   Gallery
========================================================= */

.pkl-gallery-showcase {
    margin-bottom: 30px;
}

.pkl-section-head {
    margin-bottom: 18px;
}

.pkl-section-head p {
    margin: 0;
    color: #e8f7ff;
    font-size: 16px;
    line-height: 1.8;
}

.pkl-click-gallery {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr;
    gap: 18px;
    align-items: stretch;
}

.pkl-click-gallery__item {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 26px;
    cursor: pointer;
}

.pkl-click-gallery__item.is-large {
    min-height: 430px;
    grid-row: span 2;
}

.pkl-click-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.pkl-click-gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(5, 19, 38, 0.88) 100%);
    pointer-events: none;
}

.pkl-gallery-label,
.pkl-gallery-more {
    position: absolute;
    z-index: 2;
    bottom: 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.pkl-gallery-label {
    left: 18px;
    max-width: calc(100% - 110px);
    padding: 10px 14px;
    color: #ffffff;
    background: rgba(5, 19, 38, 0.78);
}

.pkl-gallery-more {
    right: 18px;
    padding: 10px 14px;
    color: #041522;
    background: var(--pkl-cyan);
}

/* =========================================================
   Location
========================================================= */

.pkl-location-section {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 24px;
    padding: 30px;
    border-radius: 30px;
}

.pkl-location-content p {
    color: #c6d6e6;
    font-size: 16px;
    line-height: 1.8;
}

.pkl-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pkl-location-list span {
    padding: 10px 14px;
    border-radius: 999px;
    color: #eaf8ff;
    background: rgba(0, 200, 240, 0.10);
    border: 1px solid rgba(0, 200, 240, 0.18);
    font-weight: 800;
}

.pkl-location-map-wrap {
    position: relative;
    height: 430px;
    min-height: 430px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0, 200, 240, 0.24);
    background: #061526;
}

.pkl-google-map {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

/* =========================================================
   Footer - same visual direction as main website
========================================================= */

.pkl-site-footer {
    background: #ffffff;
    color: var(--pkl-footer-muted);
    border-top: 3px solid var(--pkl-cyan);
    font-family: var(--pkl-font);
}

.pkl-site-footer__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 48px 0 42px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 42px;
}

.pkl-site-footer__col {
    min-width: 0;
}

.pkl-site-footer h3 {
    margin: 0 0 16px;
    color: var(--pkl-footer-title);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.pkl-site-footer a {
    display: block;
    margin-bottom: 10px;
    color: #7b8794;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.25s ease;
}

.pkl-site-footer a:hover {
    color: var(--pkl-cyan);
}

.pkl-footer-address,
.pkl-site-footer p {
    margin: 0;
    color: #7b8794;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
}

.pkl-site-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.pkl-site-footer__social a {
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475467;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.pkl-site-footer__social a:hover {
    color: #ffffff;
    background: var(--pkl-cyan);
    border-color: var(--pkl-cyan);
}

.pkl-site-footer__bottom {
    padding: 18px 20px;
    text-align: center;
    color: #ffffff;
    background: var(--pkl-cyan);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

/* =========================================================
   Gallery Modal
========================================================= */

body.pkl-gallery-open {
    overflow: hidden !important;
}

.pkl-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pkl-gallery-modal.is-open {
    display: flex;
}

.pkl-gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 12, 24, 0.82);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.pkl-gallery-modal__panel {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    max-height: calc(100vh - 48px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0, 200, 240, 0.38);
    background: rgba(5, 19, 38, 0.96);
    box-shadow: 0 34px 120px rgba(0, 0, 0, 0.60);
}

.pkl-gallery-modal__figure {
    margin: 0;
    width: 100%;
    height: min(76vh, 760px);
    position: relative;
}

.pkl-gallery-modal__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020b14;
}

.pkl-gallery-modal__figure figcaption {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: rgba(5, 19, 38, 0.78);
}

.pkl-gallery-modal__close,
.pkl-gallery-modal__nav {
    position: absolute;
    z-index: 5;
    border: 1px solid rgba(0, 200, 240, 0.42);
    color: #ffffff;
    background: rgba(5, 19, 38, 0.82);
    cursor: pointer;
}

.pkl-gallery-modal__close {
    top: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
}

.pkl-gallery-modal__nav {
    top: 50%;
    width: 54px;
    height: 76px;
    transform: translateY(-50%);
    border-radius: 18px;
    font-size: 54px;
    line-height: 1;
}

.pkl-gallery-modal__nav.prev {
    left: 18px;
}

.pkl-gallery-modal__nav.next {
    right: 18px;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {
    .pkl-warehouse-hero,
    .pkl-details-grid,
    .pkl-location-section {
        grid-template-columns: 1fr;
    }

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

    .pkl-click-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .pkl-click-gallery__item.is-large {
        grid-column: 1 / -1;
    }

    .pkl-site-footer__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .pkl-site-header {
        height: auto;
        min-height: 74px;
    }

    .pkl-site-header__inner {
        width: calc(100% - 32px);
        height: auto;
        min-height: 74px;
        padding: 10px 0;
        gap: 18px;
    }

    .pkl-site-header__logo img {
        height: 50px;
        max-width: 130px;
    }

    .pkl-site-header__nav {
        gap: 24px;
    }

    .pkl-site-header__nav a {
        height: auto;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .pkl-warehouse-details-page {
        padding-left: 0;
        padding-right: 0;
    }

    .pkl-warehouse-hero,
    .pkl-details-summary,
    .pkl-details-grid,
    .pkl-gallery-showcase,
    .pkl-location-section {
        width: calc(100% - 24px);
    }

    .pkl-warehouse-hero__content,
    .pkl-details-panel,
    .pkl-location-section {
        border-radius: 22px;
        padding: 22px;
    }

    .pkl-details-summary,
    .pkl-specs-grid,
    .pkl-click-gallery {
        grid-template-columns: 1fr;
    }

    .pkl-warehouse-hero__image img {
        min-height: 320px;
    }

    .pkl-click-gallery__item,
    .pkl-click-gallery__item.is-large {
        min-height: 270px;
        grid-column: auto;
        grid-row: auto;
    }

    .pkl-location-map-wrap,
    .pkl-google-map {
        height: 330px;
        min-height: 330px;
    }

    .pkl-gallery-modal {
        padding: 12px;
    }

    .pkl-gallery-modal__figure {
        height: 72vh;
    }

    .pkl-gallery-modal__nav {
        width: 44px;
        height: 62px;
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .pkl-site-header__inner {
        flex-direction: column;
        justify-content: center;
        padding: 14px 0;
    }

    .pkl-site-header__nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .pkl-site-header__nav a {
        font-size: 13px;
        font-weight: 800;
    }

    .pkl-site-footer__inner {
        grid-template-columns: 1fr;
        padding: 36px 0;
    }

    .pkl-site-footer h3 {
        font-size: 18px;
    }

    .pkl-site-footer a,
    .pkl-footer-address,
    .pkl-site-footer p {
        font-size: 14px;
    }
}

/* =========================================================
   PKL Warehouse Booking Modal
========================================================= */

.pkl-booking-open-btn {
    border: 0;
    outline: 0;
    padding: 12px 20px;
    border-radius: 999px;
    color: #041522;
    background: linear-gradient(135deg, #00c8f0, #7be9ff);
    font-family: var(--pkl-font);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(0, 200, 240, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pkl-booking-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(0, 200, 240, 0.34);
}

body.pkl-booking-open {
    overflow: hidden;
}

.pkl-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.pkl-booking-modal.is-open {
    display: flex;
}

.pkl-booking-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 12, 24, 0.72);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.pkl-booking-modal__panel {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    padding: clamp(26px, 4vw, 44px);
    border-radius: 34px;
    border: 2px solid rgba(0, 200, 240, 0.78);
    color: #ffffff;
    background:
        linear-gradient(rgba(6, 24, 39, 0.88), rgba(6, 24, 39, 0.90)),
        linear-gradient(160deg, rgba(7, 24, 39, 0.98), rgba(13, 42, 72, 0.94));
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.pkl-booking-modal__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background:
        linear-gradient(rgba(0, 200, 240, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 240, 0.35) 1px, transparent 1px);
    background-size: 36px 36px;
    border-radius: inherit;
}

.pkl-booking-modal__close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 4;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(0, 200, 240, 0.45);
    color: #ffffff;
    background: rgba(0, 200, 240, 0.08);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.pkl-booking-modal__close:hover {
    background: rgba(0, 200, 240, 0.2);
    transform: rotate(90deg);
}

.pkl-booking-modal__head,
.pkl-booking-form {
    position: relative;
    z-index: 2;
}

.pkl-booking-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00c8f0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.pkl-booking-kicker span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00c8f0;
    box-shadow: 0 0 0 10px rgba(0, 200, 240, 0.10);
}

.pkl-booking-modal__head h2 {
    max-width: 680px;
    margin: 18px 0 18px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.pkl-booking-modal__head p {
    max-width: 760px;
    margin: 0 0 28px;
    color: #b8c9da;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 500;
}

.pkl-selected-warehouse {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    margin-bottom: 26px;
    padding: 20px 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 200, 240, 0.35);
    background: rgba(0, 200, 240, 0.08);
}

.pkl-selected-warehouse span {
    color: #a9bacb;
    font-size: 15px;
    font-weight: 900;
}

.pkl-selected-warehouse strong {
    color: #ffffff;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
}

.pkl-booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
}

.pkl-booking-field {
    margin-bottom: 18px;
}

.pkl-booking-field.full {
    width: 100%;
}

.pkl-booking-field label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.pkl-booking-field input,
.pkl-booking-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    outline: 0;
    border-radius: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-family: var(--pkl-font);
    font-size: 15px;
    font-weight: 700;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.pkl-booking-field input {
    height: 66px;
    padding: 0 20px;
}

.pkl-booking-field textarea {
    min-height: 150px;
    padding: 20px;
    resize: vertical;
}

.pkl-booking-field input::placeholder,
.pkl-booking-field textarea::placeholder {
    color: rgba(202, 216, 229, 0.62);
}

.pkl-booking-field input:focus,
.pkl-booking-field textarea:focus {
    border-color: rgba(0, 200, 240, 0.78);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(0, 200, 240, 0.10);
}

.pkl-booking-field small {
    display: block;
    margin-top: 8px;
    color: #ffb4b4;
    font-size: 13px;
    font-weight: 800;
}

.pkl-booking-actions {
    display: grid;
    grid-template-columns: 1fr 170px;
    gap: 16px;
    margin-top: 4px;
}

.pkl-booking-submit,
.pkl-booking-cancel {
    height: 66px;
    border: 0;
    border-radius: 18px;
    font-family: var(--pkl-font);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.pkl-booking-submit {
    color: #041522;
    background: linear-gradient(135deg, #00c8f0, #7be9ff);
    box-shadow: 0 18px 42px rgba(0, 200, 240, 0.24);
}

.pkl-booking-cancel {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.pkl-booking-submit:hover,
.pkl-booking-cancel:hover {
    transform: translateY(-2px);
}

.pkl-booking-toast {
    position: fixed;
    top: 92px;
    right: 22px;
    z-index: 999999;
    max-width: 420px;
    padding: 18px 22px;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(13, 42, 72, 0.96));
    border: 1px solid rgba(0, 200, 240, 0.34);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    font-size: 15px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .pkl-booking-modal {
        padding: 10px;
    }

    .pkl-booking-modal__panel {
        border-radius: 24px;
        padding: 24px 18px;
    }

    .pkl-booking-modal__close {
        top: 14px;
        right: 14px;
        width: 48px;
        height: 48px;
        font-size: 30px;
    }

    .pkl-selected-warehouse,
    .pkl-booking-grid,
    .pkl-booking-actions {
        grid-template-columns: 1fr;
    }

    .pkl-booking-actions {
        gap: 12px;
    }

    .pkl-booking-submit,
    .pkl-booking-cancel {
        width: 100%;
    }

    .pkl-booking-toast {
        left: 12px;
        right: 12px;
        top: 82px;
    }
}