/* Ajánlatkérés oldal (ajanlatotkerek.html) egyedi stílusai */

/* Base styles and resets */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Form container styles */
.service-type-selector {
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Info text styles */
#customerTypeInfo {
    text-align: center;
    color: #1761a0;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    margin-bottom: 1.5rem;
    opacity: 0.85;
    line-height: 1.5;
}

#zip-service-info {
    color: #1761a0;
    font-size: clamp(0.85rem, 1.5vw, 0.98rem);
    margin: 4px 0 2px 0;
    opacity: 0.85;
}


#zip-error {
    color: #d32f2f;
    font-size: clamp(0.85rem, 1.5vw, 0.98rem);
    display: none;
}
#service-cycle-info {
    color: #1761a0;
    font-size: clamp(0.85rem, 1.5vw, 0.98rem);
    margin: 4px 0 2px 0;
    opacity: 0.85;
}
#datetime-service-info {
    color: #1761a0;
    font-size: clamp(0.85rem, 1.5vw, 0.98rem);
    margin: 4px 0 2px 0;
    opacity: 0.85;
}


/* Input wrapper styles */
.city-input-wrap {
    margin-right: 20px;
    display: flex;
    row-gap: 10px;
    flex-direction: column;
    width: 100%;
}

/* Common input styles */
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="datetime-local"],
input[type="time"],
select,
textarea {
    background: #f5faff;
    color: #1761a0;
    border: 1.5px solid #1e90ff;
    border-radius: 6px;
    width: calc(100% - 40px);
    padding: 0.9em 1em;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
    margin: 0 20px;
    display: block;
}

/* Date input specific styles */
input[type="date"] {
    min-height: 48px;
    height: 48px;
    line-height: 1.2;
    font-size: 16px;
    padding: 0.9em 1em;
    color: #1761a0;
}

input[type="date"]:not(:focus):not([value])::-webkit-input-placeholder {
    color: #b0b0b0;
    opacity: 1;
}

input[type="date"]:not(:focus):not([value])::-moz-placeholder {
    color: #b0b0b0;
    opacity: 1;
}

input[type="date"]:not(:focus):not([value]):-ms-input-placeholder {
    color: #b0b0b0;
    opacity: 1;
}

input[type="date"]:not(:focus):not([value])::placeholder {
    color: #b0b0b0;
    opacity: 1;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231761a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e") no-repeat center;
    background-size: 1.2em;
    padding: 0.3em;
    cursor: pointer;
    filter: invert(0.3) sepia(1) saturate(1) hue-rotate(190deg);
}

input[type="date"]::-webkit-datetime-edit {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-text {
    padding: 0 0.2em;
    color: #1761a0;
}

input[type="date"]::-webkit-datetime-edit-year-field,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field {
    padding: 0 0.2em;
    color: #1761a0;
}

/* Focus states for all inputs */
input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
    border-color: #1761a0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
    background: #ffffff;
}

/* Select specific styles */
select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231761a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5em;
}

/* Time select specific styles */
#time {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: 0 20px;
}

#time-select-wrap {
    text-align: left;
    width: 100%;
}

#time option.booked {
    background: #f8d7da;
    color: #a94442;
    font-weight: bold;
}

#time optgroup[label="Foglalt időpontok"] option {
    background: #e0e0e0;
    color: #888;
    font-style: italic;
}

#time optgroup[label="Szabad időpontok"] option {
    background: #f5faff;
    color: #1761a0;
    font-weight: bold;
}

#time optgroup {
    color: #1761a0;
    font-size: 1em;
    font-weight: bold;
}

/* Form sections */
.services-hero,
.commercial-contact-form-section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

/* Responsive styles */
@media (max-width: 600px) {
    .commercial-contact-form-section {
        max-width: 100%;
        margin: 0 auto;
        background: #7fd7e7;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
        padding: clamp(1.5rem, 4vw, 2.5rem);
        text-align: center;
    }

    input[type="text"],
    input[type="number"],
    input[type="tel"],
    input[type="email"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px;
        margin: 0 15px;
        width: calc(100% - 30px);
    }

    #time {
        margin: 0 15px;
        width: calc(100% - 30px);
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .commercial-contact-form-section {
        max-width: 600px;
        margin: 0 auto;
        background: #7fd7e7;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
        padding: clamp(2rem, 4vw, 2.5rem);
        text-align: center;
    }
}

