
html,body {
      font-family: 'Poppins' !important;
  }
input, button, select, textarea,
  .form-control, .btn, .dropdown-item,
  .navbar, .card, .dropdown-menu,
  .page-header, p, h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins' !important;
  }
  ::placeholder {
      color: #c5c7ca !important;
      font-family: 'Poppins' !important;
  }
    
    /* --- Base Color & Element Styling --- */
    .primary-teal-dark {
        background-color: #153B90;
        color: #ffffff;
        transition: background-color 0.3s ease;
    }
    .primary-teal-dark:hover {
        background-color: #143b91;
    }
    .text-link-blue {
        color: #143b91;
    }
    .text-gray-heading {
        color: #1A202C;
    }
    .border-input {
        border-color: #E2E8F0;
    }
    .focus-ring-teal:focus {
        outline: none;
        box-shadow: 0 0 0 3px #143b91;
    }
    .table-header {
        background-color: #f7fafc;
        text-align: left;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
        font-weight: 500;
        color: #4A5568;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* --- Container Layout --- */
    .responsive-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
        max-width: 1200px;
        margin: 2rem auto;
        padding: 2rem;
    }

    /* --- Responsive: Medium screens --- */
    @media (max-width: 1024px) {
        .responsive-container {
            flex-direction: column;
            padding: 1rem;
        }
        .order-summary, .billing-section {
            width: 100%;
            margin: 0 auto;
        }
    }

    /* --- Responsive: Small screens --- */
    @media (max-width: 768px) {
        form {
            grid-template-columns: 1fr !important;
        }
        .order-summary {
            margin-top: 2rem;
        }
        input, select, button {
            font-size: 0.95rem !important;
            padding: 0.65rem !important;
        }
        .text-2xl {
            font-size: 1.25rem !important;
        }
    }

    /* --- Responsive: Extra small (mobile) --- */
    @media (max-width: 480px) {
        .billing-section, .order-summary {
            padding: 1.5rem 1rem !important;
            margin: 0 !important;
        }
        .p-6 {
            padding: 1rem !important;
        }
        table th, table td {
            font-size: 0.8rem;
            padding: 0.5rem;
        }
        button, input, select {
            width: 100%;
        }
    }

    /* --- Modal Styling --- */
    .cb-modal-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.65);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
    }
    .cb-modal {
        width: 100%;
        max-width: 520px;
        background: #ffffff;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }
    .cb-modal h2 {
        margin: 0 0 12px 0;
        font-size: 2rem;
        font-weight: 600;
    }
    .cb-modal .cb-input {
        width: 100%;
        padding: 12px;
        border: 1px solid #E2E8F0;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .cb-modal .cb-error {
        color: #c53030;
        font-size: 0.9rem;
        margin-bottom: 8px;
        display: none;
    }
    .cb-btn {
        display: inline-block;
        padding: 10px 18px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        border: 0;
    }
    .cb-btn-primary {
        background: #153B90;
        color: #fff;
    }
    .cb-btn-disabled {
        opacity: 0.6;
        pointer-events: none;
    }
    body.cb-modal-open {
        overflow: hidden;
    }

    .cb-input-icon {
        position: relative;
        display: flex;
        align-items: center;
    }
    .cb-input-icon .cb-icon {
        position: absolute;
        display: flex;
        align-items: center;
        color: #5B6B82;
        top: 50%;
        transform: translateY(-50%);
    }
    .cb-input-icon .left-icon {
        left: 12px;
        top: 25px;
    }
    .cb-input-icon .right-icon {
        right: 12px;
        top: 25px;
        cursor: pointer;
    }
    .cb-input-icon input {
        padding-left: 42px !important;
        padding-right: 40px !important;
    }

    #placeOrderBtn:disabled {
        background-color: #a0a0a0 !important;
        color: #ffffff !important;
        cursor: not-allowed;
        opacity: 0.7;
    }

    body {
        background-color: #fff;
    }

    .coupon-strip { 
        background: #f0fdf4; 
        color: #016630; 
        font-size: 14px; 
        padding: 12px 0; 
        border: 1px solid #B9F8CF;
    }

    .coupon-left { display: flex; gap: 8px; white-space: nowrap; }
    .coupon-label { font-size: 14px; opacity: 0.95; }
    .coupon-code { 
        padding: 3px 8px; 
        color: #030213; 
        display: flex; 
        align-items: center; 
        font-size:1.25rem !important;
    }
    .coupon-copy-btn { 
        background: transparent; 
        border: none; 
        cursor: pointer; 
        display: inline-flex; 
        align-items: center; 
    }
    .coupon-copy-btn i { font-size: 1.35rem !important; }

