/* Legal pages styles */

.legal-container {
    max-width: 600px;
    padding-bottom: 40px;
}

.legal-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.legal-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.legal-date {
    color: var(--secondary-text);
    font-size: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 25px 0 10px 0;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--secondary-text);
    margin: 8px 0;
}

.legal-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.legal-content li {
    font-size: 13px;
    line-height: 1.7;
    color: var(--secondary-text);
    margin: 5px 0;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Placeholder styling for items to be filled */
.placeholder {
    background: rgba(204, 255, 0, 0.2);
    color: var(--accent-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

/* Product info block */
.product-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
}

.product-info p {
    margin: 5px 0;
}

.product-info strong {
    color: #fff;
}

/* Checkbox styles for checkout */
.consent-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consent-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.consent-item input[type="checkbox"]:checked {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.consent-item input[type="checkbox"]:checked::after {
    content: '✓';
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    height: 100%;
}

.consent-item label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--secondary-text);
    cursor: pointer;
}

.consent-item label a {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 500;
}

.consent-item label a:hover {
    text-decoration: underline;
}