.submit-btn {
    background: #64c1af;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    width: 100%;
    margin-top: 1rem;
}
.submit-btn:hover {
    background: #64c1af;
    transform: translateY(-1px);
    border: none;
}
.contact-location-muted{
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
/* .paragraph--type--cart-location{
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
    padding: 16px;
    font-size: 14px;
} */
.paragraph--type--cart-location{
    margin-bottom: 20px;
}
.webform-type-tel,
.js-form-item{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.form-item--error-message {
    display: block !important;
    color: #dc2626 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
}




/* pop up message  */
/* ============================================
   SUBMISSION SUCCESS MODAL STYLES
   ============================================ */

/* Modal Overlay */
.ui-widget-overlay {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(8px);
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Modal Container */
.webform-confirmation-modal.ui-dialog {
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 500px !important;
    width: 90% !important;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Title Bar */
.webform-confirmation-modal .ui-dialog-titlebar {
    background: linear-gradient(135deg, #64c1af 0%, #4fa89a 100%) !important;
    border: none !important;
    padding: 32px 24px 24px !important;
    position: relative;
    overflow: hidden;
}

/* Decorative elements for title bar */
.webform-confirmation-modal .ui-dialog-titlebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.webform-confirmation-modal .ui-dialog-titlebar::after {
    content: '✓';
    position: absolute;
    top: 27px;
    left: 39px;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    animation: checkPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s backwards;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes checkPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Title Text */
.webform-confirmation-modal .ui-dialog-title {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding-left: 48px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

/* Close Button */
.webform-confirmation-modal .ui-dialog-titlebar-close {
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    top: 20px !important;
    right: 20px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
}

.webform-confirmation-modal .ui-dialog-titlebar-close::before {
    content: '×';
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    display: block;
    text-align: center;
}

.webform-confirmation-modal .ui-dialog-titlebar-close:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: rotate(90deg);
}

.webform-confirmation-modal .ui-dialog-titlebar-close .ui-button-icon {
    display: none;
}
.webform-confirmation-modal .ui-dialog-titlebar-close:focus-visible{
    display: none;
}

/* Content Area */
.webform-confirmation-modal--content {
    padding: 32px 24px 40px !important;
    background: #ffffff;
    color: #475569 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    text-align: center;
    position: relative;
    font-weight: 700;
    font-size: 2.5rem !important;
}

.webform-confirmation-modal--content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #64c1af, transparent);
    border-radius: 2px;

}

/* Responsive Design */
@media (max-width: 640px) {
    .webform-confirmation-modal.ui-dialog {
        width: 95% !important;
        /* margin: 20px !important; */
    }
    
    .webform-confirmation-modal .ui-dialog-title {
        font-size: 20px !important;
        padding-left: 40px !important;
    }
    
    .webform-confirmation-modal .ui-dialog-titlebar {
        padding: 24px 20px 20px !important;
    }
    
    .webform-confirmation-modal--content {
        padding: 24px 20px 32px !important;
        font-size: 15px !important;
    }
}

/* Smooth exit animation */
.webform-confirmation-modal.ui-dialog.closing {
    animation: modalSlideDown 0.3s ease forwards;
}

@keyframes modalSlideDown {
    to {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
}
@media (max-width: 767px) {
.webform-confirmation-modal.ui-dialog{
    width: 93% !important;
    margin: auto;
    left: 0 !important;
    right: 0;
}
.webform-confirmation-modal .ui-dialog-titlebar::after {
  content: '✓';
  position: absolute;
  top: 21px;
  left: 39px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: bold;
  animation: checkPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.2s backwards;

}
}