.size-option input[type="radio"]:checked + .size-btn {
    background: #e74c3c !important;
    color: white !important;
    border-color: #e74c3c !important;
}

.size-option:hover .size-btn {
    border-color: #e74c3c !important;
    color: #e74c3c !important;
}

.cart-plus-minus input[type="number"] {
    font-weight: 600;
}

.cart-plus-minus input[type="number"]:focus {
    outline: none;
    border-color: #e74c3c !important;
}

/* Stock status styles */
.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.stock-status i {
    font-size: 1rem;
}

.stock-status.out-of-stock {
    color: #fff;
}

.stock-status.low-stock {
    color: #fff;
    background-color: #ffc107;
}

.stock-status-warning {
    background-color: #ffc107;
    color: #fff;
    padding: 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stock-status-danger {
    background-color: #dc3545;
    color: #fff;
    padding: 0.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Out of stock notice */
.out-of-stock-notice {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.out-of-stock-notice i {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 15px;
}

.out-of-stock-notice h5 {
    color: #495057;
    margin-bottom: 10px;
}

.out-of-stock-notice p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Modal animations */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: scale(0.8);
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Success modal specific animations */
#successModal .modal-content {
    animation: fadeInScale 0.5s ease-out;
}

/* Error modal specific animations */
#errorModal .modal-content {
    animation: slideInDown 0.4s ease-out;
}

/* Error modal color scheme to match order button */
#errorModal .modal-header {
    background: #e74c3c !important;
    border-bottom: 1px solid #c0392b !important;
}

#errorModal .error-icon i {
    color: #e74c3c !important;
}

#errorModal #error-modal-close-btn {
    background: #e74c3c !important;
    border-color: #e74c3c !important;
}

#errorModal #error-modal-close-btn:hover {
    background: #c0392b !important;
    border-color: #c0392b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

/* Hover effects for modal buttons */
.modal-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Loading spinner enhancement */
.spinner-border {
    border-width: 3px;
}

/* Modal backdrop enhancement */
.modal-backdrop.show {
    opacity: 0.6;
}

.success-gradient {
    background: #e74c3c;
}

.error-gradient {
    background: #e74c3c;
}

/* Responsive design improvements */
@media (max-width: 768px) {
    .size-options {
        justify-content: center;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 20px 15px !important;
    }
    
    .order-success-details .row > div {
        margin-bottom: 10px;
    }
}

/* Size button hover effects */
.size-btn {
    transition: all 0.3s ease;
    cursor: pointer;
}

.size-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Quantity input styling */
.quantity-selection input:focus {
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Order button enhancement */
#order-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

#order-btn:active {
    transform: translateY(0);
}

/* Loading state for buttons */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form validation styling */
.form-control:invalid {
    border-color: #dc3545;
}

.form-control:valid {
    border-color: #28a745;
}

/* Input error states */
.form-control.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Error message styling */
.invalid-feedback {
    display: block;
    font-size: 14px;
    color: #dc3545;
    margin-top: 5px;
    padding: 5px 0;
    animation: slideInError 0.3s ease-out;
}

@keyframes slideInError {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error message icons */
.invalid-feedback::before {
    content: "⚠️";
    margin-right: 5px;
    font-size: 12px;
}

/* Form control focus states for error handling */
.form-control:focus.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Success state for corrected fields */
.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Product image gallery enhancements */
.product-details-img img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-details-img img:hover {
    transform: scale(1.02);
}

/* Price styling improvements */
.price.details-price span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.price.details-price .old-price {
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 10px;
}

/* Category link styling */
.product-cat a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-cat a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Modal Priority and Z-Index Management */
#errorModal {
    z-index: 9999 !important;
}

#errorModal .modal-backdrop {
    z-index: 9998 !important;
}

/* Order Modal should be below error modal */
#orderModal {
    z-index: 1055;
}

/* Success Modal normal priority */
#successModal {
    z-index: 1056;
}

