:root {
    --h-yellow: #FFD700;
    --h-black: #111111;
    --h-white: #FFFFFF;
    --h-gray: #F5F7FA;
    --h-gray-border: #E2E8F0;
}

/* Trigger Button */
.hammocks-trigger_42af8aca {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    background-color: var(--h-yellow);
    color: var(--h-black);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s;
}
.hammocks-trigger_42af8aca:hover {
    transform: translateY(-2px);
}

/* Overlay */
.hammocks-overlay_42af8aca {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body.admin-bar .hammocks-overlay_42af8aca {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100% - var(--wp-admin--admin-bar--height, 32px));
}

@media screen and (max-width: 782px) {
    body.admin-bar .hammocks-overlay_42af8aca {
        top: 46px;
        height: calc(100% - 46px);
    }
}

/* Modal */
.hammocks-modal_42af8aca {
    background: var(--h-white);
    width: 100%;
    max-width: 600px;
    height: 95vh;
    max-height: 850px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media screen and (max-width: 640px) {
    .hammocks-modal_42af8aca {
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
}

.hammocks-close_42af8aca {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--h-black);
    cursor: pointer;
    z-index: 2;
    padding: 8px;
}

/* Header */
.hammocks-header_42af8aca {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid var(--h-gray-border);
}

.hammocks-logo_42af8aca {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.hammocks-progress_42af8aca {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.hammocks-progress_42af8aca::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--h-gray-border);
    z-index: 1;
}

.hammocks-progress_42af8aca .step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.hammocks-progress_42af8aca .step::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--h-gray-border);
    border: 3px solid var(--h-white);
}

.hammocks-progress_42af8aca .step.active {
    color: var(--h-black);
}

.hammocks-progress_42af8aca .step.active::before {
    background: var(--h-yellow);
}

/* Body */
.hammocks-body_42af8aca {
    flex: 1;
    overflow-y: auto;
    padding: 32px 24px;
    background: var(--h-gray);
}

.hammocks-step_42af8aca h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--h-black);
    margin: 0 0 24px 0;
    text-align: center;
    line-height: 1.3;
}

/* Cards */
.hammocks-cards_42af8aca {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media screen and (min-width: 480px) {
    .hammocks-cards_42af8aca {
        grid-template-columns: 1fr 1fr;
    }
}

.hammocks-card_42af8aca {
    display: block;
    cursor: pointer;
    user-select: none;
}

.hammocks-card_42af8aca input {
    display: none;
}

.hammocks-card_42af8aca .card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--h-white);
    border: 2px solid var(--h-gray-border);
    border-radius: 12px;
    padding: 24px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--h-black);
    transition: all 0.2s;
    height: 100%;
}

.hammocks-card_42af8aca input:checked + .card-content {
    border-color: var(--h-black);
    background-color: #FAFAFA;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Footer */
.hammocks-footer_42af8aca {
    padding: 24px;
    background: var(--h-white);
    border-top: 1px solid var(--h-gray-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hammocks-btn-continue_42af8aca {
    background: var(--h-yellow);
    color: var(--h-black);
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.hammocks-btn-continue_42af8aca:hover {
    background: #e6c200;
}

.hammocks-help-link_42af8aca {
    display: block;
    text-align: center;
    color: var(--h-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.hammocks-help-link_42af8aca:hover {
    text-decoration: underline;
}