/* LUSSEA Booking Page Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #FAFAFA;
    color: #000000;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Centering container used across pages */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Headings used by pages */
.heading-44-medium {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.color-text {
    color: #666666;
    font-size: 14px;
}

/* Center headings and intro text inside content panels (e.g., register) */
.lussea-content-panel .text-center {
    text-align: center;
    margin-bottom: 20px;
}

/* Also center the top intro heading inside the box for register page */
.text-center {
    text-align: center;
    margin-bottom: 20px;
}

.lussea-box {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    width: auto;
}


main {
    flex: 1;
}

/* Constrain login/register forms */
.box-login {
    max-width: 760px;
    margin: 40px auto 0;
}

/* Narrow variant for pages like register that should shrink to content */
.lussea-box--narrow {
    width: auto;
    max-width: 520px; /* narrower */
    margin: 30px auto 40px;
    padding: 20px;
}

.lussea-box--narrow .lussea-content-panel {
    padding: 18px 16px;
}

/* Constrain forms inside narrow box so inputs aren't overly wide */
.lussea-box--narrow .lussea-content-panel form {
    max-width: 480px;
    margin: 0 auto;
}

/* Reduce default input size in narrow boxes */
.lussea-box--narrow .lussea-form-input {
    max-width: 100%;
}

/* Ensure form labels are left aligned inside forms */
.lussea-form-label {
    text-align: left;
}


/* Header Styles */
.lussea-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
}

.lussea-header .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.lussea-logo {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #000000;
    text-decoration: none;
}

.lussea-nav {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-self: center;
}

.lussea-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.lussea-header-actions {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-self: end;
}

.lussea-header-actions a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.lussea-nav a:hover {
    opacity: 0.6;
}

/* Top Tabs */
.lussea-box {
    border: 1px solid #e9e6e2;
    padding: 30px;
    border-radius: 4px;
    background: #fff;
    width: 70vw;
    /* max-width: 1600px; */
    min-width: 400px;
    margin: 20px auto 40px;
}

.lussea-top-tabs {
    padding: 8px 0 18px 0;
    border-bottom: 1px solid #f0efed;
}

.lussea-top-tabs .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.lussea-top-tabs .lussea-top-tabs-wrapper {
    display: flex;
    gap: 18px;
    align-items: center;
}