/* Modal animations */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: none;
}

/* Error modal special highlight - consistent with order button */
#errorModal .modal-content {
    animation: shake 0.5s ease-in-out;
    border: 2px solid #e74c3c;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Error modal backdrop consistency */
#errorModal .modal-backdrop {
    background-color: rgba(231, 76, 60, 0.1);
}

/* Success animation enhancement */
@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.product-out-of-stock {
    position: relative;
}

.product-out-of-stock .product__content {
    opacity: 0.8;
}

.stock-badge {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.product-out-of-stock:hover .product__img img {
    filter: grayscale(30%) !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease;
}

/* Coupon section styles */
#apply-coupon-btn {
    transition: all 0.3s ease;
}

#apply-coupon-btn:hover {
    background: #218838 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

#apply-coupon-btn:disabled {
    background: #6c757d !important;
    cursor: not-allowed !important;
    transform: none !important;
}

#coupon-input {
    transition: all 0.3s ease;
}

#coupon-input:focus {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25) !important;
}

#remove-coupon-btn {
    transition: all 0.3s ease;
}

#remove-coupon-btn:hover {
    background: rgba(21, 87, 36, 0.1) !important;
    transform: scale(1.1);
}

.coupon-section .invalid-feedback {
    animation: slideInError 0.3s ease-out;
}

#coupon-success {
    animation: slideInSuccess 0.3s ease-out;
}