@media (max-width: 576px) {
    .coupon-left {
        white-space: nowrap;
        display: flex;
        justify-content: center;  /* ✅ Center items horizontally */
        align-items: center;
        text-align: center;       /* ✅ Center text inside */
        width: 100%;
    }

    .coupon-label {
        font-size: 12px;
    }
    .coupon-copy-btn i {
        font-size: 12px;
    }
}

footer {
    background-color: #08193f;
    padding-top: 3rem;
}
footer ul li a
 {
    color: #9ea0a3;
    font-size: 15px;
    text-transform: capitalize;
    transition: color .5s 
    ease-in-out;
}
footer ul li span
 {
    color: #9ea0a3;
}
footer ul li a:hover
 {
    color: #21d8ca;
}
footer .footer-bottom ul li a:hover {
    color: #21d8ca !important;
}
footer .footer-bottom  a {
    color: #9ea0a3 !important;
}
footer .footer-bottom  a, p {
    font-size: 12px !important;
}
footer a {
    text-decoration: none;
}
footer .footer-top p a
{
    color: #fff;
}
footer .footer-top {
    border-bottom: 1px solid rgba(208, 216, 233, .1);
}
footer h6
 {
    color: #1aada2;
    font-size: 1.34rem;
    font-weight: 400;
    margin-bottom: .89rem;
}

.accordion-header, .accordion-body {
       background-color: #08193f;
}

footer .footer-bottom {
    border-top: 1px solid rgba(208, 216, 233, .1);
    padding: 1.88rem 0;
}
footer .footer-bottom p {
    font-size: .75rem;
    color: #9ea0a3 !important;
}
footer .text-start a {
    color: #9ea0a3 !important;
}
footer .footer-bottom ul li a {
    font-size: .75rem;
    color: #9ea0a3 !important;
}
footer .footer-top ul li a
 {
    font-size: 1.25rem;
    color: #21d8ca;
}
footer iframe {
    height: 60px !important;
    max-height: 60px !important;
    min-height: 0 !important;
}
footer .footer-top .img-wrap-trans
 {
    max-width: 13.5rem;
}
.img-wrap-trans .img-wrapper
{
    background-color: transparent;
}
footer a,
footer a:hover,
footer a:focus,
footer a:active {
    text-decoration: none !important;
}
footer .accordion .accordion-header .accordion-button
 {
    font-size: inherit !important;
    color: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

footer .accordion-button::after {
    content: "" !important;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    background-repeat: no-repeat !important;
    background-size: 1.25rem !important;
    background-image: url("") !important;
    transform: rotate(0deg) !important;
}

footer .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg) !important;
}
.accordion-flush .accordion-item {
    border-bottom: none !important;
}
@media (max-width: 767px) {
    .footer-bottom .list-inline-item {
        margin: 8px 0;
    }
}
@media (max-width: 767px) {
    .footer-bottom .list-inline-item:not(:last-child) {
        margin-right: 20px; /* adjust gap */
    }
}
.userinitials.size-60 { 
    width: 60px; 
    height: 60px; 
}
.userinitials.size-42 { 
    width: 42px; 
    height: 42px; 
}

.bg-gray-tail {
    background-color: #F9FAFB !important;
}
select:invalid {
    color: #9ca3af !important; /* placeholder gray */
}

/* Actual selected options */
select option {
    color: #111827; /* normal text color (gray-900) */
}
.order-summary table th,
.order-summary table td {
    border: none !important;
}

.order-summary table tbody tr:hover {
    background: #f9fafb;
}

