/* :root {
    --main-primary: #3BB77E;
    --main-primary-border: #29A56C;
    --main-primary-light: #DEF9EC;
    --main-primary-mouse-over: #FDC040;
} */

#category-slider-columns .card-2 figure img {
    max-width: 200px !important;
}

.header-style-1 .search-style-2 form input {
    width: 100%;
    max-width: unset;
}

#cart-items-list {
    height: 213px;
    overflow-y: auto;
}

.product-extra-link2 a.active {
    background-color: var(--main-primary);
    color: #fff;
}

.wish_listed {
    color: red;
}

body button.hover-bg-unset:hover {
    background-color: unset !important;
}

@media only screen and (max-width: 600px) {
    .carausel-4-columns {
        margin: 25px;
    }
}
.pagination-area .page-item {
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-area .page-link,
.pagination-area .page-item span {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f3f4;
    color: #666;
    font-weight: 700;
    font-size: 18px;
    font-family: "Quicksand", sans-serif;
    text-decoration: none;
    border-radius: 50%;
    line-height: 1;
    padding: 0;
    box-shadow: none;
    outline: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.pagination-area .page-item.active .page-link,
.pagination-area .page-item.active span {
    background-color: #3bb77e;
    color: white;
}
.pagination-area .page-item:hover .page-link {
    background-color: #3bb77e;
    color: white;
}
.pagination-area .page-link.dot {
    background-color: transparent;
    color: #7e7e7e;
    letter-spacing: 2px;
}
.pagination-area .page-item:first-child .page-link,
.pagination-area .page-item:last-child .page-link {
    font-size: 30px;
    padding: 0;
    line-height: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 7px;
}
.view-icon {
    position: relative;
    top: 3px !important;
}

.product-cart-wrap .product-content-wrap .product-price span {
    font-size: 15px;
}

/* General table layout */
.cart-table th,
.cart-table td {
    vertical-align: middle;
}

.cart-table th:nth-child(4),
.cart-table td:nth-child(4) {
    width: 130px;
    text-align: center;
}

.cart-table th:nth-child(5),
.cart-table td:nth-child(5) {
    width: 120px;
    text-align: center;
}

.cart-table th:nth-child(6),
.cart-table td:nth-child(6) {
    width: 130px;
    text-align: center;
}

/* Quantity layout */
.cart-table .detail-qty {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.cart-table .detail-qty input.qty-val {
    width: 45px;
    height: 35px;
    border: none;
    outline: none;
    background: transparent;
    text-align: left;
    padding-left: 6px;
    margin-right: 8px;
    font-size: 15px;
    color: #000;
}

.cart-table .detail-qty a.qty-up,
.cart-table .detail-qty a.qty-down {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #c8102e; /* or use your primary brand color */
}

/* Optional hover effect on qty arrows */
.cart-table .detail-qty a.qty-up:hover,
.cart-table .detail-qty a.qty-down:hover {
    color: #000;
    cursor: pointer;
}

/* Image + name spacing */
.product-thumbnail {
    padding-right: 15px;
    width: 90px;
    min-width: 90px;
}

.product-thumbnail img {
    max-width: 100%;
    height: auto;
}

.product-name {
    word-break: break-word;
    max-width: 350px;
    display: inline-block;
}

.product-des h6 a {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.product-des p {
    margin-bottom: 3px;
    font-size: 13px;
    color: #777;
}

.cart-table td.product-des {
    padding-left: 10px;
}

.shopping-summery table > :not(caption) > * > * {
    padding: 30px 0;
}
/* Existing styles remain unchanged unless specified */

/* Quantity layout */
.cart-table .detail-qty {
    display: flex;
    align-items: center;
    justify-content: center; /* Changed from flex-start to center */
    gap: 5px;
    width: 100%; /* Ensure it takes full width for centering */
    margin: 0 auto; /* Center the container horizontally */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .product-cart-wrap .product-content-wrap .product-price span {
        font-size: 12px;
    }

    .cart-table th,
    .cart-table td {
        display: block;
        width: 100% !important;
        text-align: left;
        padding: 10px;
    }

    .cart-table th:nth-child(n),
    .cart-table td:nth-child(n) {
        width: 100% !important;
    }

    .cart-table .detail-qty {
        justify-content: center;
        gap: 3px;
        text-align: center;
        display: flex; /* Ensure flex is explicitly set */
        align-items: center; /* Vertically center items */
        margin: 0 auto; /* Center the container */
        width: fit-content; /* Adjust width to content */
    }

    .cart-table .detail-qty input.qty-val {
        width: 40px;
        height: 30px;
        font-size: 12px;
        padding-left: 4px;
        margin-right: 4px;
        text-align: center;
        display: inline-block; /* Ensure it behaves as an inline element within flex */
    }

    .cart-table .detail-qty a.qty-up,
    .cart-table .detail-qty a.qty-down {
        width: 20px;
        height: 20px;
        font-size: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Other mobile styles remain unchanged */
    .product-thumbnail {
        padding-right: 10px;
        width: 70px;
        min-width: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-thumbnail img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .product-name {
        max-width: 100%;
        font-size: 14px;
        text-align: center;
    }

    .product-des p {
        font-size: 11px;
        text-align: center;
    }

    .cart-table td.product-des {
        padding-left: 5px;
    }

    .shopping-summery table > :not(caption) > * > * {
        padding: 15px 0;
    }

    .cart-action .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .cart-totals {
        margin-left: 0;
        padding: 15px;
    }

    .logo.logo-width-1 a img {
        height: 60px;
    }
}

@media only screen and (max-width: 600px) {
    .shopping-summery table tbody tr img {
        max-width: 180px;
        margin-right: 100px;
    }
}

.product-cart-wrap .product-content-wrap .product-price span.old-price {
    margin: 0px;
}

.btn-google {
    font-size: 16px;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 10px;
}
.banner-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.banner-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 12px;
}

.banner-text {
    position: relative;
    z-index: 2;
    max-width: 80%;
    color: #253d4e;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-text h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #253d4e;
}

.banner-text .btn {
    background-color: #3bb77e;
    color: white;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    width: fit-content;
    transition: background-color 0.3s;
}

.banner-text .btn:hover {
    background-color: #29a56c;
}

.banners .col-lg-4 {
    margin-bottom: 20px;
}

.variation-text {
    text-transform: capitalize;
    font-size: small;
    margin: 0;
    line-height: 1;
    margin-top: 0.25rem;
}

.form-subcriber input {
    margin-right: 10px;
}
.product-thumbnail img {
    margin-right: 15px;
}

.shopping-summery table > :not(caption) > * > * {
    padding: 40px 0;
}
.dashboard-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-menu .nav-link i {
    font-size: 18px;
    line-height: 1;
}

.text-brand {
    margin-right: 4px;
}

.logo.logo-width-1 {
    margin-right: 30px;
}

.product-des p {
    margin-bottom: -4px;
    font-size: 13px;
}
.custome-radio input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.custome-radio label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 20px;
}
.custome-radio label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-radius: 50%;
    background: #fff;
}
.custome-radio input[type="radio"]:checked + label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.table-wishlist td.product-des {
    padding-left: 20px;
}

.table-wishlist th,
.table-wishlist td {
    vertical-align: middle;
}
.footer-list img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    filter: grayscale(100%) brightness(0%) sepia(100%) hue-rotate(180deg);
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: inline-block;
}
ul li {
    display: block;
    margin-right: 20px;
    line-height: 1.5;
}
.header-info-right ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header-info-right li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.price-view-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 0 5px;
}
/* Ensures the price and view button are aligned horizontally */
.product-card-bottom {
    display: flex;
    justify-content: space-between; /* Ensures space between price and view button */
    align-items: center; /* Vertically align items in the center */
    display: inline;
}

/* KWD and Price Container */
.product-price {
    display: flex;
    align-items: center; /* Ensures KWD and price are aligned horizontally */
    font-size: 18px;
    font-weight: bold;
    color: #333;
    flex-direction: column;
    line-height: 1.2;
}
.product-price .currency {
    font-size: 13px;
    color: #2c9c76;
}

/* KWD label */
.product-price .kwd {
    margin-right: 5px; /* Adds space between KWD and price */
}

/* New Price Styling */
.new-price {
    color: #00aaff; /* Blue color for new price */
    font-size: 18px;
}

/* Old Price (strikethrough) */
.old-price {
    color: #999999; /* Gray color for old price */
    text-decoration: line-through;
    font-size: 16px;
    margin-left: 10px; /* Adds space between new price and old price */
}

/* View Button Styling */
.add-cart a.view-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #00aaff; /* Greenish-blue background for the button */
    color: white;
    width: 120px; /* Fixed width for consistent button size */
    text-align: center;
    margin-left: 10px; /* Adds space between the price and button */
}