@keyframes slideInSuccess {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Filters Sidebar */
.shop-sidebar {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.shop-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff4757;
    position: relative;
}

.shop-search {
    position: relative;
}

.shop-search input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.shop-search input:focus {
    border-color: #ff4757;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 71, 87, 0.25);
}

.btn-search {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #ff4757;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #ff3742;
}

.shop-cat ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-cat li {
    margin-bottom: 10px;
}

.shop-cat a {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.shop-cat a:hover,
.shop-cat a.active {
    background: #ff4757;
    color: white;
    text-decoration: none;
}

.filter-checkbox {
    margin-bottom: 12px;
}

.filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    margin: 0;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.filter-label:hover {
    color: #333;
}

.filter-label input {
    margin-right: 12px;
    transform: scale(1.2);
}

.price-inputs {
    display: flex;
    gap: 15px;
}

.price-input {
    flex: 1;
}

.price-input label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.price-input input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.price-input input:focus {
    border-color: #ff4757;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 71, 87, 0.25);
}

.btn-block {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff4757;
    border: 1px solid #ff4757;
    color: white;
}

.btn-primary:hover {
    background: #ff3742;
    border-color: #ff3742;
    text-decoration: none;
    color: white;
}

.btn-outline-secondary {
    background: transparent;
    border: 1px solid #666;
    color: #666;
}

.btn-outline-secondary:hover {
    background: #666;
    color: white;
    text-decoration: none;
}

.mb-15 {
    margin-bottom: 15px;
}

/* Active Filters */
.active-filters {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    height: 34px;
}

.filter-tag i {
    color: #666;
    font-size: 0.9rem;
}

.remove-filter {
    color: #dc3545;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.remove-filter:hover {
    color: #c82333;
    text-decoration: none;
}

.btn-light {
    background-color: #fff;
    border-color: #dee2e6;
    color: #dc3545;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-light:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

/* Results Count */
.results-count {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Sort Dropdown */
.orderby {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    cursor: pointer;
    min-width: 200px;
}

.orderby:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Fix for Safari */
@supports (-webkit-touch-callout: none) {
    .product__img {
        height: 0;
    }
}

/* Fix for Firefox */
@-moz-document url-prefix() {
    .product__img img {
        height: auto;
    }
}

/* Product Status Info */
.product-status-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge i {
    font-size: 16px;
}

.status-badge.out-of-stock {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.status-badge.low-stock {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status-badge.in-stock {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.delivery-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.delivery-info i {
    font-size: 16px;
}

/* Product Grid Layout */
.product-grid {
    margin: 0 -15px;
}

.product {
    position: relative;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.product__img {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product__img img:hover {
    transform: scale(1.05);
}

.product__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pro-cat {
    margin-bottom: 0.5rem;
}

.pro-cat a {
    color: #777;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pro-cat a:hover {
    color: #e74c3c;
}

.pro-cat a.active-category {
    color: #e74c3c;
    font-weight: 600;
}

.pro-title {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
    flex-grow: 1;
}

.pro-title a {
    color: #333;
    text-decoration: none;
}

.price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e31e24;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    z-index: 1;
}

.out-of-stock {
    background-color: #dc3545;
}

.low-stock {
    background-color: #ffc107;
    color: #000;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.stock-status i {
    font-size: 1rem;
}

.out-of-stock-img {
    opacity: 0.5;
    filter: grayscale(1);
}

/* Price Filter Styles */
.price-range {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.input-group {
    flex: 1;
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
}

.form-control {
    border-color: #dee2e6;
    transition: border-color 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #e31e24;
    box-shadow: 0 0 0 0.2rem rgba(227, 30, 36, 0.25);
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
}

.filter-tag i {
    color: #666;
}

.remove-filter {
    color: #dc3545;
    cursor: pointer;
    text-decoration: none;
}

.remove-filter:hover {
    color: #c82333;
}

.clear-all-filters {
    color: #dc3545;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: auto;
}

.clear-all-filters:hover {
    color: #c82333;
    text-decoration: underline;
}

/* Pagination */
.pagination-wrap {
    margin-top: 3rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-item {
    margin: 0;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 4px !important;
    font-size: 0.9rem;
    color: #333;
    border: 1px solid #dee2e6;
    background-color: #fff;
    transition: all 0.2s ease;
}

.page-link:hover {
    background-color: #e31e24;
    border-color: #e31e24;
    color: #fff;
}

.page-item.active .page-link {
    background-color: #e31e24;
    border-color: #e31e24;
    color: #fff;
}

.page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    cursor: not-allowed;
}

.page-link:focus {
    box-shadow: none;
    outline: none;
}

/* Filter loading state */
.filter-loading {
    animation: slideInFromRight 0.3s ease-out;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.submitting {
    opacity: 0.8;
    pointer-events: none;
}

.submitting .price-input input {
    background-color: #f8f9fa;
}

/* Enhanced price input styling */
.price-input input:focus {
    border-color: #ff4757 !important;
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 71, 87, 0.25) !important;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.price-input input {
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .shop-sidebar {
        margin-bottom: 40px;
    }
    
    .price-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-tags {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-title {
        margin-bottom: 10px;
    }
    
    .filter-loading {
        top: 10px !important;
        right: 10px !important;
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
}

/* Product Grid Loading State */
.product-grid {
    transition: opacity 0.3s ease;
}

/* Filter Checkboxes */
.filter-checkbox {
    margin-bottom: 10px;
}

.filter-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: #333;
}

.filter-label input[type="radio"],
.filter-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.filter-label:hover .checkmark {
    border-color: #e74c3c;
}

.filter-label input:checked ~ .checkmark {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-label input:checked ~ .checkmark:after {
    display: block;
}

/* Price Filter */
.price-inputs {
    display: flex;
    gap: 10px;
}

.price-input {
    flex: 1;
}

.price-input label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

.price-input input {
    width: 100%;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.price-input input:focus {
    border-color: #e74c3c;
    outline: none;
}

/* Search Input */
.shop-search {
    position: relative;
}

.shop-search input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.shop-search input:focus {
    border-color: #e74c3c;
    outline: none;
}

.btn-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-search:hover {
    color: #e74c3c;
}

/* Widget Titles */
.shop-widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f1f1;
}

/* Responsive grid adjustments */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.menu-active a {
    color: #ff0336 !important;
    font-weight: 600;
}

.menu-active a:hover {
    color: #ff0336 !important;
}