@media (min-width: 901px) {
    .commercial-contact-form-section {
        max-width: 800px;
        margin: 0 auto;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(30, 144, 255, 0.07);
        padding: 2.5rem;
        margin-bottom: 4rem;
    }
}

/* Validation styles */
input.invalid,
select.invalid,
textarea.invalid {
    border: 2px solid #d32f2f !important;
    background: #fff0f0;
}
#idopont_urlap2 .btn img {
    width: 20px;
    height: 20px;
}

#idopont_urlap2 .btn .hidden {
    display: none;
}

/* Loading Icon Animation */
#loadingIcon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Success message */
#submit-message {
    background: #e6ffe6;
    color: #1761a0;
    border: 2px solid #1e90ff;
    border-radius: 8px;
    padding: 1em;
    margin-top: 1em;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    text-align: center;
    width: 100%;
    max-width: 100%;
}

/* Touch device optimizations */
@media (hover: none) {

    input[type="text"]:focus,
    input[type="number"]:focus,
    input[type="tel"]:focus,
    input[type="email"]:focus,
    input[type="date"]:focus,
    input[type="datetime-local"]:focus,
    input[type="time"]:focus,
    select:focus,
    textarea:focus {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* Print styles */
@media print {
    .commercial-contact-form-section {
        background: none;
        box-shadow: none;
        padding: 0;
    }
}

/* Data handling row styles */
.adatkezeles-sor,
.adatkezeles-sor-2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 20px;
    padding: 12px 15px;
    background: rgba(127, 215, 231, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.adatkezeles-sor:hover,
.adatkezeles-sor-2:hover {
    background: rgba(127, 215, 231, 0.15);
}

.adatkezeles-sor input[type="checkbox"],
.adatkezeles-sor-2 input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f5faff;
    border: 1.5px solid #1e90ff;
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.adatkezeles-sor input[type="checkbox"]:checked,
.adatkezeles-sor-2 input[type="checkbox"]:checked {
    background: #1761a0;
    border-color: #1761a0;
}

.adatkezeles-sor input[type="checkbox"]:checked::after,
.adatkezeles-sor-2 input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 6px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.adatkezeles-sor input[type="checkbox"]:focus,
.adatkezeles-sor-2 input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.adatkezeles-sor label,
.adatkezeles-sor-2 label {
    color: #1761a0;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
    flex: 1;
    display: flex;
    align-items: center;
}

.adatkezeles-sor a,
.adatkezeles-sor-2 a {
    color: #1761a0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
    margin-left: 4px;
}

.adatkezeles-sor a:hover,
.adatkezeles-sor-2 a:hover {
    color: #1e90ff;
    border-bottom-color: #1e90ff;
}

/* Responsive adjustments for data handling rows */
@media (max-width: 600px) {

    .adatkezeles-sor,
    .adatkezeles-sor-2 {
        margin: 12px 15px;
        padding: 10px 12px;
        gap: 12px;
    }

    .adatkezeles-sor input[type="checkbox"],
    .adatkezeles-sor-2 input[type="checkbox"] {
        width: 22px;
        height: 22px;
    }

    .adatkezeles-sor input[type="checkbox"]:checked::after,
    .adatkezeles-sor-2 input[type="checkbox"]:checked::after {
        left: 11px;
        top: 3px;
        width: 5px;
        height: 15px;
    }
}
/* Footer Styles */
.footer-edited-by {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-align: center;
    font-weight: 500;
}

.footer-edited-by a,
.footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.18s;
}

.footer-edited-by a:hover,
.footer a:hover {
    color: #ffb347;
}

.footer-social-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-social-icon {
    color: #fff;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.18s, transform 0.18s, filter 0.18s;
    text-decoration: none;
    border-radius: 50%;
    padding: 0.2em;
}

.footer-social-icon:hover {
    color: #ffb347;
    filter: drop-shadow(0 2px 8px #ffb347);
    transform: scale(1.13) rotate(-6deg);
}

.footer-socials img {
    display: none !important;
}

#facebook-link {
    text-decoration: none !important;
}

#facebook-link:hover {
    color: #3246b3;
    filter: drop-shadow(0 2px 8px #003cff);
}

#linkedin-link {
    text-decoration: none !important;
}

#linkedin-link:hover {
    color: #0077b5;
    filter: drop-shadow(0 2px 8px #0077b5);
}

#instagram-link {
    text-decoration: none !important;
}

