/* Checkbox Wrapper Styling */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.checkbox-wrapper:hover {
    border-color: var(--accent);
    background: rgba(166, 123, 91, 0.05);
}

.checkbox-wrapper input {
    display: none;
}

.checkbox-svg {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-box {
    fill: white;
    stroke: var(--primary-light);
    stroke-width: 40;
    transition: all 0.3s ease;
}

.checkbox-tick {
    stroke: white;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.3s ease;
}

.checkbox-wrapper input:checked+label .checkbox-box {
    fill: var(--accent);
    stroke: var(--accent);
}

.checkbox-wrapper input:checked+label .checkbox-tick {
    stroke-dashoffset: 0;
}

.terms-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin: 0;
}