/* Hover effect for the View button */
.add-cart a.view-button:hover {
    background-color: #0088cc; /* Darker color on hover */
}

/* Responsive Design - Stack price and button vertically on smaller screens */
@media (max-width: 768px) {
    .product-card-bottom {
        flex-direction: column; /* Stack price and button vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .add-cart a.view-button {
        width: auto; /* Make button width responsive */
        margin-top: 10px; /* Adds spacing when stacked */
    }
}
.view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.view-btn i {
    line-height: 1;
    position: relative;
    top: 2px; /* Tweak this value as needed for fine vertical adjustment */
}
.product-page {
    margin: 0 6px 15px 0;
    background-color: #fff;
    border: 2px solid var(--main-primary);
    color: var(--main-primary);
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    padding: 10px;
    max-width: 90px;
    max-height: 40px;
}

.product-page input.qty-val {
    width: 38px;
    height: 30px;
    font-size: 16px;
    text-align: center;
    pointer-events: none;
    background-color: #fff;
    margin: 0 2px;
}

.product-page a.qty-up,
.product-page a.qty-down {
    width: 20px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4caf81;
    user-select: none;
}

.product-page a.qty-up i,
.product-page a.qty-down i {
    font-size: 16px;
    margin-bottom: 1px;
    justify-content: center;
}

.centered-price {
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.centered-price h4 {
    margin: 0 !important;
}
.product-thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.product-thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.product-des {
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    color: #333;
}

.user-action-btn {
    min-width: 150px;
    height: 45px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 10px;
}

@media (max-width: 576px) {
    .user-action-btn {
        width: 100%;
        margin: 5px 0 0 0;
    }
}

/* .action-btn:hover {
    background-color: #2e7d5e !important;
} */
.view-arrow {
    margin-top: 2px;
}
.proceed-arrow {
    position: relative;
    top: 1px; /* Adjust as needed */
}
#cart-items-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 15px;
}

.cart-modal-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 5px;
}

.shopping-cart-title a {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.shopping-cart-title p {
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
}

.card-login {
    padding: 7px !important;
    margin-left: 0px;
}
.header-action-2 .header-action-icon-2 span.lable {
    font-size: 16px;
    margin: 10px 0 0 10px;
}
.header-action-2 .header-action-icon-2 {
    position: relative;
    display: flex;
    padding: 0px 6px;
}
