/**
 * Dorayaki Map Privacy Component
 * Handles the 2-click GDPR map placeholder styling.
 */

:root {
    /* Color Palette */
    --map-bg-color: #f7f7f7;
    --map-border-color: #eeeeee;
    --map-card-bg: #ffffff;
    --map-card-border: #e0e0e0;
    --map-text-color: #222222;
    --map-btn-bg: #3f3f3f;
    --map-btn-bg-hover: #575757;
    --map-btn-text: #ffffff;
    --map-focus-ring: #0056b3;

    /* Typography & Spacing */
    --map-font-stack: 'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;
    --map-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   1. Core Layout Container
   ========================================================================== */

.widget_dorayaki_contactbox .cb-map { 
    position: relative !important; 
    min-height: 500px; 
}

.map-2click-container { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: var(--map-bg-color); 
    border: 1px solid var(--map-border-color); 
    overflow: hidden; 
}

/* ==========================================================================
   2. Privacy Card (Center Box)
   ========================================================================== */

.map-placeholder { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 20px; 
    box-sizing: border-box; 
    background-color: #fcfcfc; 
}

.map-placeholder-content { 
    width: 100%; 
    max-width: 290px; 
    background: var(--map-card-bg); 
    padding: 25px 20px; 
    border: 1px solid var(--map-card-border); 
    box-shadow: var(--map-shadow); 
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

.map-privacy-text { 
    font-family: var(--map-font-stack);
    font-size: 13px; 
    line-height: 1.5; 
    color: var(--map-text-color) !important; 
    margin: 0 0 14px 0; 
}

/* ==========================================================================
   4. Interactive Elements (Buttons)
   ========================================================================== */

.map-load-btn { 
    font-family: var(--map-font-stack);
    background-color: var(--map-btn-bg); 
    color: var(--map-btn-text); 
    border: none; 
    padding: 8px 18px; 
    font-size: 11px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    cursor: pointer; 
    transition: background 0.15s ease-in-out; 
}

.map-load-btn:hover { 
    background-color: var(--map-btn-bg-hover); 
}

.map-load-btn:focus { 
    outline: 3px solid var(--map-focus-ring) !important; 
    outline-offset: 2px !important; 
}

/* ==========================================================================
   5. Iframe Embedding
   ========================================================================== */

.widget_dorayaki_contactbox .cb-map iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100% !important; 
    height: 100% !important; 
    display: block; 
}