:root {
    --navbar-height: 60px;
    --mobile-nav-height: 50px;
    --mobile-cart-toggle-height: 60px;
    --primary-color: #D90429;
    --primary-color-darker: #A90320;
    --light-gray: #f8f9fa;
    --page-bg: #fdfdfd;
    --border-color: #e0e0e0;
    --text-dark: #212529;
    --text-light: #495057;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.1);
    --border-radius: 0.5rem;
    --font-heading: 'Arvo', serif;
    --font-body: 'Montserrat', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--page-bg);
    color: var(--text-dark);
    animation: pageFadeIn 0.4s ease-out;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1a1a1a;
}
hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    opacity: 1;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-darker);
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes itemFadeIn {
    from { opacity: 0; transform: translateY(15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(217, 4, 41, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0); }
}
.badge.bg-danger {
    background-color: var(--primary-color) !important;
    animation: pulse 2s infinite;
    padding: 0.3em 0.6em;
    font-size: 0.7rem;
    border-radius: 1rem;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 5px;
    line-height: 1;
}

.btn-primary, .btn-success {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(217, 4, 41, 0.2);
}
.btn-primary:hover, .btn-success:hover {
    background-color: var(--primary-color-darker) !important;
    border-color: var(--primary-color-darker) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(217, 4, 41, 0.4);
}
.btn-primary:active, .btn-success:active {
    transform: translateY(0) scale(0.98) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* === NEW WEEKLY SPECIAL CARD DESIGN === */
.weekly-special-card {
    display: flex;
    background-color: #fff;
    border: 2px solid var(--primary-color); /* Highlight border */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.15); /* Red glow shadow */
    transition: transform 0.3s ease;
}
.weekly-special-card:hover {
    transform: translateY(-3px);
}
.special-img-wrapper {
    width: 140px;
    flex-shrink: 0;
    position: relative;
    background-color: #f0f0f0;
}
.special-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.special-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.special-title {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
}
.special-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.special-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 1rem;
}
.special-code-box {
    background-color: var(--light-gray);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px dashed #ccc;
    white-space: nowrap;
}
.special-value-badge {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(217, 4, 41, 0.3);
    white-space: nowrap;
}
.special-days .badge {
    font-weight: 500;
    margin-right: 2px;
}
.special-days .border-primary {
    background-color: #eef !important;
}
.special-foods {
    background-color: #f9f9f9;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}
.special-foods ul {
    list-style-type: disc;
    margin-top: 4px;
}
.special-nav-link.active,
.special-nav-link:hover {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    border-left-color: var(--primary-color) !important;
}
.special-nav-link {
    color: var(--primary-color) !important;
}
@media (max-width: 576px) {
    .weekly-special-card {
        flex-direction: column;
    }
    .special-img-wrapper {
        width: 100%;
        height: 150px;
    }
    .special-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .special-nav-link.active,
    .special-nav-link:hover {
        border-bottom-color: var(--page-bg) !important;
        background-color: var(--page-bg) !important;
    }
}

.form-control {
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(217, 4, 41, 0.25);
}

.order-header {
    height: var(--navbar-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1020;
    border-bottom: 1px solid var(--border-color);
}
.btn-back {
    font-weight: 500;
    color: var(--primary-color);
}

.order-food-section { padding-bottom: var(--mobile-cart-toggle-height); }
@media (min-width: 992px) {
    .order-food-section { padding-bottom: 0; }
}
.page-title-section {
    background-color: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}
.section-title h2 { font-weight: 700; color: #222; }

.category-nav-desktop {
    position: sticky;
    top: calc(var(--navbar-height) + 2rem);
    padding: 1rem;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: calc(100vh - var(--navbar-height) - 4rem);
    overflow-y: auto;
}
.category-nav-desktop h5 { font-weight: 600; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border-color); }
.category-nav-desktop ul { list-style: none; padding-left: 0; margin-top: 1rem; }
.category-nav-desktop li a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.category-nav-desktop li a:hover {
    background-color: var(--light-gray);
    color: #000;
}
.category-nav-desktop li a.active {
    background-color: #fff;
    color: var(--primary-color);
    font-weight: 700;
    border-left: 3px solid var(--primary-color);
}

.category-nav-mobile {
    position: sticky;
    top: var(--navbar-height);
    background-color: #f1f1f1;
    z-index: 1010;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    height: auto;
    border-bottom: 1px solid var(--border-color);
}
.category-nav-mobile ul {
    list-style: none; padding: 0 0.5rem; margin: 0;
    display: flex; overflow-x: auto; white-space: nowrap;
    -ms-overflow-style: none; scrollbar-width: none;
}
.category-nav-mobile ul::-webkit-scrollbar { display: none; }
.category-nav-mobile li { display: inline-block; }
.category-nav-mobile li a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    border-radius: 0.5rem 0.5rem 0 0;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    border-bottom: none;
    background-color: #e9ecef;
    position: relative;
    top: 1px;
    margin-right: 4px;
}
.category-nav-mobile li a.active {
    background-color: var(--page-bg);
    color: var(--primary-color);
    font-weight: 700;
    border-bottom-color: var(--page-bg);
}

.menu-column { margin-bottom: 2rem; }
.category-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.food-card {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 1rem;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: itemFadeIn 0.4s ease-out backwards;
}
.food-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}
.food-card-body {
    flex-grow: 1; padding-right: 1rem; display: flex; flex-direction: column;
}
.food-card-title {
    font-size: 1.1rem; font-weight: 700; color: #222; margin-bottom: 0.25rem;
}
.food-card-desc {
    font-size: 0.85rem; color: var(--text-light); margin-bottom: 0.5rem; flex-grow: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; text-overflow: ellipsis;
}
.food-card-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.food-card-img-wrapper {
    flex-shrink: 0; width: 90px; height: 90px;
    border-radius: var(--border-radius); position: relative; overflow: hidden;
}
.food-card-img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;
}
.food-card:hover .food-card-img { transform: scale(1.1); }

