/* Extracted from Root PHP Pages */

/* --- CSS extracted from 404.php --- */
.error_simple {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error_code h1 {
    font-size: 120px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .error_code h1 {
        font-size: 80px;
    }
}

@media (max-width: 576px) {
    .error_code h1 {
        font-size: 60px;
    }
}

/* --- CSS extracted from blog-details.php --- */

/* Base styles that work with all blog styles */
.blog_post_navigation a {
    color: #333;
    text-decoration: none;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    width: 45%;
    transition: all 0.3s;
}

.blog_post_navigation a:hover {
    background: var(--colorGreen);
    color: white;
    border-color: var(--colorGreen);
}

.blog_post_navigation a span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

.blog_post_navigation a:hover span {
    color: white;
}

.author_social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: #ddd;
    color: #333;
    border-radius: 50%;
    margin-right: 5px;
    transition: all 0.3s;
}

.author_social a:hover {
    background: var(--colorGreen);
    color: white;
}

/* Dark mode banner adjustment */
.dark-banner .page_banner_overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Image caption for editorial style */
.image-caption {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* Post category badge for creative style */
.post-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

/* --- CSS extracted from cart.php --- */
/* Cart Page Styles - Matching Home Page Theme */
.cart_table_area {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.cart_table {
    background: #fff;
    margin-bottom: 0;
}

.cart_table thead th {
    background: #f8f9fa;
    padding: 18px 15px;
    font-weight: 600;
    color: var(--colorBlack);
    border-bottom: 2px solid #e9ecef;
    font-family: var(--headingFont);
}

.cart_table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.cart_table tbody tr:last-child {
    border-bottom: none;
}

.cart_table td {
    padding: 20px 15px;
    vertical-align: middle;
}

.cart_product_img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    display: block;
}

.cart_product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart_product_img:hover img {
    transform: scale(1.05);
}

.cart_product_title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart_product_title a {
    color: var(--colorBlack);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart_product_title a:hover {
    color: var(--colorGreen);
}

.cart_product_attr {
    color: #6c757d;
    font-size: 0.85rem;
}

.current-price {
    font-weight: 600;
    color: var(--colorGreen) !important;
}

.old_price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.85rem;
}

.quantity_selector {
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    width: fit-content;
    margin-bottom: 5px;
    background: #fff;
}

.qty-btn {
    width: 35px;
    height: 35px;
    background: none;
    border: none;
    color: var(--colorBlack);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.qty-btn:hover {
    background: var(--colorGreen);
    color: #fff;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    width: 60px;
    height: 35px;
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    text-align: center;
    font-weight: 600;
    -moz-appearance: textfield;
    background: #fff;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    outline: none;
}

.stock_info {
    color: #6c757d;
    font-size: 0.7rem;
    display: block;
}

.item-total {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--colorGreen);
}

.remove_btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.remove_btn:hover {
    color: #c82333;
    transform: scale(1.1);
}

.cart_actions {
    padding: 20px;
    border-top: 1px solid #e9ecef;
}

.cart_summary_card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.summary_title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    font-family: var(--headingFont);
    color: var(--colorBlack);
}

.coupon_form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.coupon_form .form-control {
    border: 1px solid #dee2e6;
    border-right: none;
    padding: 10px 15px;
}

.coupon_form .form-control:focus {
    border-color: var(--colorGreen);
    outline: none;
}

.coupon_form .btn {
    background: var(--colorGreen);
    color: #fff;
    border: none;
    padding: 10px 20px;
    transition: background 0.3s ease;
}

.coupon_form .btn:hover {
    background: #0a1e48;
}

.applied_coupon {
    font-size: 0.9rem;
    margin-top: 10px;
}

.cart_totals {
    margin-top: 20px;
}

.total_row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e9ecef;
    font-size: 1rem;
}

.total_row:last-child {
    border-bottom: none;
}

.total_row.discount {
    color: #28a745;
}

.grand_total {
    font-weight: 700;
    font-size: 1.2rem;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
}

.grand_total .amount {
    color: var(--colorGreen);
}

