/* ===================================
   Schools365 Cookie Consent Styles
   Matches MageBig Martfury theme design
   Primary: #fcb800, Secondary: #0066cc
   Font: Work Sans / Lato
   =================================== */

/* ----- Cookie Banner ----- */
.schools365-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.schools365-cookie-banner .cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.schools365-cookie-banner .cookie-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    background: #ffffff;
    border-top: 3px solid #fcb800;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.schools365-cookie-banner .cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 30px;
    text-align: center;
}

.schools365-cookie-banner .cookie-banner-title {
    font-family: 'Work Sans', 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px;
    line-height: 1.3;
}

.schools365-cookie-banner .cookie-banner-text {
    font-family: 'Work Sans', 'Lato', sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.schools365-cookie-banner .cookie-banner-text a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
}

.schools365-cookie-banner .cookie-banner-text a:hover {
    color: #004d99;
}

.schools365-cookie-banner .cookie-banner-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.schools365-cookie-banner .cookie-btn {
    font-family: 'Work Sans', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    line-height: 1;
}

.schools365-cookie-banner .cookie-btn-accept {
    background-color: #fcb800;
    color: #000000;
    border-color: #fcb800;
}

.schools365-cookie-banner .cookie-btn-accept:hover {
    background-color: #e5a600;
    border-color: #e5a600;
}

.schools365-cookie-banner .cookie-btn-necessary {
    background-color: #ffffff;
    color: #000000;
    border-color: #cccccc;
}

.schools365-cookie-banner .cookie-btn-necessary:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}

/* ----- Data Processing Consent Checkbox ----- */
.schools365-consent-field {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.schools365-consent-field .consent-title {
    font-family: 'Work Sans', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px;
}

.schools365-consent-field .consent-text {
    font-family: 'Work Sans', 'Lato', sans-serif;
    font-size: 13px;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 12px;
}

.schools365-consent-field .consent-text a {
    color: #0066cc;
    text-decoration: underline;
}

.schools365-consent-field .consent-text a:hover {
    color: #004d99;
}

.schools365-consent-field .consent-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.schools365-consent-field .consent-checkbox-wrapper input[type="checkbox"] {
    margin-top: 3px;
    min-width: 16px;
    min-height: 16px;
    accent-color: #fcb800;
    cursor: pointer;
}

.schools365-consent-field .consent-checkbox-wrapper label {
    font-family: 'Work Sans', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
}

.schools365-consent-field .mage-error {
    color: #e02b27;
    font-size: 12px;
    margin-top: 5px;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .schools365-cookie-banner .cookie-banner-content {
        padding: 20px 15px;
    }

    .schools365-cookie-banner .cookie-banner-title {
        font-size: 18px;
    }

    .schools365-cookie-banner .cookie-banner-text {
        font-size: 13px;
    }

    .schools365-cookie-banner .cookie-banner-actions {
        flex-direction: column;
    }

    .schools365-cookie-banner .cookie-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .schools365-consent-field {
        padding: 12px;
    }
}