#instagram-link:hover {
    color: #c32aa3;
    filter: drop-shadow(0 2px 8px #c32aa3);
}

#youtube-link {
    text-decoration: none !important;
}

#youtube-link:hover {
    color: #ff0000;
    filter: drop-shadow(0 2px 8px #ff0000);
}

/* Időpontfoglalás oldal stílusok */

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.zip-check-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.zip-check-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.zip-input-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.zip-input-container input {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.1rem;
    width: 200px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.zip-input-container input:focus {
    outline: none;
    border-color: #1e90ff;
}

.check-zip-btn {
    background: #1e90ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.check-zip-btn:hover {
    background: #0066cc;
}

.zip-check-result {
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zip-check-result .error {
    color: #d32f2f;
    background: #ffebee;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.zip-check-result .success {
    color: #2e7d32;
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
    max-width: 1200px;
    text-align: center;
}

.services-pricing-section {
    /* padding: 3rem 0; */
    background: #fff;
}

.services-pricing-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.services-pricing-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.services-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    /* background: linear-gradient(135deg, #1e90ff, #0066cc); */
    color: white;
    /* padding: 1.5rem; */
    text-align: center;
}

.service-card-header .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.service-card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    height: 50px;
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-body p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    height: 80px;
}

.service-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e90ff;
}

.price-currency {
    font-size: 1.2rem;
    color: #666;
    margin-left: 0.5rem;
}

.service-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.booking-btn {
    display: block;
    width: 100%;
    background: #28a745;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.booking-btn:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}

.booking-btn i {
    margin-right: 0.5rem;
}

.commercial-services-section {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-top: 3rem;
}

.commercial-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.commercial-info h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.commercial-info p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.commercial-info a {
    color: #0081ff;
    text-decoration: none;
}

.commercial-info a:hover {
    text-decoration: underline;
}

.commercial-cta {
    background: #d8d8d8;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.commercial-cta:hover {
    background: #5a6268;
    color: white;
    text-decoration: none;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .zip-input-container {
        flex-direction: column;
    }
    
    .zip-input-container input {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-header h3 {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-pricing-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .zip-check-section {
        padding: 1.5rem;
    }
    
    .service-card {
        margin: 0 1rem;
    }
    
    .commercial-info {
        padding: 0 1.5rem;
    }
}

/* Céges szolgáltatások szekció */
.commercial-services-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.commercial-services-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.commercial-services-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.commercial-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.commercial-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.commercial-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .commercial-services-content h2 {
        font-size: 2rem;
    }
    
    .commercial-services-content p {
        font-size: 1.1rem;
    }
    
    .commercial-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.hero-subtitle-zip {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.commercial-services-section-cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .commercial-services-section-cta-container {
        flex-direction: column;
    }
}

/* Kutyaszám választó stílusok */
.dog-count-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.dog-count-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.hero-subtitle-dog {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.dog-count-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.dog-count-btn {
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.dog-count-btn:hover {
    border-color: #1e90ff;
    background: #f0f8ff;
    transform: translateY(-2px);
}

.dog-count-btn.selected {
    background: #1e90ff;
    border-color: #1e90ff;
    color: white;
}

.dog-count-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.dog-count-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .dog-count-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dog-count-btn {
        min-width: 200px;
        flex-direction: row;
        justify-content: center;
    }
}

/* Új ár megjelenítés stílusok - alkalmi ár középpontban */
.service-price-main {
    text-align: center;
    margin-bottom: 1rem;
}

.main-price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e90ff;
    display: block;
    line-height: 1;
}

.main-price-currency {
    font-size: 1.2rem;
    color: #666;
    margin-left: 0.25rem;
}

.main-price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-occasions {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.occasions-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.service-total {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid #1e90ff;
}

.total-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.total-currency {
    font-size: 1rem;
    color: #666;
    margin-left: 0.25rem;
}

.service-note {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
}

.note-text {
    font-size: 0.85rem;
    color: #856404;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Firefox specifikus javítás - azonnal megjeleníti az ár változásokat */
.service-price-main, .service-occasions, .service-total, .service-note {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Szolgáltatás kártyák további javítása Firefox-hoz */
.service-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Firefox számára specifikus renderelés javítás */
@-moz-document url-prefix() {
    .service-price-main, .service-occasions, .service-total, .service-note, .service-card {
        -moz-appearance: none;
        display: block !important;
        opacity: 1 !important;
    }
}