.food-card-add-btn-wrapper {
    position: absolute; bottom: -10px; right: -10px; opacity: 0; transition: all 0.3s ease;
}
.food-card:hover .food-card-add-btn-wrapper { opacity: 1; bottom: 5px; right: 5px; }
.food-card-add-btn {
    background-color: var(--primary-color);
    color: #fff; border: none; border-radius: 50%;
    width: 30px; height: 30px; display: flex;
    align-items: center; justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
    .order-summary-wrapper {
        position: sticky;
        top: calc(var(--navbar-height) + 2rem);
    }
    .order-summary {
        background-color: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: var(--border-radius);
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border: 1px solid var(--border-color);
    }
    .order-summary-content {
        padding: 1.5rem;
        max-height: calc(100vh - var(--navbar-height) - 4rem);
        overflow-y: auto;
    }
}

@media (max-width: 991.98px) {
    .order-summary-wrapper {
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    }
    .order-summary-toggle {
        display: flex; justify-content: space-between; align-items: center;
        padding: 0 1.5rem; height: var(--mobile-cart-toggle-height);
        background-color: var(--primary-color);
        color: #ffffff; font-weight: 700;
        font-size: 1.1rem; cursor: pointer;
    }
    .order-summary-toggle i { transition: transform 0.3s ease; }
    .order-summary-content {
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        padding: 0 1.5rem;
    }
    .order-summary-wrapper.is-visible .order-summary-content {
        max-height: 70vh;
        overflow-y: auto;
        padding: 1.5rem;
    }
    .order-summary-wrapper.is-visible .order-summary-toggle i {
        transform: rotate(180deg);
    }
}

#cart-items { max-height: 300px; overflow-y: auto; padding-right: 5px; }
.cart-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; border-bottom: 1px solid var(--light-gray);
    animation: itemFadeIn 0.3s ease-out;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-details .fw-bold { font-size: 1rem; }
.cart-item-options { font-size: 0.85rem; color: var(--text-light); padding-left: 10px; }
.cart-item-actions { display: flex; align-items: center; }
.cart-item-actions .quantity-btn {
    width: 30px; height: 30px; border-radius: 50%; padding: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; line-height: 1;
}
.cart-item-actions .quantity-text {
    font-weight: 600; font-size: 1.1rem; min-width: 30px; text-align: center;
}

.payment-option,
.pickup-option {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
    cursor: pointer;
}
.payment-option:hover,
.pickup-option:hover { border-color: #aaa; }
.payment-option input[type="radio"],
.pickup-option input[type="radio"] { display: none; }
.payment-option.selected,
.pickup-option.selected {
    border-color: var(--primary-color);
    background-color: #ffeeee;
    box-shadow: 0 0 10px rgba(217, 4, 41, 0.2);
}
.payment-option strong,
.pickup-option strong { font-size: 1.1rem; }
#extra_details_container {
    display: none;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.image-modal-overlay {
    display: none; position: fixed; z-index: 9998;
    padding-top: 100px; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}
.image-modal-content {
    margin: auto; display: block; width: auto;
    max-width: 80%; max-height: 80vh;
    border-radius: 8px;
    animation: zoomIn 0.3s;
}
.image-modal-close {
    position: absolute; top: 20px; right: 35px;
    color: #f1f1f1; font-size: 40px; font-weight: bold;
    transition: 0.3s; cursor: pointer;
}
.image-modal-close:hover,
.image-modal-close:focus { color: #bbb; text-decoration: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.5); } to { transform: scale(1); } }

#foodOptionsModal .modal-header {
    border-bottom: none;
    padding: 0.75rem 1rem;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 10;
    background: transparent;
}
#foodOptionsModal .modal-header .btn-close {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 0.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    transition: all 0.2s ease;
}
#foodOptionsModal .modal-header .btn-close:hover {
    transform: scale(1.1);
}

#foodOptionsModal .modal-body { padding: 0; }
#foodOptionsModal .modal-footer {
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.modal-item-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.modal-item-details { padding: 1.5rem; }
.modal-item-details h3 { font-weight: 700; }
.modal-item-options {
    padding: 0 1.5rem 1.5rem 1.5rem;
    flex-grow: 1;
}

