textarea {
    font-size: 1.25rem;
    padding: 6px 12px;
    border-radius: 8px !important;
    border: 2px solid #ffa500 !important;
    background: #fffdfa;
    color: #333;
    margin-top: 6px;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

textarea:focus {
    border-color: #e67e22;
    box-shadow: 0 0 0 2px #ffe5c2;
    outline: none;
}

input[type="email"] {
    font-size: 1.25rem;
    padding: 6px 12px;
    border-radius: 8px;
    border: 2px solid #ffa500;
    background: #fffdfa;
    color: #333;
    margin-top: 6px;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="email"]:focus {
    border-color: #e67e22;
    box-shadow: 0 0 0 2px #ffe5c2;
    outline: none;
}

input[type="tel"] {
    font-size: 1.25rem;
    padding: 6px 12px;
    border-radius: 8px;
    border: 2px solid #ffa500;
    background: #fffdfa;
    color: #333;
    margin-top: 6px;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="tel"]:focus {
    border-color: #e67e22;
    box-shadow: 0 0 0 2px #ffe5c2;
    outline: none;
}

input[type="text"] {
    font-size: 1.25rem;
    padding: 6px 12px;
    border-radius: 8px;
    border: 2px solid #ffa500;
    background: #fffdfa;
    color: #333;
    margin-top: 6px;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus {
    border-color: #e67e22;
    box-shadow: 0 0 0 2px #ffe5c2;
    outline: none;
}

input[type="text"].text-only {
    font-size: 1.25rem;
    padding: 6px 12px;
    border-radius: 8px;
    border: none;
    background: #fffdfa;
    color: #333;
    margin-top: 6px;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
}

input[type="text"].text-only:focus {
    outline: none;
}

input[type="date"] {
    font-size: 1.25rem;
    padding: 6px 12px;
    border-radius: 8px;
    border: 2.5px solid #ffa500;
    background: #fffdfa;
    color: #333;
    margin-top: 6px;
    margin-bottom: 12px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

@media (max-width: 600px) {
    input[type="date"] {
        font-size: 1.1rem;
        padding: 6px 12px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}

input[type="date"]:focus {
    border-color: #e67e22;
    box-shadow: 0 0 0 2px #ffe5c2;
    outline: none;
}

/* For better appearance on Webkit browsers */
input[type="date"]::-webkit-input-placeholder {
    color: #aaa;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5) sepia(1) saturate(5) hue-rotate(-20deg);
    cursor: pointer;
    height: 2em;
    width: 2em;
}

select {
    font-size: 1.25rem;
    padding: 6px 12px;
    border-radius: 8px;
    border: 2.5px solid #ffa500 !important;
    background: #fffdfa;
    color: #333;
    margin-top: 6px;
    margin-bottom: 12px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

option {
    font-size: 1.1rem;
    padding: 8px;
}

.sticky-cart-summary {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    /* width: 100vw; */
    background: #fff !important;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    padding: 18px 18px 12px 18px;
    /* max-width: 100vw; */
    border-radius: 0;
    margin: 0;
    border-top: 2.5px solid rgb(255, 165, 0);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #EEEEFF !important;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

/* Loading Spinner */
.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 165, 0, 0.3);
    border-top: 4px solid rgb(255, 165, 0);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Loading Text */
.loading-text {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Dots Animation */
.dots {
    display: inline-block;
}

.dots::after {
    content: '';
    animation: dots 2s linear infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* #orderForm.show {
    display: block !important;
} */