/**
 * Stili Frontend - WooCommerce Messaggi Natale
 * Version: 1.0.0
 */

/* Contenitore principale */
.wc-messaggi-natale-wrapper {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e3e8ed;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wc-messaggi-natale-wrapper:hover {
    border-color: #2271b1;
    box-shadow: 0 2px 8px rgba(34, 113, 177, 0.1);
}

/* Campo messaggio */
.wc-messaggi-natale-field {
    position: relative;
}

.wc-messaggi-natale-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.wc-messaggi-natale-field label .optional {
    font-weight: 400;
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

/* Textarea */
.wc-messaggio-auguri-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.wc-messaggio-auguri-input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.wc-messaggio-auguri-input::placeholder {
    color: #999;
    font-style: italic;
}

/* Contatore caratteri */
.wc-messaggio-counter {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    text-align: right;
}

.wc-messaggio-counter .current {
    font-weight: 600;
    color: #2271b1;
}

.wc-messaggio-counter .max {
    color: #666;
}

.wc-messaggio-counter.warning .current {
    color: #ff9800;
}

.wc-messaggio-counter.danger .current {
    color: #f44336;
}

/* Descrizione */
.wc-messaggio-description {
    margin: 10px 0 0;
    padding: 10px;
    background: #fff;
    border-left: 4px solid #2271b1;
    border-radius: 3px;
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

.wc-messaggio-description::before {
    content: "ℹ️ ";
    margin-right: 5px;
}

/* Messaggio nel carrello */
.wc-item-meta .wc-item-meta-label {
    font-weight: 600;
}

.wc-item-meta .wc-item-meta-value em {
    display: inline-block;
    padding: 5px 10px;
    background: #fffbf0;
    border-left: 3px solid #ffc107;
    border-radius: 3px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-messaggi-natale-wrapper {
        padding: 15px;
        margin: 15px 0;
    }
    
    .wc-messaggi-natale-field label {
        font-size: 15px;
    }
    
    .wc-messaggio-auguri-input {
        font-size: 16px; /* Previene lo zoom su iOS */
        padding: 10px;
    }
    
    .wc-messaggio-description {
        font-size: 12px;
    }
}

/* Animazioni */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.wc-messaggio-auguri-input.error {
    border-color: #f44336;
    animation: shake 0.5s;
}

/* Icona decorativa */
.wc-messaggi-natale-field label::before {
    content: "🎄 ";
    margin-right: 5px;
}

/* Stile per il checkout */
.woocommerce-checkout .wc-messaggi-natale-wrapper {
    background: #fff;
}

/* Print styles */
@media print {
    .wc-messaggio-counter {
        display: none;
    }
    
    .wc-messaggi-natale-wrapper {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}