/* === FIX FOR OPTION GROUP ALIGNMENT === */
.option-group {
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.option-group:last-child { border-bottom: none; margin-bottom: 0; }
.option-group-title { font-weight: 700; margin-bottom: 0.5rem; }
.option-group-title small { font-weight: 400; color: var(--text-light); }

/* Ensure the form-check container is full width and uses flex */
.option-group .form-check {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    width: 100%; /* Force full width */
}

/* The label should take up all remaining space after the radio/checkbox */
.option-group .form-check-label {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures price goes to far right */
    flex-grow: 1; /* Occupy remaining space */
    cursor: pointer;
    font-weight: 500;
    padding: 0.75rem 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
    width: 100%; /* Ensure it fills the flex container */
}
.option-group .form-check-label:hover {
    background-color: var(--light-gray);
}

/* Styling the custom radio/checkbox input */
.option-group .form-check-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 22px; /* Slightly larger for better tap target */
    height: 22px;
    border: 2px solid #adb5bd;
    background-color: #fff;
    transition: all 0.2s ease;
    margin-right: 0.75rem; /* Spacing between input and label text */
    margin-top: 0; /* Reset Bootstrap default */
    display: grid;
    place-content: center;
    flex-shrink: 0; /* Prevent shrinking */
}
.option-group .form-check-input[type="radio"] {
    border-radius: 50%;
}
.option-group .form-check-input[type="checkbox"] {
    border-radius: 4px;
}
.option-group .form-check-input::before {
    content: "";
    width: 12px;
    height: 12px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 10px 10px white;
}
.option-group .form-check-input[type="radio"]::before {
    border-radius: 50%;
}
.option-group .form-check-input[type="checkbox"]::before {
    background-color: white;
    -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M4 8l3 3 6-6'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M4 8l3 3 6-6'/%3e%3c/svg%3e");
    box-shadow: none;
}

/* Checked State */
.option-group .form-check-input:checked {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}
.option-group .form-check-input:checked::before {
    transform: scale(1);
}

/* Text Styling */
.option-group .option-name {
    color: #333;
    font-weight: 500;
}
.option-group .option-price {
    color: var(--text-dark);
    font-weight: 600;
    margin-left: auto; /* Reinforce right alignment */
}

@media (max-width: 991.98px) {
    #foodOptionsModal.modal-fullscreen-lg-down .modal-content {
        display: flex; flex-direction: column; height: 100%;
    }
    #foodOptionsModal.modal-fullscreen-lg-down .modal-body {
        flex-grow: 1; overflow-y: auto; padding-bottom: 8rem;
    }
    #foodOptionsModal.modal-fullscreen-lg-down .modal-footer {
        position: fixed; bottom: 0; left: 0; right: 0; width: 100%; z-index: 1056;
    }
    #modal-add-to-cart-btn {
        flex-grow: 1; margin-left: 1rem; font-weight: 700;
        font-size: 1.1rem; padding: 0.75rem 1rem;
    }
}

@media (min-width: 992px) {
    .modal-item-image {
        height: 100%; min-height: 500px;
        border-top-left-radius: var(--border-radius);
        border-bottom-left-radius: var(--border-radius);
    }
    #foodOptionsModal .modal-body { display: flex; }
    #foodOptionsModal .modal-body .row { width: 100%; }
    .col-md-6.d-flex.flex-column { max-height: 70vh; }
}

.modal-quantity-stepper { display: flex; align-items: center; }
.btn-stepper {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-size: 1.8rem; font-weight: 400;
    color: var(--primary-color);
    display: flex; align-items: center; justify-content: center;
    line-height: 1; transition: all 0.2s ease;
}
.btn-stepper:disabled { color: #aaa; cursor: not-allowed; }
.btn-stepper:not(:disabled):hover { background-color: #ffeeee; }
.modal-quantity-stepper .quantity-text {
    font-size: 1.2rem; font-weight: 600;
    padding: 0 1rem; min-width: 40px; text-align: center;
}
#modal-add-to-cart-btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.available-discounts-section {
    background-color: #fffafb;
    border: 1px dashed var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1rem;
}
.discount-section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.available-discounts-section .list-group-item {
    padding: 0.75rem 1rem;
    background-color: #fff;
    border: 1px solid var(--border-color);
}

.pickup-map-container {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: itemFadeIn 0.4s ease-out;
}
.pickup-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
}
.pickup-info-header strong {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}
.pickup-info-header .pickup-address-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: underline;
}
.pickup-info-header .pickup-time {
    text-align: right;
    flex-shrink: 0;
    padding-left: 1rem;
}
.pickup-info-header .pickup-time small {
    font-size: 0.85rem;
    color: #555;
}
.pickup-map-box {
    border-top: 1px solid var(--border-color);
}
.pickup-map-box img {
    width: 100%;
    height: auto;
    display: block;
}

.alert {
    font-weight: 500;
    border: none;
    border-left: 4px solid;
}
.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-color: #0f5132;
}
.alert-danger {
    background-color: #f8d7da;
    color: var(--primary-color-darker);
    border-color: var(--primary-color);
}
.alert-dismissible .btn-close {
    padding: 1.25rem 1rem;
}
