.ng-gommoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.ng-gommone-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ng-gommone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.ng-gommone-image {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.ng-gommone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.ng-gommone-card:hover .ng-gommone-image img {
    transform: scale(1.05);
}

.ng-gommone-content {
    padding: 20px;
}

.ng-gommone-title {
    margin: 0 0 15px 0;
    font-size: 20px;
}

.ng-gommone-title a {
    color: #2c3e50;
    text-decoration: none;
}

.ng-gommone-specs {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ng-spec {
    display: inline-block;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #555;
}

.ng-spec.patente-required {
    background: #fff3cd;
    color: #856404;
    font-weight: 600;
}

.ng-gommone-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.ng-gommone-price .from { font-size: 12px; opacity: 0.85; }
.ng-gommone-price .price { font-size: 28px; font-weight: bold; }
.ng-gommone-price .period { font-size: 12px; opacity: 0.85; }

.ng-gommone-footer {
    display: flex;
    justify-content: center;
}

.ng-button {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.ng-button-primary {
    background: #0073aa;
    color: #fff;
}

.ng-button-primary:hover {
    background: #005177;
    color: #fff;
}

.ng-button-large {
    padding: 14px 30px;
    font-size: 16px;
}

.ng-single-gommone {
    margin: 40px 0;
    padding: 0 4px;
    clear: both;
    display: block;
    width: 100%;
}

.ng-gommone-details {
    display: block;
    width: 100%;
    margin-bottom: 40px;
}

.ng-gommone-main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
    display: block;
}

.ng-gommone-main-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.ng-gommone-info-section,
.ng-gommone-pricing-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

.ng-gommone-info-section h2,
.ng-gommone-pricing-section h2 {
    font-size: 22px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
    line-height: 1.3;
    clear: both;
}

.ng-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ng-feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.ng-feature-list li:last-child {
    border-bottom: none;
}

.ng-feature-list .dashicons {
    color: #0073aa;
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.ng-feature-list li.patente-yes .dashicons { color: #28a745; }
.ng-feature-list li.patente-no .dashicons { color: #6c757d; }

.ng-pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ng-pricing-table th,
.ng-pricing-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ng-pricing-table th {
    background: #0073aa;
    color: #fff;
    font-weight: 600;
}

.ng-pricing-table tr.season-bassa { background: #e8f5e9; }
.ng-pricing-table tr.season-media { background: #fff8e1; }
.ng-pricing-table tr.season-alta { background: #ffebee; }

.ng-booking-section {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    clear: both;
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 20px 0 40px 0;
}

.ng-booking-section * {
    box-sizing: border-box;
}

.ng-booking-section h2 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0073aa;
}

.ng-availability-checker {
    margin-bottom: 25px;
}

.ng-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.ng-form-field {
    margin-bottom: 18px;
}

.ng-form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.ng-form-field input[type="text"],
.ng-form-field input[type="email"],
.ng-form-field input[type="tel"],
.ng-form-field input[type="date"],
.ng-form-field input[type="number"],
.ng-form-field select,
.ng-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.ng-form-field input:focus,
.ng-form-field select:focus,
.ng-form-field textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0,115,170,0.1);
}

.ng-form-field textarea {
    resize: vertical;
    min-height: 90px;
}

.ng-availability-result.success {
    background: #d4edda;
    color: #155724;
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.ng-availability-result.error {
    background: #f8d7da;
    color: #721c24;
    padding: 18px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.ng-price-summary strong {
    color: #0073aa;
}

.ng-payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.ng-payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.ng-payment-method:hover {
    border-color: #0073aa;
    background: #f0f8ff;
}

.ng-payment-method input[type="radio"]:checked + .payment-label {
    color: #0073aa;
    font-weight: 600;
}

.ng-payment-method:has(input[type="radio"]:checked) {
    border-color: #0073aa;
    background: #e6f3ff;
}

.payment-icon {
    font-size: 24px;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.ng-deposit-info {
    background: #e7f3ff;
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 4px solid #0073aa;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
}

.ng-booking-message {
    padding: 15px;
    border-radius: 6px;
}

.ng-booking-message.success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.ng-booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.ng-booking-success {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.ng-success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    animation: popIn 0.5s ease;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.ng-booking-success h2 {
    color: #28a745;
    font-size: 28px;
    margin-bottom: 15px;
}

.ng-booking-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
}

.ng-booking-summary p {
    margin: 10px 0;
    font-size: 15px;
}

.ng-mail-notice {
    color: #666;
    font-style: italic;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ng-no-gommoni {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
    background: #f8f9fa;
    border-radius: 12px;
}

.ng-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.ng-status-pending { background: #fff3cd; color: #856404; }
.ng-status-paid { background: #d1ecf1; color: #0c5460; }
.ng-status-confirmed { background: #d4edda; color: #155724; }

.ng-license-field {
    padding: 15px;
    background: #fff3cd;
    border-radius: 6px;
    border: 1px solid #ffeeba;
}