/* Payment Icons - Using Font Awesome */
.payment_icon_list {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.payment_icon_icon {
    font-size: 28px;
    color: #6c757d;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment_icon_icon:hover {
    color: var(--colorGreen);
    transform: translateY(-2px);
}

.payment_icon_icon i {
    display: block;
}

/* Specific colors for payment icons on hover */
.payment_icon_icon[title="Visa"]:hover {
    color: #1a1f71;
}

.payment_icon_icon[title="Mastercard"]:hover {
    color: #eb001b;
}

.payment_icon_icon[title="American Express"]:hover {
    color: #006fcf;
}

.checkout_btn {
    background: var(--colorGreen);
    font-size: 1rem;
    padding: 14px;
    transition: all 0.3s ease;
}

.checkout_btn:hover {
    background: var(--colorBlack);
    transform: translateY(-2px);
}

.continue_shopping {
    background: #6c757d;
}

.continue_shopping:hover {
    background: #5a6268;
}

.update_cart {
    background: var(--colorGreen);
}

.update_cart:hover {
    background: #0a1e48;
}

.clear_cart {
    background: #dc3545;
}

.clear_cart:hover {
    background: #c82333;
}

/* Cross-sell Products */
.cross_sell_products h4 {
    font-family: var(--headingFont);
    color: var(--colorBlack);
    font-weight: 600;
}

.cross_sell_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cross_sell_card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.cross_sell_img {
    display: block;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.cross_sell_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cross_sell_card:hover .cross_sell_img img {
    transform: scale(1.1);
}

.cross_sell_body {
    padding: 12px;
}

.cross_sell_title {
    font-size: 0.85rem;
    margin-bottom: 5px;
    line-height: 1.3;
    font-weight: 500;
}

.cross_sell_title a {
    color: var(--colorBlack);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cross_sell_title a:hover {
    color: var(--colorGreen);
}

.cross_sell_price {
    font-weight: 600;
    color: var(--colorGreen);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.small_add_btn {
    display: inline-block;
    padding: 4px 12px;
    background: var(--colorGreen);
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.small_add_btn:hover {
    background: #0a1e48;
    color: #fff;
}

.empty_cart {
    padding: 60px 20px;
}

.empty_state_icon i {
    color: var(--colorGreen);
    opacity: 0.5;
}

/* Loading state */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .cart_summary_card {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 768px) {
    .cart_table td {
        padding: 15px 10px;
    }

    .cart_product_img {
        width: 60px;
        height: 60px;
    }

    .cart_product_title {
        font-size: 0.85rem;
    }

    .quantity_selector {
        transform: scale(0.9);
    }

    .cart_actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch !important;
    }

    .cart_actions>div {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cart_actions .common_btn {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }

    .payment_icon_icon {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .cart_table {
        font-size: 0.85rem;
    }

    .cart_table td {
        padding: 10px 5px;
    }

    .cart_product_img {
        width: 50px;
        height: 50px;
    }

    .cart_product_info {
        margin-left: 8px !important;
    }

    .cart_product_title {
        font-size: 0.75rem;
    }

    .current-price {
        font-size: 0.85rem;
    }

    .qty-btn {
        width: 30px;
        height: 30px;
    }

    .payment_icon_icon {
        font-size: 20px;
    }
}

/* --- CSS extracted from category.php --- */
/* Product Card Styles */
.product_item_2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product_item_2:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.product_item_2 .product_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
    background: #f8f8f8;
}

.product_item_2 .product_img a {
    text-decoration: none;
}

.product_item_2 .product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_item_2:hover .product_img img {
    transform: scale(1.08);
}

/* Badge Styles */
.badge-wrapper .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

.badge.bg-danger {
    background: #dc3545 !important;
}

/* Action Buttons */
.action-buttons {
    z-index: 15;
}

.action-buttons a {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-buttons a:hover {
    background: var(--colorGreen) !important;
    transform: scale(1.1);
}

.action-buttons a:hover i {
    color: #fff !important;
}

/* Product Text */
.product_text .title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product_text .title:hover {
    color: var(--colorGreen) !important;
}

/* Rating Stars */
.rating i {
    margin-right: 1px;
    font-size: 12px;
}

.rating .text-warning {
    color: #f9a61c !important;
}

/* Price */
.price .current-price {
    color: var(--colorGreen) !important;
    font-size: 1.1rem;
}

.price .old_price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.8rem;
}

/* Add to Cart Button */
.product_item_2 .common_btn {
    padding: 8px 15px;
    font-size: 0.85rem;
    width: 100%;
    background: var(--colorGreen);
    transition: all 0.3s ease;
}

.product_item_2 .common_btn:hover {
    background: #0a1e48;
    transform: translateY(-2px);
}

.product_item_2 .common_btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Category Stats Bar */
.category_stats {
    background: #f8f9fa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 72px;
}

.category_stats .form-select {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 0.375rem 2rem 0.375rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.category_stats .form-select:focus {
    border-color: var(--colorGreen);
    box-shadow: none;
}

.category_stats .view_toggle .btn {
    width: 35px;
    height: 35px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.category_stats .view_toggle .btn.active {
    background: var(--colorGreen);
    color: #fff;
    border-color: var(--colorGreen);
}

/* List View Styles */
.product_list_item {
    transition: all 0.3s ease;
}

.product_list_item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: transparent !important;
}

.product_list_item .product_img {
    overflow: hidden;
    border-radius: 8px;
}

.product_list_item .product_img img {
    transition: transform 0.3s ease;
}

.product_list_item:hover .product_img img {
    transform: scale(1.05);
}

/* Pagination */
.pagination_area .page-link {
    color: var(--colorBlack);
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination_area .page-link:hover {
    background: var(--colorGreen);
    color: #fff;
    border-color: var(--colorGreen);
}

.pagination_area .active .page-link {
    background: var(--colorGreen) !important;
    border-color: var(--colorGreen);
    color: #fff;
}

.pagination_area .disabled .page-link {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .category_stats .col-md-6:first-child {
        margin-bottom: 15px;
        text-align: center;
    }

    .category_stats .col-md-6:last-child {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .col-6 {
        padding: 0 8px;
    }

    .product_item_2 {
        padding: 10px;
    }

    .product_item_2 .title {
        font-size: 0.85rem;
    }

    .product_item_2 .current-price {
        font-size: 0.9rem;
    }

    .product_item_2 .common_btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .pagination_area .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .rating i {
        font-size: 10px;
    }

    /* List View Mobile */
    .product_list_item {
        flex-direction: column;
        text-align: center;
    }

    .product_list_item .product_img {
        margin-bottom: 15px;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .product_list_item .actions {
        justify-content: center;
    }
}

/* --- CSS extracted from checkout.php --- */
/* Checkout Page Styles */
.checkout_steps {
    max-width: 600px;
    margin: 0 auto;
}

.step_item {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.step_item::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step_item:first-child::before {
    display: none;
}

.step_item.active .step_number {
    background: var(--colorGreen);
    color: #fff;
    border-color: var(--colorGreen);
}

.step_item.active .step_label {
    color: var(--colorGreen);
    font-weight: 600;
}

.step_number {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: #fff;
}

.step_label {
    font-size: 0.9rem;
    color: #6c757d;
}

.checkout_form_card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.address_card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.address_card:hover {
    border-color: var(--colorGreen);
    box-shadow: 0 5px 15px rgba(var(--colorGreen), 0.1);
}

.address_card.default {
    border-color: var(--colorGreen);
    background: #f0fff4;
}

.address_card.selected {
    border-color: var(--colorGreen);
    background: #f4fdf8;
}

.address_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.default_badge {
    background: #28a745;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.add_new_address {
    color: var(--colorGreen);
    text-decoration: none;
    font-size: 0.95rem;
    cursor: pointer;
}

.add_new_address:hover {
    color: var(--colorBlack);
    text-decoration: underline;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    font-size: 0.95rem;
    display: block;
}

.form-group label:after {
    content: '*';
    color: #dc3545;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--colorGreen);
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.1);
}

.shipping_option,
.payment_option {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.shipping_option:hover,
.payment_option:hover {
    border-color: var(--colorGreen);
}

.shipping_option input[type="radio"],
.payment_option input[type="radio"] {
    display: none;
}

.shipping_option label,
.payment_option label {
    display: block;
    padding: 20px;
    cursor: pointer;
    width: 100%;
}

.shipping_option input[type="radio"]:checked+label,
.payment_option input[type="radio"]:checked+label {
    background: #f4fdf8;
}

.shipping_option_content,
.payment_option_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment_option_content {
    display: flex;
    align-items: center;
}

.payment_logo {
    width: 114px !important;
    margin-right: 15px;
}

.shipping_price {
    font-weight: 600;
    color: var(--colorGreen);
}

.card_icon {
    height: 30px;
    margin-right: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 2px 5px;
    background: #fff;
}

.checkout_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back_btn {
    background: #6c757d !important;
    min-width: 150px;
}

.continue_btn,
.place_order_btn {
    background: var(--colorGreen) !important;
    min-width: 200px;
}

.continue_btn:hover,
.place_order_btn:hover {
    background: var(--colorBlack) !important;
}

.order_summary_card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    position: sticky;
    top: 100px;
}

.summary_title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.order_items {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.order_item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.order_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order_item_img {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.order_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: #f8f9fa;
}

.item_quantity {
    position: absolute;
    top: 1px;
    right: -5px;
    background: var(--colorGreen);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.order_item_info {
    flex: 1;
}

.order_item_title {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.order_item_title a {
    color: #333;
    text-decoration: none;
}

.order_item_title a:hover {
    color: var(--colorGreen);
}

.order_item_attrs {
    color: #6c757d;
    margin-bottom: 5px;
}

.order_item_price {
    font-weight: 600;
    color: var(--colorGreen);
    font-size: 0.9rem;
}

.price_breakdown {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.price_row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #6c757d;
}

.price_row.discount {
    color: #28a745;
}

.price_row.grand_total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #e9ecef;
}

.price_row.grand_total span:last-child {
    color: var(--colorGreen);
}

.terms_checkbox {
    font-size: 0.9rem;
}

.terms_checkbox a {
    color: var(--colorGreen);
    text-decoration: none;
}

.terms_checkbox a:hover {
    text-decoration: underline;
}



.pincode_checking {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

#pincode_status_msg .text-success {
    color: #28a745 !important;
}

#pincode_status_msg .text-danger {
    color: #dc3545 !important;
}

#pincode_status_msg .text-warning {
    color: #ffc107 !important;
}

.shipping_option.active {
    border-color: var(--colorGreen);
    background: #f4fdf8;
}

.shipping_option .shipping_price .text-success {
    color: #28a745 !important;
}

.shipping_option .small.text-success {
    font-size: 11px;
}

.free_shipping_info {
    background: #e8f5e9 !important;
    border: 1px solid #c8e6c9;
}

@media (max-width: 991px) {
    .order_summary_card {
        margin-top: 30px;
        position: static;
    }

    .checkout_navigation {
        flex-direction: column;
        gap: 15px;
    }

    .back_btn,
    .continue_btn,
    .place_order_btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .checkout_form_card {
        padding: 20px;
    }

    .step_label {
        font-size: 0.8rem;
    }

    .address_card {
        margin-bottom: 15px;
    }

    .shipping_option_content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .payment_option_content {
        flex-direction: column;
        text-align: center;
    }

    .payment_logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* --- CSS extracted from compare.php --- */
/* Compare Page Styles - Matching Home Page Theme */
.compare_page {
    background: #f8f9fa;
}

.compare_header {
    background: #fff;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.compare_title {
    font-family: var(--headingFont);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 5px;
}

.clear_all_btn {
    background: #dc3545 !important;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.clear_all_btn:hover {
    background: #c82333 !important;
}

.compare_list_area {
    background: #fff;
    border-radius: 16px;
    overflow-x: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    margin-top: 25px;
}

.compare_table {
    min-width: 768px;
    margin-bottom: 0;
}

.compare_table tr td {
    vertical-align: middle;
    padding: 18px 15px;
    border-color: #eee;
}

.compare_label {
    background: #f8f9fa;
    font-weight: 600;
    font-family: var(--headingFont);
    color: var(--colorBlack);
    width: 140px;
    font-size: 0.95rem;
}

.compare_product_cell {
    min-width: 220px;
}

.compare_product_img {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare_product_img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.compare_product_img:hover img {
    transform: scale(1.05);
}

.compare_product_title {
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0 10px;
}

.compare_product_title a {
    color: var(--colorBlack);
    text-decoration: none;
    transition: color 0.3s ease;
}

.compare_product_title a:hover {
    color: var(--colorGreen);
}

.remove_compare_btn {
    display: inline-block;
    padding: 5px 12px;
    background: #f8f9fa;
    color: #dc3545;
    border-radius: 20px;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.remove_compare_btn:hover {
    background: #dc3545;
    color: #fff;
}

.compare_empty_cell {
    background: #fafafa;
}

.empty_slot {
    text-align: center;
    padding: 20px;
}

.empty_slot i {
    color: #ddd;
    margin-bottom: 15px;
}

.empty_slot p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.browse_btn {
    display: inline-block;
    padding: 6px 15px;
    background: var(--colorGreen);
    color: #fff;
    border-radius: 30px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.browse_btn:hover {
    background: #0a1e48;
    color: #fff;
}

.compare_price .current_price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--colorGreen);
}

.compare_price .old_price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.85rem;
    margin-left: 8px;
}

.compare_price .discount_badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 8px;
}

.compare_rating .stars {
    color: #f9a61c;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.compare_rating .rating_value {
    font-weight: 600;
    color: var(--colorBlack);
}

.compare_rating .review_count {
    color: #999;
}

.stock_status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.stock_status.in_stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock_status.out_of_stock {
    background: #ffebee;
    color: #c62828;
}

.stock_status i {
    margin-right: 5px;
}

.low_stock_warning {
    color: #f57c00;
}

.sku_code {
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

.category_link {
    color: var(--colorGreen);
    text-decoration: none;
}

.category_link:hover {
    text-decoration: underline;
}

.compare_description p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.compare_colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.color_dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color_dot:hover {
    transform: scale(1.1);
}

.compare_sizes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.size_badge {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #555;
}

.compare_actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.add_to_cart_btn {
    background: var(--colorGreen) !important;
    padding: 8px 15px !important;
    font-size: 0.8rem !important;
}

.add_to_cart_btn:hover {
    background: #0a1e48 !important;
}

.view_details_btn {
    display: inline-block;
    padding: 8px 15px;
    background: #f8f9fa;
    color: var(--colorBlack);
    border-radius: 30px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.view_details_btn:hover {
    background: #e9ecef;
    color: var(--colorGreen);
}

/* Compare Tips Section */
.compare_tips {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #eee;
    margin-top: 30px;
}

.compare_tips h5 {
    font-family: var(--headingFont);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 20px;
}

.compare_tips h5 i {
    color: #f9a61c;
    margin-right: 10px;
}

.tip_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.tip_item i {
    width: 30px;
    height: 30px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colorGreen);
    font-size: 0.9rem;
}

.tip_item span {
    color: #666;
    font-size: 0.9rem;
}

/* Empty State */
.empty_compare_state {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 60px 30px;
    border: 1px solid #eee;
}

.empty_icon {
    margin-bottom: 25px;
}

.empty_icon i {
    font-size: 5rem;
    color: #ddd;
}

.empty_compare_state h3 {
    font-family: var(--headingFont);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 10px;
}

.empty_compare_state p {
    color: #999;
    margin-bottom: 25px;
}

/* Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- CSS extracted from dashboard.php --- */
.dashboard_sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.dashboard_sidebar_user {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #fc1c78 0%, #b10048 100%);
    color: #fff;
    position: relative;
}

.dashboard_sidebar_user .img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.dashboard_sidebar_user .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-upload-label {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    background: var(--colorGreen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.avatar-upload-label:hover {
    background: #0854b0;
    transform: scale(1.1);
}

.avatar-remove-form {
    position: absolute;
    bottom: 5px;
    left: 5px;
}

.avatar-remove-btn {
    width: 35px;
    height: 35px;
    background: #dc3545;
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.avatar-remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.dashboard_sidebar_user h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.dashboard_sidebar_user p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 5px;
}

.member_since {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    color: #fff;
}

.dashboard_sidebar_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard_sidebar_menu ul li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dashboard_sidebar_menu ul li a i {
    width: 25px;
    font-size: 18px;
    margin-right: 10px;
    color: #6c757d;
}

.dashboard_sidebar_menu ul li a:hover {
    background: #f8f9fa;
    border-left-color: var(--colorGreen);
}

.dashboard_sidebar_menu ul li a:hover i {
    color: var(--colorGreen);
}

.dashboard_sidebar_menu ul li a.active {
    background: #f0f7ff;
    border-left-color: var(--colorGreen);
    font-weight: 500;
}

.dashboard_sidebar_menu ul li a.active i {
    color: var(--colorGreen);
}

.dashboard_content {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    min-height: 600px;
}

.dashboard_title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Responsive */
@media (max-width: 991px) {
    .dashboard_sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .dashboard_content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .dashboard_sidebar_user .img {
        width: 100px;
        height: 100px;
    }

    .dashboard_sidebar_menu ul li a {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* --- CSS extracted from forgot-password.php --- */
/* Forgot Password Page Styles */

/* Success Icon */
.success_icon {
    margin-bottom: 25px;
}

.icon_circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: bounce 1s ease;
}

.icon_circle i {
    color: #28a745;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Email Sent Message */
.email_sent_message {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eee;
}

.email_display {
    word-break: break-all;
    background: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
}

/* Action Buttons */
.action_buttons {
    margin-top: 20px;
}

/* Security Note */
.security_note {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #eee;
}

.security_icon {
    width: 45px;
    height: 45px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.security_icon i {
    font-size: 1.3rem;
    color: #28a745;
}

.security_text h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 3px;
}

/* Alert Styles */

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #28a745;
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid var(--colorGreen);
}

.alert-warning {
    background: #fff3e0;
    color: #ef6c00;
    border-left: 4px solid #ff9800;
}

/* --- CSS extracted from index.php --- */
/* ================= MAIN BANNER CSS ================= */
.grocery_banner_slider_area {
    position: relative;
    overflow: hidden;
}

.grocery_banner_slider {
    position: relative;
}

/* Remove padding from Bootstrap columns inside banner */
.grocery_banner_slider .row>*,
.grocery_banner .row>* {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Alternative: If you want to keep Bootstrap gutter but remove for banner only */
.grocery_banner_slider .row.no-gutters>*,
.grocery_banner .row.no-gutters>* {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Slider (.grocery_banner_slide) aur Static Banner (.grocery_banner) dono ke liye */
.grocery_banner_slide,
.grocery_banner {
    min-height: 530px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

/* Static banner specific */
.grocery_banner {
    display: flex;
    align-items: center;
}

.grocery_banner_slide>div {
    height: 100%;
}

.grocery_banner_text {
    max-width: 100%;
    height: 530px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.grocery_banner_text h3 {
    font-family: var(--cursiveFont);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--colorGreen);
}

.grocery_banner_text h1,
.grocery_banner_text h2.banner-title-h2 {
    font-size: 60px;
    line-height: 1.2;
    margin: 5px 0px 0px 0px;
    color: var(--colorBlack);
    font-family: var(--headingFont);
    font-weight: 700;
}

.grocery_banner_text p {
    margin-top: 10px;
    margin-bottom: 45px;
    font-size: 16px;
    max-width: 80%;
}

/* ================= SLICK SLIDER OVERRIDES ================= */
.grocery_banner_slider .slick-list {
    overflow: hidden;
}

.grocery_banner_slider .slick-track {
    display: flex;
}

.grocery_banner_slider .slick-slide {
    float: none;
    height: auto;
}

.grocery_banner_slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    padding: 0;
    margin: 0;
    list-style: none;
}

.grocery_banner_slider .slick-dots li {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}

.grocery_banner_slider .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    background: #333;
    border: none;
    border-radius: 50%;
    padding: 0;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.grocery_banner_slider .slick-dots li button:before {
    display: none;
}

.grocery_banner_slider .slick-dots li.slick-active button {
    opacity: 1;
    background: var(--colorGreen);
    transform: scale(1.2);
}

/* ================= ARROW STYLES ================= */
.grocery_banner_slider .slick-prev,
.grocery_banner_slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 0 !important;
    line-height: 0 !important;
}

.grocery_banner_slider .slick-prev:hover,
.grocery_banner_slider .slick-next:hover {
    background: var(--colorGreen);
}

.grocery_banner_slider .slick-prev {
    left: 20px;
}

.grocery_banner_slider .slick-next {
    right: 20px;
}

.grocery_banner_slider .slick-prev:before,
.grocery_banner_slider .slick-next:before {
    display: none;
    content: "" !important;
    font-size: 0 !important;
}

.grocery_banner_slider .slick-prev:after {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #333;
}

.grocery_banner_slider .slick-next:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #333;
}

.grocery_banner_slider .slick-prev:hover:after,
.grocery_banner_slider .slick-next:hover:after {
    color: #fff;
}

/* ================= RESPONSIVE BANNER IMAGE ================= */
/* Desktop default */
.grocery_banner_slide {
    background-image: var(--desktop-bg);
    position: relative;
}

/* Gradient overlay for better text visibility - Only on mobile */
.grocery_banner_slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 1;
}

/* For screens below 768px, switch to mobile banner images (580x680) */
@media (max-width: 768px) {

    .grocery_banner_slide,
    .grocery_banner {
        min-height: 680px !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        position: relative;
    }

    .grocery_banner_slide {
        background-image: var(--mobile-bg) !important;
    }

    /* Gradient overlay for mobile only */
    .grocery_banner_slide::before {
        background: linear-gradient(rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.6) 100%);
    }

    /* Dark overlay for better text visibility on any background */
    .grocery_banner_slide .grocery_banner_text {
        position: relative;
        z-index: 2;
        margin-top: 58px;
    }

    /* Ensure text is readable on mobile */
    .grocery_banner_text h1,
    .grocery_banner_text h2.banner-title-h2 {
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .grocery_banner_text p {
        color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .grocery_banner_text .common_btn {
        background: #ffffff;
        color: #333333;
    }

    .grocery_banner_text .common_btn:hover {
        background: var(--colorGreen);
        color: #ffffff;
    }

    /* Remove padding from columns on mobile */
    .grocery_banner_slider .row>*,
    .grocery_banner .row>* {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .grocery_banner_text {
        min-height: 580px;
        height: auto;
        padding: 40px 15px;
        align-items: center;
        text-align: center;
        justify-content: flex-end;
    }
    .grocery_banner_text h1,
    .grocery_banner_text h2.banner-title-h2 {
        font-size: 36px;
    }

    .grocery_banner_text p {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .grocery_banner_slider .slick-prev,
    .grocery_banner_slider .slick-next {
        width: 30px;
        height: 30px;
    }

    .grocery_banner_slider .slick-prev:after,
    .grocery_banner_slider .slick-next:after {
        font-size: 14px;
    }

    .grocery_banner_slider .slick-prev {
        left: 10px;
    }

    .grocery_banner_slider .slick-next {
        right: 10px;
    }
}

/* Different gradient variations based on text position */
@media (max-width: 768px) {

    /* If text is on left side */
    .grocery_banner_slide .row .col-xxl-6:first-child .grocery_banner_text::before {
        background: linear-gradient(to right,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0) 100%);
    }

    /* If text is centered (full width) */
    .grocery_banner_slide .grocery_banner_text {
        /*background: rgba(0,0,0,0.4);*/
        border-radius: 10px;
    }
}

/* Tablet & Smaller Laptops */
@media (max-width: 991px) and (min-width: 769px) {

    .grocery_banner_slide,
    .grocery_banner,
    .grocery_banner_text {
        min-height: 450px;
        height: 450px;
    }

    .grocery_banner_text h1,
    .grocery_banner_text h2.banner-title-h2 {
        font-size: 48px;
    }
}

/* Small Mobile Screens (Phones < 576px) */
@media (max-width: 576px) {

    .grocery_banner_slide,
    .grocery_banner {
        min-height: 580px !important;
    }

    /* Gradient overlay for very small screens - darker for better readability */
    .grocery_banner_slide::before {
        background: linear-gradient(rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.7) 100%);
    }

    /* Ensure no padding on very small screens */
    .grocery_banner_slider .row>*,
    .grocery_banner .row>* {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .grocery_banner_text h1,
    .grocery_banner_text h2.banner-title-h2 {
        font-size: 28px;
    }

    .grocery_banner_text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .grocery_banner_text .common_btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .grocery_banner_slider .slick-prev,
    .grocery_banner_slider .slick-next {
        display: none !important;
    }
}

.grocery_banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 530px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Remove padding from Bootstrap columns for fallback banner */
.grocery_banner .row>* {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Gradient overlay for fallback banner on mobile */
@media (max-width: 768px) {
    .grocery_banner {
        min-height: 680px !important;
        background-image: var(--mobile-bg) !important;
        position: relative;
    }

    /* Remove padding on mobile */
    .grocery_banner .row>* {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Gradient overlay for better text visibility */
    .grocery_banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.6) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .grocery_banner .container {
        position: relative;
        z-index: 2;
    }

    .grocery_banner_text h1,
    .grocery_banner_text p {
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .grocery_banner_text .common_btn {
        background: #ffffff;
        color: #333333;
    }

    .grocery_banner_text .common_btn:hover {
        background: var(--colorGreen);
        color: #ffffff;
    }
}

@media (max-width: 576px) {
    .grocery_banner {
        min-height: 580px !important;
    }

    .grocery_banner::before {
        background: linear-gradient(rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.7) 100%);
    }
}

/* Product Card Styles */
.product_item_2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product_item_2 .product_img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
    background: #f8f8f8;
}

.product_item_2 .product_img a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.product_item_2 .product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_item_2:hover .product_img img {
    transform: scale(1.1);
}

.product_item_2 .badge-wrapper .badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 4px;
}

.product_item_2 .action-buttons a {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product_item_2 .action-buttons a:hover {
    background: var(--colorGreen) !important;
    color: #fff;
    transform: scale(1.1);
}

.product_item_2 .price .current-price {
    color: var(--colorGreen) !important;
    font-size: 1.1rem;
}

.product_item_2 .common_btn:disabled,
.special_product_card .common_btn:disabled {
    background: #ccc !important;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .col-6 {
        padding: 0 8px;
    }

    .product_item_2 {
        padding: 10px;
    }

    .product_item_2 .title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .rating i {
        font-size: 10px;
    }

    .product_item_2 .current-price {
        font-size: 0.9rem;
    }
}

/* --- CSS extracted from order-success.php --- */
.order_success_text {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    color: #28a745;
}

.order-details {
    background: #f8f9fa;
    text-align: left;
}

.order-details table {
    margin-bottom: 0;
}

.order-details table td {
    border: none;
    padding: 10px 15px;
}

.order-details table td:first-child {
    font-weight: 500;
    color: #666;
    width: 40%;
}

.action-buttons .common_btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .order_success_text {
        padding: 30px 20px;
    }

    .action-buttons .common_btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
}

/* --- CSS extracted from payment-success.php --- */
.payment_success_text {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    color: #28a745;
}

.order-details {
    background: #f8f9fa;
    text-align: left;
}

.order-details table {
    margin-bottom: 0;
}

.order-details table td {
    border: none;
    padding: 10px 15px;
}

.order-details table td:first-child {
    font-weight: 500;
    color: #666;
    width: 40%;
}

.action-buttons .common_btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .payment_success_text {
        padding: 30px 20px;
    }

    .action-buttons .common_btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
}

/* --- CSS extracted from product.php --- */
/* Product Gallery Styles - Clean & Responsive */
.product-gallery-wrapper {
    position: relative;
    background: #fff;
}

.product-main-image {
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Thumbnail Gallery */
.product-thumbnails {
    margin-top: 15px;
}

.thumbnails-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.thumbnail-item {
    width: calc(20% - 8px);
    min-width: 70px;
    max-width: 100px;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    transform: translateY(-3px);
    border-color: var(--colorGreen);
}

.thumbnail-item.active {
    border-color: var(--colorGreen);
    box-shadow: 0 4px 12px rgba(10, 105, 216, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Related Products - Make image clickable */
.product_item_2 .product_img a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

/* Rating Stars */
.rating-stars-container {
    margin: 10px 0;
}

.rating-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}

.rating-stars .star {
    font-size: 28px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-stars .star:hover {
    transform: scale(1.2);
}

.rating-stars .star.fas {
    color: #ffc107;
}

.rating-stars .star.far {
    color: #ddd;
}

.rating-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #6c757d;
}

/* Product Card Styles */
.product_item_2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product_item_2:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.product_item_2 .product_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
    background: #f8f8f8;
}

.product_item_2 .product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_item_2:hover .product_img img {
    transform: scale(1.08);
}

/* Badge Styles */
.badge-wrapper .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

.badge.bg-danger {
    background: #dc3545 !important;
}

/* Action Buttons */
.action-buttons {
    z-index: 15;
}

.action-buttons a {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-buttons a:hover {
    background: var(--colorGreen) !important;
    transform: scale(1.1);
}

.action-buttons a:hover i {
    color: #fff !important;
}

/* Add to Cart Button */
.product_item_2 .common_btn {
    padding: 8px 15px;
    font-size: 0.85rem;
    width: 100%;
    background: var(--colorGreen);
    transition: all 0.3s ease;
}

.product_item_2 .common_btn:hover {
    background: #0a1e48;
    transform: translateY(-2px);
}

.product_item_2 .common_btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Responsive */
@media (max-width: 991px) {
    .product-gallery-wrapper {
        margin-bottom: 30px;
    }

    .shop_details_text {
        padding-left: 0;
    }

    .details_title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .details_title {
        font-size: 24px;
    }

    .thumbnail-item {
        width: calc(25% - 8px);
    }
}

@media (max-width: 576px) {
    .thumbnail-item {
        width: calc(33.33% - 7px);
        min-width: 60px;
    }

    .details_btn_area .row {
        gap: 10px;
    }

    .details_btn_area .col-md-6 {
        width: 100%;
    }
}

/* --- CSS extracted from reset-password.php --- */
/* Reset Password Page Styles */

/* Password Strength Meter */
.password_strength {
    transition: all 0.3s ease;
}

.password_strength .progress {
    border-radius: 3px;
    overflow: hidden;
    background: #e0e0e0;
}

.password_strength .progress-bar {
    transition: width 0.3s ease;
}

.password_strength .progress-bar.bg-danger {
    background: #dc3545;
}

.password_strength .progress-bar.bg-warning {
    background: #ffc107;
}

.password_strength .progress-bar.bg-info {
    background: #17a2b8;
}

.password_strength .progress-bar.bg-success {
    background: #28a745;
}

/* Password Requirements */
.password_requirements {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 16px;
}

.password_requirements h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 10px;
}

.password_requirements ul li {
    font-size: 0.85rem;
    margin-bottom: 6px;
    transition: all 0.3s ease;
}

.password_requirements ul li.valid {
    color: #28a745 !important;
}

.password_requirements ul li.valid i {
    color: #28a745;
}

.password_requirements ul li i {
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* Success & Error Icons */
.success_icon,
.error_icon {
    margin-bottom: 25px;
}

.icon_circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.5s ease;
}

.icon_circle.success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.icon_circle.success i {
    font-size: 3rem;
    color: #28a745;
}

.icon_circle.error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
}

.icon_circle.error i {
    font-size: 3rem;
    color: #dc3545;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Success Message */
.success_message {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eee;
}

.success_message p {
    margin-bottom: 5px;
}

.success_message p:last-child {
    margin-bottom: 0;
}

/* Alert Styles */

.alert ul {
    margin-top: 5px;
    padding-left: 20px;
}

.alert li {
    font-size: 0.9rem;
}

/* Password Match Message */
.password_match small {
    font-size: 0.75rem;
}

/* Action Buttons */
.action_buttons {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .reset_password_form {
        padding: 35px 30px;
    }

    .reset_password_form h3 {
        font-size: 26px;
    }
}

/* --- CSS extracted from search.php --- */
/* Additional CSS to fix any potential overlap issues */
.product_item_2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product_item_2:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.product_item_2 .product_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
    background: #f8f8f8;
}

.product_item_2 .product_img a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.product_item_2 .product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_item_2:hover .product_img img {
    transform: scale(1.08);
}

/* Badge Styles */
.badge-wrapper .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

/* Action Buttons */
.action-buttons {
    z-index: 15;
}

.action-buttons a {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-buttons a:hover {
    background: var(--colorGreen) !important;
    transform: scale(1.1);
}

.action-buttons a:hover i {
    color: #fff !important;
}

/* Rating Stars */
.rating i {
    margin-right: 1px;
    font-size: 12px;
}

.rating .text-warning {
    color: #f9a61c !important;
}

/* Price */
.price .current-price {
    color: var(--colorGreen) !important;
    font-size: 1.1rem;
}

.price .current-price.text-danger {
    color: #dc3545 !important;
}

/* Product Text */
.product_text .category_name {
    color: #999;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product_text .title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product_text .title:hover {
    color: var(--colorGreen) !important;
}

/* Add to Cart Button */
.product_item_2 .common_btn {
    padding: 8px 15px;
    font-size: 0.85rem;
    width: 100%;
    background: var(--colorGreen);
    transition: all 0.3s ease;
}

.product_item_2 .common_btn:hover {
    background: #0a1e48;
    transform: translateY(-2px);
}

.product_item_2 .common_btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Filter sidebar styles */
.shop_filter_area {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
}

.sidebar_category h3,
.sidebar_price h3,
.sidebar_status h3 {
    font-family: var(--headingFont);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar_category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar_category ul li {
    margin-bottom: 8px;
}

.sidebar_category ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar_category ul li a:hover,
.sidebar_category ul li a.active {
    color: var(--colorGreen);
    background: #f8f9fa;
}

.sidebar_category ul li a span {
    color: #999;
    font-size: 0.8rem;
}

.sidebar_search_info {
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.search_term {
    font-size: 1.1rem;
    margin-top: 8px;
    word-break: break-word;
}

/* Price range slider */
.range_slider {
    margin: 20px 0;
}

/* Mobile filter */
@media (max-width: 991px) {
    .shop_filter_area {
        display: none;
        margin-bottom: 30px;
    }

    .shop_filter_area.show {
        display: block;
    }

    .shop_filter_btn {
        display: block;
        background: var(--colorGreen);
        color: #fff;
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        font-weight: 500;
        transition: background 0.3s ease;
    }

    .shop_filter_btn:hover {
        background: #0a1e48;
    }
}

/* Pagination */
.pagination_area .page-link {
    color: var(--colorBlack);
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination_area .page-link:hover {
    background: var(--colorGreen);
    color: #fff;
    border-color: var(--colorGreen);
}

.pagination_area .active .page-link {
    background: var(--colorGreen) !important;
    border-color: var(--colorGreen);
    color: #fff;
}

.pagination_area .disabled .page-link {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
}

/* Product grid responsive adjustments */
@media (max-width: 768px) {
    .product_page_top_button .row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .product_page_sorting {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .col-6 {
        padding: 0 8px;
    }

    .product_item_2 {
        padding: 10px;
    }

    .product_item_2 .price .current-price {
        font-size: 0.9rem;
    }

    .product_item_2 .common_btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .product_item_2 .title {
        font-size: 0.8rem;
    }

    .rating i {
        font-size: 9px;
    }

    .pagination_area .page-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* --- CSS extracted from shop.php --- */
/* Additional CSS to fix any potential overlap issues */
.product_item_2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product_item_2:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.product_item_2 .product_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
    background: #f8f8f8;
}

.product_item_2 .product_img a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.product_item_2 .product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_item_2:hover .product_img img {
    transform: scale(1.08);
}

/* Badge Styles */
.badge-wrapper .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

/* Action Buttons */
.action-buttons {
    z-index: 15;
}

.action-buttons a {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-buttons a:hover {
    background: var(--colorGreen) !important;
    transform: scale(1.1);
}

.action-buttons a:hover i {
    color: #fff !important;
}

/* Rating Stars */
.rating i {
    margin-right: 1px;
    font-size: 12px;
}

.rating .text-warning {
    color: #f9a61c !important;
}

/* Price */
.price .current-price {
    color: var(--colorGreen) !important;
    font-size: 1.1rem;
}

.price .current-price.text-danger {
    color: #dc3545 !important;
}

/* Product Text */
.product_text .category_name {
    color: #999;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product_text .title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product_text .title:hover {
    color: var(--colorGreen) !important;
}

/* Add to Cart Button */
.product_item_2 .common_btn {
    padding: 8px 15px;
    font-size: 0.85rem;
    width: 100%;
    background: var(--colorGreen);
    transition: all 0.3s ease;
}

.product_item_2 .common_btn:hover {
    background: #0a1e48;
    transform: translateY(-2px);
}

.product_item_2 .common_btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Filter sidebar styles */
.shop_filter_area {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
}

.sidebar_category h3 {
    font-family: var(--headingFont);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar_category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar_category ul li {
    margin-bottom: 8px;
}

.sidebar_category ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar_category ul li a:hover,
.sidebar_category ul li a.active {
    color: var(--colorGreen);
    background: #f8f9fa;
}

.sidebar_category ul li a span {
    color: #999;
    font-size: 0.8rem;
}

/* Mobile filter */
@media (max-width: 991px) {
    .shop_filter_area {
        display: none;
        margin-bottom: 30px;
    }

    .shop_filter_area.show {
        display: block;
    }

    .shop_filter_btn {
        display: block;
        background: var(--colorGreen);
        color: #fff;
        padding: 12px 20px;
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        font-weight: 500;
        transition: background 0.3s ease;
    }

    .shop_filter_btn:hover {
        background: #0a1e48;
    }
}

/* Pagination */
.pagination_area .page-link {
    color: var(--colorBlack);
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination_area .page-link:hover {
    background: var(--colorGreen);
    color: #fff;
    border-color: var(--colorGreen);
}

.pagination_area .active .page-link {
    background: var(--colorGreen) !important;
    border-color: var(--colorGreen);
    color: #fff;
}

.pagination_area .disabled .page-link {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
}

/* Product grid responsive adjustments */
@media (max-width: 768px) {
    .product_page_top_button .row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .product_page_sorting {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .col-6 {
        padding: 0 8px;
    }

    .product_item_2 {
        padding: 10px;
    }

    .product_item_2 .price .current-price {
        font-size: 0.9rem;
    }

    .product_item_2 .common_btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .product_item_2 .title {
        font-size: 0.8rem;
    }

    .rating i {
        font-size: 9px;
    }

    .pagination_area .page-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* --- CSS extracted from sign-in.php --- */
/* Sign In Page Styles */

.sign_in_form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.sign_in_form:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.sign_in_form h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--colorBlack);
    font-family: var(--headingFont);
}

.forgot_row {
    margin-top: 5px;
    margin-bottom: 25px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.forgot_link {
    color: var(--colorGreen);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot_link:hover {
    color: #0a1e48;
    text-decoration: underline;
}

.signup_link {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.signup_link p {
    font-size: 0.95rem;
    color: #666;
}

.signup_link a {
    font-weight: 600;
    transition: all 0.3s ease;
}

.signup_link a:hover {
    text-decoration: underline;
    color: #0a1e48 !important;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.alert-danger {
    background: #fee;
    color: #c33;
    border-left: 4px solid #dc3545;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #28a745;
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid var(--colorGreen);
}

.alert-warning {
    background: #fff3e0;
    color: #ef6c00;
    border-left: 4px solid #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
    .sign_in_form {
        padding: 35px 30px;
    }

    .sign_in_form h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .sign_in_form {
        padding: 25px 20px;
    }

    .sign_in_form h3 {
        font-size: 24px;
    }

    .forgot_row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .input_group input {
        padding: 12px 15px 12px 40px;
        font-size: 0.9rem;
    }

    .input_group i {
        font-size: 0.9rem;
        left: 12px;
    }

    .common_btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* --- CSS extracted from sign-up.php --- */
/* Sign Up Page Styles */

.signup_form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.signup_form:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.signup_form h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--colorBlack);
    font-family: var(--headingFont);
}

.section_subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    border-left: 3px solid var(--colorGreen);
    padding-left: 15px;
    margin-bottom: 20px;
}

.single_input {
    margin-bottom: 20px;
}

.single_input label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--colorBlack);
    display: block;
    font-size: 0.95rem;
}

.single_input label[for="first_name"]:after,
.single_input label[for="last_name"]:after,
.single_input label[for="phone"]:after {
    content: none;
}

.single_input label:after {
    content: '*';
    color: #dc3545;
    margin-left: 3px;
}

/* Password Strength Meter */
.password_strength_meter {
    margin-top: -5px;
}

.password_strength_meter .progress {
    border-radius: 4px;
    overflow: hidden;
    background: #e0e0e0;
}

.password_strength_meter .progress-bar {
    transition: width 0.3s ease;
    border-radius: 4px;
}

.password_strength_meter .progress-bar.bg-danger {
    background: #dc3545;
}

.password_strength_meter .progress-bar.bg-warning {
    background: #ffc107;
}

.password_strength_meter .progress-bar.bg-info {
    background: #17a2b8;
}

.password_strength_meter .progress-bar.bg-success {
    background: #28a745;
}

.password_requirements ul li {
    font-size: 0.85rem;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.password_requirements ul li.valid {
    color: #28a745 !important;
}

.password_requirements ul li.valid i {
    color: #28a745;
}

/* Terms Checkbox */
.terms_checkbox .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.terms_checkbox .form-check-input:checked {
    background-color: var(--colorGreen);
    border-color: var(--colorGreen);
}

.terms_checkbox .form-check-input:focus {
    box-shadow: 0 0 0 2px rgba(227, 9, 98, 0.2);
}

.terms_checkbox .form-check-label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.terms_checkbox a {
    color: var(--colorGreen);
    text-decoration: none;
}

.terms_checkbox a:hover {
    text-decoration: underline;
}

/* Sign In Link */
.signin_link {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.signin_link p {
    font-size: 0.95rem;
    color: #666;
}

.signin_link a {
    font-weight: 600;
    transition: all 0.3s ease;
}

.signin_link a:hover {
    text-decoration: underline;
    color: #0a1e48 !important;
}

/* Benefits List */
.benefits_list {
    border: 1px solid #e9ecef;
    background: #f8f9fa !important;
    border-radius: 16px;
}

.benefits_list h6 {
    font-family: var(--headingFont);
    font-weight: 600;
    color: var(--colorBlack);
}

.benefits_list i {
    width: 20px;
}

/* Alert Styles */

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #28a745;
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid var(--colorGreen);
}

.alert-warning {
    background: #fff3e0;
    color: #ef6c00;
    border-left: 4px solid #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
    .signup_form {
        padding: 30px 25px;
    }

    .signup_form h3 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .signup_form {
        padding: 25px 20px;
    }

    .signup_form h3 {
        font-size: 24px;
    }

    .input_group input {
        padding: 10px 15px 10px 40px;
        font-size: 0.9rem;
    }

    .input_group i {
        font-size: 0.9rem;
        left: 12px;
    }

    .benefits_list {
        padding: 20px !important;
    }
}

/* --- CSS extracted from wishlist.php --- */
/* Wishlist Page Styles - Matching Home Page Theme */
.wishlist_page {
    background: #f8f9fa;
}

/* Wishlist Header */
.wishlist_header {
    background: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.wishlist_title {
    font-family: var(--headingFont);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--colorBlack);
    margin-bottom: 5px;
}

.add_all_btn {
    background: var(--colorGreen) !important;
}

.add_all_btn:hover {
    background: #0a1e48 !important;
}

.continue_shopping_btn {
    background: #6c757d !important;
}

.continue_shopping_btn:hover {
    background: #5a6268 !important;
}

.bg_dark {
    background: #343a40 !important;
}

.bg_dark:hover {
    background: #23272b !important;
}

/* Product Card Styles - Matching Home Page */
.product_item_2 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product_item_2:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.product_item_2 .product_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1/1;
    background: #f8f9fa;
    cursor: pointer;
}

.product_item_2 .product_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product_item_2:hover .product_img img {
    transform: scale(1.08);
}

/* Badge Styles */
.badge-wrapper .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

.badge.bg-primary {
    background: var(--colorGreen) !important;
}

.badge.bg-danger {
    background: #dc3545 !important;
}

/* Action Buttons */
.action-buttons {
    z-index: 15;
}

.action-buttons a,
.action-buttons button {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-buttons a:hover,
.action-buttons button:hover {
    background: var(--colorGreen) !important;
    transform: scale(1.1);
}

.action-buttons a:hover i,
.action-buttons button:hover i {
    color: #fff !important;
}

/* Product Text */
.product_text .category_name a {
    color: #999;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product_text .category_name a:hover {
    color: var(--colorGreen);
}

.product_text .title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product_text .title:hover {
    color: var(--colorGreen) !important;
}

/* Rating Stars */
.rating i {
    margin-right: 1px;
    font-size: 12px;
}

.rating .text-warning {
    color: #f9a61c !important;
}

/* Price */
.price .current-price {
    color: var(--colorGreen) !important;
    font-size: 1.1rem;
}

.price .old_price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.8rem;
}

/* Section Heading for Popular Products */
.section_heading h5 {
    color: var(--colorGreen);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section_heading h3 {
    font-family: var(--headingFont);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--colorBlack);
}

/* Popular Products Suggestion */
.popular_products_suggestion {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #eee;
    margin-top: 40px;
}

/* Empty State */
.empty_wishlist {
    background: #fff;
    border-radius: 16px;
    padding: 60px 30px;
    border: 1px solid #eee;
}

.empty_state_icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Pagination */
.pagination_area .page-link {
    color: var(--colorBlack);
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination_area .page-link:hover {
    background: var(--colorGreen);
    color: #fff;
    border-color: var(--colorGreen);
}

.pagination_area .active .page-link {
    background: var(--colorGreen);
    border-color: var(--colorGreen);
    color: #fff;
}

.pagination_area .disabled .page-link {
    background: #f8f9fa;
    color: #999;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 991px) {
    .wishlist_header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .wishlist_header_actions {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .section_heading h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .wishlist_header_actions {
        flex-direction: column;
        gap: 10px;
    }

    .wishlist_header_actions .common_btn {
        width: 100%;
        margin: 0 !important;
    }

    .empty_wishlist_actions .common_btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }

    .popular_products_suggestion {
        padding: 30px 20px;
    }

    .section_heading h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .wishlist_title {
        font-size: 1.2rem;
    }

    .empty_state_icon i {
        font-size: 3rem;
    }

    .empty_wishlist h2 {
        font-size: 1.2rem;
    }

    .empty_wishlist p {
        font-size: 0.85rem;
    }

    .popular_products_suggestion {
        padding: 20px 15px;
    }

    .section_heading h5 {
        font-size: 0.8rem;
    }

    .section_heading h3 {
        font-size: 1.1rem;
    }

    .pagination_area .page-link {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}

/* Touch Device Support */
@media (hover: none) and (pointer: coarse) {

    .action-buttons a,
    .action-buttons button {
        min-width: 44px;
        min-height: 44px;
    }

    .add_all_btn,
    .continue_shopping_btn {
        min-height: 44px;
    }
}

/* Smooth Removal Animation */
.wishlist-item-card {
    transition: all 0.3s ease;
}

/* Added to Cart Highlight */
.border-success {
    border-color: #28a745 !important;
    transition: all 0.3s ease;
}

/* ========================================================== */
/* --- CSS extracted from Dashboard Pages --- */
/* ========================================================== */

/* --- CSS extracted from dashboard/addresses.php --- */
.address_card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.address_card.default {
    border-color: #28a745;
    background: #f0fff4;
}

.address_card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.address_card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.address_type {
    font-weight: 600;
    color: var(--colorGreen);
}

.default_badge {
    background: #28a745;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
}

.address_actions {
    display: flex;
    gap: 5px;
}

.address_card_body {
    color: #6c757d;
    font-size: 14px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.form-label:after {
    content: '*';
    color: #dc3545;
    margin-left: 3px;
}

.form-label[for]:not([for*="address_line2"]):not([for*="is_default"]):after {
    display: inline-block;
}

.add_address_form {
    background: #f8f9fa;
}

/* --- CSS extracted from dashboard/change-password.php --- */
.password_form {
    max-width: 600px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    display: block;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.form-control:focus {
    outline: none;
    border-color: var(--colorGreen);
    box-shadow: 0 0 0 3px rgba(10, 105, 216, 0.1);
}

/* --- CSS extracted from dashboard/order-details.php --- */
.order_details_card {
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
}

.p_30 {
    padding: 30px;
}

.mb_15 {
    margin-bottom: 15px;
}

.table thead th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

/* --- CSS extracted from dashboard/orders.php --- */
.filter_buttons {
    margin-bottom: 15px;
}

.filter_btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.filter_btn:hover,
.filter_btn.active {
    background: var(--colorGreen);
    color: #fff;
    border-color: var(--colorGreen);
}

.empty_state {
    padding: 60px 20px;
}

/* --- CSS extracted from dashboard/overview.php --- */
.dashboard_overview_item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.dashboard_overview_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard_overview_item .icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-right: 20px;
}

.dashboard_overview_item.blue .icon {
    background: var(--colorGreen);
}

.dashboard_overview_item.green .icon {
    background: #28a745;
}

.dashboard_overview_item.orange .icon {
    background: #fd7e14;
}

.dashboard_overview_item.purple .icon {
    background: #6f42c1;
}

.dashboard_overview_item h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.dashboard_overview_item h3 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
    margin-top: 5px;
}

.view_all_link {
    color: var(--colorGreen);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.view_all_link:hover {
    color: #0854b0;
    text-decoration: underline;
}

.wishlist_mini_card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
}

.wishlist_mini_card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.wishlist_mini_img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.wishlist_mini_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.wishlist_mini_info {
    flex: 1;
}

.wishlist_mini_title {
    font-size: 14px;
    margin-bottom: 5px;
}

.wishlist_mini_title a {
    color: #333;
    text-decoration: none;
}

.wishlist_mini_title a:hover {
    color: var(--colorGreen);
}

.wishlist_mini_price {
    font-weight: 600;
    color: var(--colorGreen);
    font-size: 14px;
    margin-bottom: 5px;
}

.small_add_btn {
    display: inline-block;
    padding: 3px 10px;
    background: var(--colorGreen);
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.small_add_btn:hover {
    background: #333333;
    color: #fff;
}

@media (max-width: 768px) {
    .dashboard_overview_item {
        padding: 15px;
    }

    .dashboard_overview_item .icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 10px;
    }

    .dashboard_overview_item h3 {
        font-size: 18px;
    }
}

/* --- CSS extracted from dashboard/profile.php --- */
.profile_avatar_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
}

.profile_avatar_wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--colorGreen);
    box-shadow: 0 5px 20px rgba(10, 105, 216, 0.2);
}

.profile_avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar_actions .btn {
    padding: 8px 15px;
    font-size: 13px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    display: block;
}

.form-label:after {
    content: '*';
    color: #dc3545;
    margin-left: 3px;
}

.form-label[for]:not([for*="phone"]):after {
    display: inline-block;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.form-control:focus {
    outline: none;
    border-color: var(--colorGreen);
    box-shadow: 0 0 0 3px rgba(10, 105, 216, 0.1);
}

.form-control[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.card {
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fff;
}

.p_30 {
    padding: 30px;
}

.mb_20 {
    margin-bottom: 20px;
}

/* --- CSS extracted from dashboard/wishlist.php --- */
.wishlist_card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.wishlist_card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.wishlist_card_img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f8f9fa;
}

.wishlist_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wishlist_card:hover .wishlist_card_img img {
    transform: scale(1.1);
}

.discount_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.remove_form {
    position: absolute;
    top: 10px;
    right: 10px;
}

.remove_btn {
    width: 32px;
    height: 32px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.remove_btn:hover {
    background: #dc3545;
    color: #fff;
    transform: rotate(90deg);
}

.wishlist_card_body {
    padding: 15px;
}

.wishlist_title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}

.wishlist_title a {
    color: #333;
    text-decoration: none;
}

.wishlist_title a:hover {
    color: var(--colorGreen);
}

.wishlist_price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.current_price {
    font-size: 18px;
    font-weight: 700;
    color: var(--colorGreen);
}

.old_price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.stock_status {
    font-size: 13px;
}

.add_to_cart_btn {
    display: block;
    width: 100%;
    padding: 8px;
    background: var(--colorGreen);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.add_to_cart_btn:hover {
    background: #0854b0;
    color: #fff;
}

.add_to_cart_btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}