.lussea-top-tab {
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
    background: transparent;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.lussea-top-tab:hover {
    color: #000000;
}

.lussea-top-tab.active {
    background-color: transparent;
    color: #000000;
    font-weight: 600;
    border: none;
}

.lussea-content-panel {
    /* border: 1px solid #E9E6E2; */
    padding: 20px;
    border-radius: 4px;
    background: #fff;
    /* box-shadow: none; */
}

/* Progress Tabs */
.lussea-progress-tabs {
    background-color: #ffffff;
    padding: 20px 0 10px;
}

.lussea-progress-tabs .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.lussea-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.lussea-tab {
    font-size: 14px;
    color: #999999;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lussea-tab.active {
    color: #000000;
    font-weight: 500;
}

.lussea-tab:not(:last-child)::after {
    display: none;
}

/* Main Content */
.lussea-main {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.lussea-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.lussea-appointment-wrapper {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.lussea-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Left Column - Form */
.lussea-form-section {
    background-color: #ffffff;
}

.lussea-section-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #000;
}

.lussea-form-group {
    margin-bottom: 20px;
}

.lussea-form-label {
    display: block;
    font-size: 13px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.lussea-form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    font-size: 14px;
    color: #000000;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.lussea-form-input:focus {
    outline: none;
    border-color: #000000;
}

.lussea-form-input::placeholder {
    color: #cccccc;
}

.lussea-form-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 15px;
}

.lussea-header-row {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;    
}

.lussea-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.lussea-form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.lussea-form-note {
    font-size: 11px;
    color: #999999;
    margin-top: 8px;
    font-style: italic;
}

.lussea-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lussea-checkbox {
    margin-top: 3px;
}

.lussea-checkbox-label {
    font-size: 14px;
    color: #000000;
    cursor: pointer;
}

/* Right Column - Summary */
.lussea-summary-section {
    background-color: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    padding: 25px;
    margin-top: 30px;
    height: fit-content;
}

.lussea-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.lussea-summary-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.lussea-edit-link {
    font-size: 12px;
    color: #000000;
    text-decoration: none;
    font-style: italic;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lussea-edit-link:hover {
    opacity: 0.6;
}

.lussea-summary-location {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: uppercase;
}

.lussea-summary-datetime {
    font-size: 12px;
    color: #666666;
    margin-bottom: 25px;
}

.lussea-summary-divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 25px 0;
}

.lussea-summary-services-title {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.lussea-service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13px;
}

.lussea-service-name {
    color: #1a1a1a;
    flex: 1;
}

.lussea-service-price {
    color: #1a1a1a;
    font-weight: 400;
    white-space: nowrap;
    margin-left: 15px;
}

.lussea-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.lussea-total-label {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}

.lussea-total-amount {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

/* Button */
.lussea-btn-primary {
    width: 100%;
    padding: 12px 30px;
    background-color: #C19F62;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 30px;
}

.lussea-btn-primary:hover {
    background-color: #b89856;
}

.lussea-btn-primary:active {
    background-color: #a88846;
}

/* Footer */
.lussea-footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 30px 0;
    margin-top: auto;
}

.lussea-footer .container,
.lussea-footer .auto__container {
    max-width: 1160px; /* match .auto__container */
    margin: 0 auto;
    padding: 0 40px; /* align with .auto__container horizontal padding */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.lussea-footer-left {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-left: 0; /* container provides the padding now */
}

.lussea-footer-logo {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #000000;
    text-decoration: none;
    width: 120px; /* Match nav bar logo width */
}

.lussea-footer-logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: block;
}

.lussea-footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lussea-footer-brand {
    font-size: 12px;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lussea-footer-copyright {
    font-size: 10px;
    color: #000;
    font-weight: 500;
}

.lussea-footer-nav {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-self: center;
}

.lussea-footer-nav a {
    font-size: 12px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lussea-footer-nav a:hover {
    color: #000000;
}

.lussea-footer-right {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px; /* match .auto__container horizontal padding */
}

.lussea-footer-links {
    display: flex;
    gap: 40px; /* Increased spacing between the two links */
    align-items: center;
}

.lussea-footer-links a {
    font-size: 12px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lussea-footer-links a:hover {
    color: #000000;
}

/* Responsive */
@media (max-width: 992px) {
    .lussea-content-wrapper {
        grid-template-columns: 1fr;
    }

    .lussea-summary-section {
        position: relative;
        top: 0;
    }

    .lussea-nav {
        gap: 20px;
    }

    .lussea-tabs-wrapper {
        flex-wrap: wrap;
        
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lussea-header .container {
        flex-direction: column;
        gap: 20px;
    }

    .lussea-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .lussea-form-row,
    .lussea-form-row-2,
    .lussea-form-row-3 {
        grid-template-columns: 1fr;
    }

    .lussea-footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .lussea-footer-left {
        flex-direction: column;
        padding-left: 0; /* Remove left padding on mobile */
    }

    .lussea-footer-right {
        justify-content: center;
        padding-right: 0; /* Remove right padding on mobile */
    }
}

/* Select Dropdown Styling */
select.lussea-form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Services Page Specifics */
.lussea-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lussea-service-row {
    display: grid;
    grid-template-columns: 1fr auto 120px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #f0efed;
}

.lussea-service-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lussea-price-tag {
    background-color: #C19F62;
    color: #ffffff;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.lussea-service-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.lussea-quantity-label {
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    text-align: center;
}

.lussea-quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.lussea-qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #e9e6e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    background: #fff;
    user-select: none;
}

.lussea-qty-value {
    font-size: 14px;
    font-weight: 500;
    width: 20px;
    text-align: center;
}

.lussea-btn-select {
    background-color: #f5f5f5;
    color: #000;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.lussea-notes-area {
    width: 100%;
    padding: 15px;
    border: 1px solid #e9e6e2;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 30px;
    min-height: 100px;
    background-color: #FAFAFA;
}