.hhs-wedding-picker,
.hhs-wedding-picker * {
    box-sizing: border-box;
}

.hhs-wedding-picker {
    max-width: 980px;
    margin: 0 auto;
    padding: 32px 20px;
    color: #262722;
}

.hhs-picker-shell {
    border-radius: 20px;
    padding: 28px 22px;
    background: #f5f1e9;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.hhs-picker-progress {
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .06);
    overflow: hidden;
    margin-bottom: 18px;
}

.hhs-picker-progress-bar {
    width: 0%;
    height: 100%;
    background: #ac9e78;
    transition: width .25s ease;
}

.hhs-step {
    display: none;
    text-align: center;
}

.hhs-step.is-active {
    display: block;
}

.hhs-picker-eyebrow {
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #6b5a3a;
}

.hhs-picker-title {
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 10px;
    color: #5e513a;
}

.hhs-picker-subtitle {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto 22px;
    color: #4b4b44;
    max-width: 620px;
}

.hhs-primary-btn,
.hhs-secondary-btn,
.hhs-choice-btn,
.hhs-choice-pill,
.hhs-inquiry-btn {
    font-family: inherit;
}

.hhs-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: #ac9e78;
    color: #f6f3ec;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .1s ease, box-shadow .1s ease, background .15s ease;
}

.hhs-primary-btn[disabled] {
    opacity: .45;
    cursor: default;
    box-shadow: none;
    transform: none;
}

.hhs-primary-btn:hover:not([disabled]) {
    background: #9c8d66;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
    transform: translateY(-1px);
}

.hhs-secondary-btn {
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .14);
    background: transparent;
    padding: 8px 18px;
    cursor: pointer;
    font-size: 14px;
    color: #3a3a33;
}

.hhs-secondary-btn:hover {
    background: #f5eee4;
}

.hhs-step-counter {
    font-size: 13px;
    color: #8a7b63;
    margin-bottom: 18px;
}

.hhs-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 540px;
    margin: 0 auto 16px;
}

.hhs-choice-btn {
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 12px 14px;
    cursor: pointer;
    background: #fbf7ef;
    font-size: 14px;
    line-height: 1.4;
    color: #262722;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hhs-choice-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, .8), transparent 55%);
    opacity: 0;
    transition: opacity .2s ease;
}

.hhs-choice-btn:hover::before {
    opacity: 1;
}

.hhs-choice-btn span {
    display: block;
    position: relative;
}

.hhs-choice-main {
    font-weight: 600;
    margin-bottom: 4px;
}

.hhs-choice-sub {
    font-size: 13px;
    color: #7a7160;
}

.hhs-choice-btn.is-active,
.hhs-choice-pill.is-active {
    border-color: #ac9e78;
    background: #f0e5d4;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
}

.hhs-choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 18px;
}

.hhs-choice-pill {
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    background: #fbf7ef;
    color: #262722;
    min-width: 140px;
    text-align: center;
    font-weight: 500;
}

.hhs-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    gap: 10px;
}

.hhs-results {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.hhs-result-meta {
    font-size: 14px;
    color: #6d6454;
    margin: 0 0 12px;
}

.hhs-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hhs-card {
    border-radius: 16px;
    padding: 10px 10px 12px;
    background: #fbf7ef;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hhs-card-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd3c4;
    margin-bottom: 6px;
    aspect-ratio: 4 / 3;
}

.hhs-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s ease;
}

.hhs-card-image a:hover img {
    transform: scale(1.03);
}

.hhs-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #262722;
}

.hhs-card-title a {
    color: inherit;
    text-decoration: none;
}

.hhs-card-title a:hover {
    text-decoration: underline;
}

.hhs-card-meta {
    font-size: 12px;
    color: #7a7160;
}

.hhs-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 6px;
    align-items: center;
}

.hhs-card-link {
    color: #5e513a;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

.hhs-card-link:hover {
    text-decoration: underline;
}

.hhs-inquiry-btn {
    border-radius: 999px;
    padding: 7px 12px;
    border: 1px solid rgba(172, 158, 120, .45);
    background: #f0e5d4;
    color: #5e513a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
}

.hhs-inquiry-btn:hover {
    background: #ead9c1;
}

.hhs-empty {
    background: #fbf7ef;
    padding: 16px;
    border-radius: 14px;
    color: #6d6454;
}

.hhs-wedding-picker--floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2147483646;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hhs-floating-inquiry-button {
    box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
    white-space: nowrap;
}

html.hhs-modal-open,
body.hhs-modal-open {
    overflow: hidden !important;
    width: 100%;
}

body.hhs-modal-open {
    position: fixed;
    left: 0;
    right: 0;
}

.hhs-wedding-modal {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483647 !important;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .45);
    padding: 16px;
    overscroll-behavior: contain;
}

.hhs-wedding-modal.is-open {
    display: flex;
}

.hhs-wedding-modal__dialog {
    max-width: 560px;
    width: 100%;
    max-height: calc(100vh - 32px);
    overflow: auto;
    overscroll-behavior: contain;
    background: #f5f1e9;
    border-radius: 18px;
    padding: 20px 18px;
    position: relative;
}

.hhs-wedding-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #665a45;
}

.hhs-wedding-modal__header {
    margin-bottom: 10px;
    text-align: left;
}

.hhs-wedding-modal__title {
    font-size: 20px;
    font-weight: 600;
    color: #5e513a;
    margin-bottom: 4px;
}

.hhs-wedding-modal__summary,
.hhs-wedding-modal__hotels {
    font-size: 13px;
    color: #6d6454;
}

.hhs-wedding-modal__hotels {
    margin-top: 6px;
}

.hhs-wedding-modal__notice {
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff8e8;
    color: #5e513a;
    margin-bottom: 12px;
    text-align: left;
}

.hhs-wedding-modal__notice.is-error {
    background: #ffecec;
    color: #7a1f1f;
}

.hhs-form-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.hhs-form-grid label {
    text-align: left;
    display: block;
}

.hhs-form-grid span {
    font-size: 13px;
    color: #4b4b44;
    display: block;
    margin-bottom: 4px;
}

.hhs-form-grid input,
.hhs-form-grid textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fbf7ef;
    font-size: 14px;
    font-family: inherit;
}

.hhs-form-grid textarea {
    resize: vertical;
}

.hhs-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
}

.hhs-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

@media (max-width: 768px) {
    .hhs-wedding-picker {
        padding: 24px 12px;
    }

    .hhs-wedding-picker--floating {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        padding: 0;
    }

    .hhs-floating-inquiry-button {
        width: 100%;
        white-space: normal;
    }

    .hhs-picker-shell {
        padding: 22px 16px;
    }

    .hhs-choice-grid,
    .hhs-card-grid {
        grid-template-columns: 1fr;
    }

    .hhs-nav-row {
        position: sticky;
        bottom: 0;
        background: linear-gradient(to top, #f5f1e9 70%, rgba(245, 241, 233, 0));
        padding-top: 10px;
        margin-top: 22px;
    }

    .hhs-choice-pill {
        min-width: 0;
        flex: 1 1 140px;
    }
}