/* Mobile view only */
@media (max-width: 640px) {
    .coupon-text {
        display: inline;
    }
    .coupon-text::after {
        content: "";
        display: inline-block;
        width: 0;
    }
    /* Force line break after 14 characters */
    .coupon-text {
        white-space: pre-wrap;
    }
}

/* Alternative approach using <br> dynamically for mobile */
@media (max-width: 640px) {
    .coupon-text {
        display: block;
    }
    .coupon-text::after {
        content: "\A"; /* line break */
        white-space: pre;
    }
}
.custom-modal {
    border-radius: 20px;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.modal-close-x {
    position: absolute;
    right: 15px;
    top: 15px;
}

.modal-icon-wrapper {
    margin-top: -10px;
    margin-bottom: 10px;
}

.modal-icon {
    width: 55px;
    height: 55px;
}

.modal-title-custom {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.modal-desc {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.modal-ok-btn {
    background: #003C96;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}
.figma-modal {
    border-radius: 16px;
    padding: 35px 40px 30px;
    text-align: center;
    position: relative;
}

.figma-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none !important;
    opacity: 0.5;
}

.figma-close:hover {
    opacity: 0.9;
}

.figma-title {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 6px;
}

.figma-desc {
    color: #666;
    font-size: 16px !important;
    margin-bottom: 25px;
}

.figma-ok-btn {
    background: #003C96;
    color: white;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
}
.figma-ok-btn:hover {
    background: #043681;
    color: white;
}
footer .accordion-button::after {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1rem;
    transition: transform 0.2s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231AADA2'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
}


footer .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
footer .accordion.accordion-flush .accordion-button {
    border-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.35rem !important ;
    padding-bottom: 0.35rem !important;
}

.collapse {
    visibility: visible !important;
}

footer h6 {
  text-transform: none !important;
}
.social-icon {
    width: 18px;
    height: 18px;
    position: relative;
    top: 0px;
}

/* ===== Toastr Dark Theme (WITH ICONS) ===== */
#toast-container > div {
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    opacity: 1 !important;
}

/* SUCCESS */
#toast-container .toast-success {
    background-color: #6bb5bd !important; /* teal */
}

/* INFO */
#toast-container .toast-info {
    background-color: #2563EB !important; /* blue */
}

/* WARNING */
#toast-container .toast-warning {
    background-color: #D97706 !important; /* orange */
}

/* ERROR */
#toast-container .toast-error {
    background-color: #DC2626 !important; /* red */
}

/* Text */
#toast-container .toast-message {
    color: #ffffff !important;
    font-weight: 500;
}

/* Close button */
#toast-container .toast-close-button {
    color: #ffffff !important;
    opacity: 0.8;
}
#toast-container .toast-close-button:hover {
    opacity: 1;
}

/* Progress bar */
#toast-container .toast-progress {
    background-color: rgba(255,255,255,0.6) !important;
}

/* Text */
#toast-container .toast-message {
    color: #ffffff !important;
    font-weight: 500;
}

/* Restore icons */
#toast-container .toast-success {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM6.97 11.03a.75.75 0 0 0 1.08 0l3.992-3.992a.75.75 0 1 0-1.06-1.06L7.5 9.439 5.53 7.47a.75.75 0 1 0-1.06 1.06l2.5 2.5z'/%3E%3C/svg%3E");
}

#toast-container .toast-info {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zM8 7a.75.75 0 1 0 0-1.5A.75.75 0 0 0 8 7zm1 5V8H7v4h2z'/%3E%3C/svg%3E");
}

/* Close button */
#toast-container .toast-close-button {
    color: #ffffff !important;
    opacity: 0.8;
}
#toast-container .toast-close-button:hover {
    opacity: 1;
}

/* Progress bar */
#toast-container .toast-progress {
    background-color: rgba(255,255,255,0.6) !important;
}

.cb-label {
    font-size: 14px !important;
    color: #8C96A3 !important;
    font-weight: 500 !important;
    margin-bottom: 6px;
}

.cb-input
 {
    padding-left: 65px !important;
    height: 50px !important;
    border-radius: 12px !important;
    border: 1.5px solid #E3E6EA !important;
    background-color: #F5F7FA !important;
    font-size: 16px !important ;
}