:root {
    /* colors */
    --footer-bg: #f9faf9;
    --footer-text: #333;
    --footer-muted: #666;
    --primary: #7fad39;

    --secondary: #252525;
    --text-color: #1c1c1c;
    --top-header-bg: #f6f6f6;

    --font-size-1: clamp(10px, 1.5vw, 12px);
    --font-size-2: clamp(12px, 1.8vw, 14px);
    --font-size-3: clamp(14px, 2vw, 16px);
    --font-size-4: clamp(15px, 2.2vw, 18px);
    --font-size-5: clamp(18px, 2.5vw, 22px);
    --font-size-6: clamp(22px, 3vw, 28px);
    --font-size-7: clamp(28px, 4vw, 36px);
    --font-size-8: clamp(36px, 5vw, 46px);
}
.custom-card {
    border-color: var(--primary);
}

* {
    margin: 0;
    padding: 0;
}
ul {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: "cairo"; /*a name to be used later*/
    src: url("../../fonts/Roboto/Roboto-Regular.ttf"); /*URL to font*/
}
@font-face {
    font-family: "bangla";
    src: url("../../fonts/Noto_Serif_Bengali/NotoSerifBengali-Regular.ttf");
}

body {
    font-family: "cairo";
    font-weight: 400;
    line-height: 26px;
    font-size: 16px;
    scroll-behavior: smooth;
}
.container-custom {
    max-width: 90%;
    margin: 0 auto;
}

.top-header {
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
}

.top-header i {
    /* color: #7fad39; */
    font-size: 14px;
}

.top-header a {
    color: #333;
    transition: color 0.3s ease;
}

/* .top-header a:hover {
    color: #7fad39;
} */

.top-header .email a {
    font-weight: 500;
}

.top-header .free-shipping {
    color: #666;
    font-weight: 500;
}

.top-header .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-header .social-icons a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.top-header .user-login i {
    color: #7fad39;
}

/* .header-content {
    display: grid;
    padding: 15px 0;
    grid-template-columns: 2fr 8fr;
    grid-template-rows: 60px;
    align-items: center;
} */

/*
.bottom-header .header-menu {
    padding: 24px 0;
}
.bottom-header .header-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}
.bottom-header .header-menu ul li a {
    font-size: var(--font-size-2);
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all, 0.3s;
    padding: 5px 0;
    display: block;
    text-decoration: none;
}
.bottom-header .header-menu ul li.active a {
    color: var(--primary);
}
.bottom-header .header-menu ul li:hover a {
    color: var(--primary);
}
.header-cart ul {
    display: flex;
    align-items: center;
    font-size: var(--font-size-4);
    gap: 20px;
}
.header-cart ul li {
    list-style: none;
}
.header-cart ul i {
    color: black;
    font-size: var(--font-size-5);
}
.header-cart a {
    position: relative;
}
.header-cart a span {
    height: 20px;
    width: 20px;
    background: red;
    font-size: var(--font-size-1);
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-cart-price {
    font-size: var(--font-size-3);
    color: #00d500;
}
.header-cart-price span {
    font-weight: 700;
    color: var(--text-color);
    font-size: var(--font-size-4);
} */

:root {
    --brand-color: #7fad39;
    --light-gray: #f6f7f8;
}

.bottom-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}
.bottom-header .header-content {
    display: grid;
    grid-template-columns: 2fr 8fr;
    align-items: center;
}
.bottom-header .header-content .header-right {
    display: grid;
    grid-template-columns: 8fr 2fr;
    gap: 20px;
}

.bottom-header .logo-img {
    height: 50px;
    object-fit: contain;
}

/* Search Box */
.bottom-header .modern-search {
    border: 1.5px solid #ddd;
    border-radius: 50px;
    padding: 8px 14px;
    width: 100%;
    transition: all 0.3s ease;
    outline: none;
}

.bottom-header .modern-search:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 6px rgba(127, 173, 57, 0.3);
}

/* Search button */
.bottom-header .btn-search {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: var(--brand-color);
    cursor: pointer;
    font-size: 20px;
    transition: color 0.3s ease;
}

.bottom-header .btn-search:hover {
    color: #5e8c2c;
}

/* Wishlist & Cart */
.bottom-header .header-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bottom-header .header-right .header-right-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-header .icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bottom-header .icon-btn:hover {
    background: var(--brand-color);
    color: #fff;
    transform: scale(1.05);
}

/* Badge */
.bottom-header .icon-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--brand-color);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 5px;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    text-align: center;
    display: flex;
    box-shadow: 0 0 4px rgba(127, 173, 57, 0.4);
    align-items: center;
    justify-content: center;
}

/* Total Amount */
.bottom-header .cart-total {
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .bottom-header .header-content {
        flex-direction: column;
        gap: 8px;
    }
    .bottom-header .modern-search {
        width: 100%;
    }
}

.hero {
    margin: 20px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 8fr;
}
.hero-content .category {
    width: 90%;
    max-height: 465px;
    height: 100%;
    border: 1px solid #7fad39;
}

.hero .all-category {
    background: var(--primary);
    position: relative;
    padding: 10px 25px 10px 20px;
    cursor: pointer;
    height: 50px;
    display: flex;
    align-items: center;
}

.hero .category ul {
    height: calc(100% - 50px);
}
.hero .category ul li {
    list-style: none;
    width: 100%;
}
.hero .category ul li a {
    font-size: var(--font-size-2);
    color: var(--text-color);
    line-height: 35px;
    text-decoration: none;
}
.hero .all-category i {
    font-size: var(--font-size-3);
    color: #ffffff;
    margin-right: 10px;
}
.hero .all-category span {
    font-size: var(--font-size-2);
    font-weight: 700;
    color: #ffffff;
}

/* .search-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    width: 100%;
    height: 60px;
    border: 1px solid var(--primary);
}
.search-form .text {
    width: 20%;
    font-size: var(--font-size-4);
    color: var(--text-color);
    font-weight: 700;
    padding-left: 18px;
    position: relative;
}
.search-form .text::after {
    content: "";
    width: 1px;
    height: 20px;
    background: #ccc;
    margin: 0 25px;
    position: absolute;
}
.search-form input {
    width: 100%;
    border: none;
    height: 100%;
    font-size: var(--font-size-4);
    color: #b2b2b2;
    padding-left: 20px;
}
.search-form input:focus {
    outline: none;
}
.search-form button {
    font-size: var(--font-size-2);
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    padding: 16px 50px 16px;
    background: var(--primary);
    border: none;
} */
.top-hero .phone {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}
.top-hero marquee {
    font-size: var(--font-size-3);
    color: var(--text-color);
    height: 100%;
}

.top-hero .phone .phone-icon {
    font-size: var(--font-size-4);
    color: var(--primary);
    background: #f5f5f5;
    text-align: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
}
.top-hero .phone .phone-text h5 {
    color: var(--text-color);
    font-weight: 700;
    line-height: 0px;
    font-size: var(--font-size-3);
}
.top-hero .phone .phone-text span {
    font-size: var(--font-size-2);
    color: #6f6f6f;
}
.big-hero .top-hero {
    display: grid;
    align-items: center;
    grid-template-columns: 8fr 2fr;
    margin-bottom: 15px;
    grid-template-rows: 50px;
    gap: 25px;
}
.big-hero .bottom-hero .image-bg {
    height: 400px;
    display: flex;
    align-items: center;
    width: 100% !important;
    background-repeat: no-repeat !important;
}

.image-bg-text span {
    font-size: var(--font-size-2);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary);
}
.image-bg-text h2 {
    font-size: var(--font-size-8);
    color: var(--text-color);
    line-height: 52px;
    font-weight: 700;
    margin: 10px 0;
}
.image-bg-text p {
    font-size: var(--font-size-3);
    color: #6f6f6f;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 15px 0;
}
.image-bg-text a {
    display: inline-block;
    font-size: var(--font-size-2);
    padding: 10px 28px 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--primary);
    letter-spacing: 2px;
    text-decoration: none;
}

.category-slider .image {
    /* height: 270px; */
    position: relative;
}
.category-slider .image img {
    width: 100%;
    /* height: 270px; */
    height: 100%;
    object-fit: cover;
}
.category-slider .title {
    position: absolute;
    left: 10%;
    width: 80%;
    bottom: 10%;
    text-align: center;
}
.category-slider .title {
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 0 5px;
    background: #ffffff;
    display: block;
    text-decoration: none;
    font-size: var(--font-size-2);
}
.view-all-category {
    text-align: center;
    margin-bottom: 30px;
}
.section-title h2 {
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    margin-bottom: 25px;
    /* text-align: center; */
    font-size: var(--font-size-6);
    display: inline-block;
}
.section-title h2:after {
    position: absolute;
    left: 0;
    bottom: -8px;
    height: 4px;
    background: var(--primary);
    content: "";
    margin: 0 auto;
    width: 100%;
}
.category-slider .section-title h2:after {
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 4px;
    width: 100%;
    background: var(--primary);
    content: "";
    margin: 0 auto;
}

.featured {
    padding: 40px 0;
}
.featured-list {
    text-align: center;
    margin-bottom: 50px;
}

.featured-list ul li {
    list-style: none;
    font-size: var(--font-size-4);
    color: var(--text-color);
    display: inline-block;
    margin-right: 25px;
    position: relative;
    cursor: pointer;
}
.featured-list ul li::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    content: "";
    opacity: 0;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-top: 10px; */
    width: 100%;
    gap: 3px;
}
.product-btn .site-btn {
    display: inline-block;
    padding: 5px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    font-size: var(--font-size-2);
    border: none;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.product-btn .buy {
    background: var(--primary);
}

.product-btn .cart {
    background: var(--secondary);
}

.product-btn .buy:hover {
    background: color-mix(in srgb, var(--primary) 85%, white 15%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-btn .cart:hover {
    background: color-mix(in srgb, var(--secondary) 85%, white 15%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-btn .buy:active,
.product-btn .cart:active {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.stock {
    font-weight: 700;
    font-size: var(--font-size-3);
    text-transform: uppercase;
    color: #00d500;
    margin-left: 10px;
}
.stock-out {
    color: red;
    font-weight: 700;
    font-size: var(--font-size-3);
    text-transform: uppercase;
    margin-left: 10px;
}

.breadcrumb-section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.breadcrumb-text h2 {
    font-size: var(--font-size-8);
    color: #ffffff;
    font-weight: 700;
}

.breadcrumb-option a {
    display: inline-block;
    font-size: var(--font-size-3);
    color: #ffffff;
    font-weight: 700;
    margin-right: 20px;
    position: relative;
    text-decoration: none;
}
.product-details {
    padding-bottom: 50px;
}
.breadcrumb-option a::after {
    position: absolute;
    right: -12px;
    top: 13px;
    height: 1px;
    width: 10px;
    background: #ffffff;
    content: "";
}
.breadcrumb-option span {
    display: inline-block;
    font-size: var(--font-size-3);
    color: #ffffff;
}

.big-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.big-image {
    position: relative;
}
.small-image {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}
.small-image img {
    width: 15%;
    height: 100px;
    object-fit: contain;
}

.banner {
    margin-bottom: 50px;
}
.banner .image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.latest {
    padding-top: 80px;
    padding-bottom: 0;
}
.latest .title h4 {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 45px;
    font-size: var(--font-size-5);
}
.latest .slider-item {
    margin-bottom: 30px;
}
.latest .slider-item a {
    display: flex;
    gap: 30px;
    text-decoration: none;
}
.latest .slider-item .text h6 {
    color: var(--text-color);
}
.latest .slider-item .text span {
    font-size: var(--font-size-4);
    display: block;
    color: var(--text-color);
    font-weight: 700;
}

.blog {
    padding-top: 50px;
    padding-bottom: 50px;
}
.blog-item .image img {
    max-width: 100%;
}
.blog-item .text ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
}
.blog-item .text ul li {
    list-style: none;
    font-size: var(--font-size-3);
    color: #b2b2b2;
}
.blog-item .text a {
    font-size: var(--font-size-4);
    color: var(--text-color);
    font-weight: 700;
    text-decoration: none;
}
.blog-item .text p {
    color: #6f6f6f;
}
/* .footer {
    background: #f3f6fa;
    padding-top: 70px;
    padding-bottom: 0;
}
.footer ul li {
    list-style: none;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-details li {
    font-size: var(--font-size-3);
    color: var(--text-color);
    line-height: 36px;
}

.footer-links li a {
    color: var(--text-color);
    font-size: var(--font-size-2);
    line-height: 32px;
    text-decoration: none;
}
.footer-links h6 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-socials h6 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 10px;
}
.footer-socials p {
    font-size: var(--font-size-2);
    color: var(--text-color);
    margin-bottom: 30px;
}
.footer-socials form input {
    width: 60%;
    font-size: var(--font-size-3);
    padding-left: 20px;
    color: var(--text-color);
    height: 44px;
    border: 1px solid var(--primary);
}
.footer-socials form input:focus {
    outline: none;
}
.footer-socials form button {
    font-size: var(--font-size-2);
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    padding: 10px 20px 8px;
    background: var(--primary);
    border: none;
    margin-left: -5px;
}
.footer-social-icon {
    margin-top: 30px;
}
.footer-social-icon a {
    display: inline-block;
    height: 41px;
    width: 41px;
    font-size: var(--font-size-3);
    color: #404040;
    border: 1px solid #ededed;
    border-radius: 50%;
    line-height: 38px;
    text-align: center;
    background: #ffffff;
    -webkit-transition: all, 0.3s;
    -moz-transition: all, 0.3s;
    -ms-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
    margin-right: 10px;
}
.footer-social-icon a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: #ffffff;
}

.copyright p {
    color: #6f6f6f;
} */

.copyright {
    border-top: 1px solid #ebebeb;
    padding: 15px 0;
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.view-all-category a {
    display: inline-block;
    font-size: var(--font-size-2);
    color: #ffffff;
    font-weight: 700;
    background: var(--primary);
    padding: 10px 20px 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.active {
    border: none;
}

.hamburger-menu {
    display: none;
}
.mobile-menu {
    display: none;
}
.active > .page-link,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
}
.page-link {
    color: var(--primary);
}

.featured-item-text h6 a:hover {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
}
.cart-section {
    padding: 50px 0;
}
.cart-section .card-header {
    color: var(--text-color);
    font-weight: 700;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 25px;
    padding: 20px 20px;
}
.your-order {
    background: #f5f5f5;
    padding: 40px;
    padding-top: 30px;
}
.your-order .order-title {
    color: var(--text-color);
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
    margin-bottom: 0px;
}

.order-products .product {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: var(--font-size-4);
    color: var(--text-color);
    font-weight: 700;
}
.order-products ul {
    font-size: var(--font-size-4);
    list-style: none;
}
.order-products ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-3);
    color: var(--text-color);
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
}

.order-products ul .tt span {
    font-weight: 700;
}

.order-subtotal {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: var(--font-size-4);
    color: var(--text-color);
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
}
.order-shipping {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: var(--font-size-4);
    color: var(--text-color);
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
}
.order-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: var(--font-size-4);
    color: var(--text-color);
    font-weight: 700;
    border-bottom: 1px solid #e1e1e1;
}
.order-total span {
    color: #dd2222;
}
.order-place {
    margin-top: 20px;
}
.order-place button {
    display: inline-block;
    font-size: var(--font-size-2);
    padding: 10px 20px 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--primary);
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}
.order-place button:hover {
    background: #68912c;
}

.minus:hover,
.plus:hover {
    cursor: pointer;
}

.qty-controls a {
    text-decoration: none;
    color: #333;
    font-size: var(--font-size-2);
    padding: 0 5px;
}

.qty-controls input {
    width: 40%;
    text-align: center;
    border: 1px solid #ccc;
}
.qty-controls input:focus {
    outline: none;
}
.qty-controls i {
    font-size: var(--font-size-1);
    color: #333;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.order-products ul .tt span:nth-child(1) {
    width: 5%;
}
.order-products ul .pp .product-info {
    width: 70%;
    text-align: left;
}
.order-products ul .tt span:nth-child(2) {
    width: 70%;
    text-align: left;
}
.order-products ul .pp .product-qty {
    width: 25%;
    text-align: center;
}
.order-products ul .tt span:nth-child(3) {
    width: 15%;
    text-align: center;
}
.order-products ul .pp span:nth-child(3) {
    width: 25%;
    text-align: center;
}
.order-products ul .tt span:nth-child(4) {
    width: 10%;
    text-align: end;
}
.order-products ul .pp span:nth-child(4) {
    width: 10%;
    text-align: right;
}

.attribute_item {
    display: flex;
    gap: 15px;
}
.image {
    position: relative;
}

.small-image .owl-nav {
    position: absolute;
    left: -2%;
    z-index: 54;
    bottom: 6%;
    display: flex;
    width: 104%;
    justify-content: space-between;
}

.small-image button.owl-prev,
.small-image button.owl-next {
    font-size: 35px !important;
    color: #8bc34a !important;
}
.small-image-active {
    border: 1px solid var(--primary);
}

.big-image .owl-prev {
    position: absolute;
    top: 45%;
    left: 0;
    overflow: hidden;
}
.big-image .owl-next {
    position: absolute;
    top: 45%;
    right: 0;
    overflow: hidden;
}
.big-image .owl-prev span,
.big-image .owl-next span {
    font-size: 60px !important;
    color: #c0c0c0 !important;
}
.owl-prev:hover span {
    background: none !important;
    color: black !important;
}
.owl-next:hover span {
    background: none !important;
    color: black !important;
}
button.owl-prev:hover,
button.owl-next:hover {
    background: none !important;
}

.form-check-input:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.form-check-input:focus {
    outline: none !important;
    border-color: none !important;
    box-shadow: none !important;
}
.featured-item-text h6 {
    height: 54px;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 24px;
    padding: 7px 0px;
}

.del {
    color: #9c9c9c;
    font-weight: 700;
    text-decoration: line-through;
    margin: 0 5px;
}

.featured .section-title h2:after {
    /* width: 100%; */
}
.product-btn form {
    width: 100%;
}

.customer-info .form-group {
    font-weight: bold;
    font-size: var(--font-size-3);
}

.profile-card .card-body {
    padding: 20px !important;
}
.profile-card .list-group li {
    padding: 10px !important;
    margin-bottom: 10px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s;
}
.profile-card .list-group li:hover {
    background: #ffffff;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.profile-card .list-group li:hover a {
    color: var(--primary);
}
.profile-card .list-group a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}
.order-card .card {
    margin-bottom: 20px;
    background-color: var(--primary);
    border: none;
}

.customer-active {
    background: #ffffff !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    font-weight: 700;
}
.custom-button {
    background: var(--primary);
    color: #ffffff;
}
.custom-button:hover {
    background: var(--secondary);
    color: #ffffff;
}
.customer-login .card-header {
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    border: none;
}
.copyright-text p {
    margin: 0;
}

.your-order .product-quantity input {
    border: none;
    width: 30px;
    text-align: center;
    background: #f5f5f5;
    color: #6f6f6f;
}
.your-order .product-quantity {
    display: flex;
    text-align: center;
    margin-bottom: 0px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #6f6f6f;
    font-size: var(--font-size-4);
}

.subnav {
    position: relative;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.subnav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.stock_in {
    width: 70px;
    height: 70px;
    overflow: hidden;
    position: absolute;
}
.stock_in::before,
.stock_in::after {
    position: absolute;
    z-index: -1;
    display: block;
    border: 3px solid #00d500;
}
.stock_in span {
    position: absolute;
    display: block;
    width: 130px;
    padding: 6px 0;
    background-color: #00d500;
    color: #fff;
    font:
        700 10px/1 "Lato",
        sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-align: center;
}

.stock_in-top-left {
    top: -2px;
    left: -2px;
    z-index: 1;
}
.stock_in-top-left::before,
.stock_in-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}
.stock_in-top-left::before {
    top: -1px;
    right: 71px;
}
.stock_in-top-left::after {
    bottom: 71px;
    left: -1px;
}
.stock_in-top-left span {
    right: -20px;
    top: 16px;
    transform: rotate(-45deg);
}

.stock_out {
    width: 70px;
    height: 70px;
    overflow: hidden;
    position: absolute;
}
.stock_out::before,
.stock_out::after {
    position: absolute;
    z-index: -1;
    display: block;
    border: 3px solid red;
}
.stock_out span {
    position: absolute;
    display: block;
    width: 130px;
    padding: 6px 0;
    background-color: red;
    color: #fff;
    font:
        700 10px/1 "Lato",
        sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    text-align: center;
}

.stock_out-top-left {
    top: -2px;
    left: -2px;
    z-index: 1;
}
.stock_out-top-left::before,
.stock_out-top-left::after {
    border-top-color: transparent;
    border-left-color: transparent;
}
.stock_out-top-left::before {
    top: -1px;
    right: 71px;
}
.stock_out-top-left::after {
    bottom: 71px;
    left: -1px;
}
.stock_out-top-left span {
    right: -20px;
    top: 16px;
    transform: rotate(-45deg);
}
.m-search {
    display: none;
}

.product-details-content .price {
    display: flex;
}

.green {
    color: #00d500;
    font-weight: 700;
    font-size: var(--font-size-3);
    text-transform: uppercase;
}
.red {
    color: red;
    font-weight: 700;
    font-size: var(--font-size-3);
    text-transform: uppercase;
}

.discount {
    font-size: var(--font-size-1);
    position: absolute;
    background: red;
    color: white;
    padding: 0px 5px;
    right: 0;
    z-index: 1;
    font-weight: 700;
    border-radius: 0px 0px 0px 6px;
    box-shadow:
        0 4px 8px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.review_submit_button {
    display: inline-block;
    font-size: var(--font-size-2);
    padding: 10px 20px 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--primary);
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}
.review_submit_button:hover {
    background: var(--secondary);
    color: #ffffff;
}
.featured-items {
    width: 20% !important;
}

.main-product {
    display: flex;
    flex-wrap: wrap;
}
.main-product .featured-item {
    width: 20%;
    padding: 15px;
}
.featured-item .item {
    width: 100%;
    position: relative;
    border: 1px solid #ddd;
    transition: all 0.3s;
    position: relative;
}
.featured-item-text {
    padding: 5px 8px 15px;
}
.featured-item-text .discount-price {
    display: flex;
    gap: 5px;
}
.featured-item-text .discount-price .save span {
    font-size: 10px;
    background: #ff6b6b;
    color: white;
    padding: 0px 5px;
    border-radius: 3px;
}

.featured-item .item:hover {
    border-color: var(--primary);
    margin-top: -10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.featured-item .image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.featured-item .image {
    border-bottom: 1px solid #ddd;
}

.featured-item-text h6 a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: var(--font-size-3);
}
.featured-item-text h5 {
    color: var(--text-color);
    font-weight: 700;
    font-size: var(--font-size-4);
}
.featured-item-text .price {
    margin: 15px 0px 10px;
    width: 100%;
}
.featured-item-text .price .del {
    color: #9c9c9c;
    font-weight: 700;
    font-size: var(--font-size-4);
    text-decoration: line-through;
    /* margin: 0 5px; */
}
.featured-item-text .save {
}
.main-category {
    display: flex;
    flex-wrap: wrap;
}

.small-image img:hover {
    cursor: pointer;
}

.add_to_wishlist {
    display: inline-block;
    font-size: var(--font-size-2);
    padding: 10px 20px 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--primary);
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}
.featured-item-text .price .new-price {
    color: var(--primary);
    font-weight: 700;
    font-size: var(--font-size-4);
}
.featured-item-text .price .del {
    color: #9c9c9c;
    font-weight: 700;
    font-size: var(--font-size-2);
    text-decoration: line-through;
}

.related-products {
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero .category ul li a:hover {
    color: var(--primary);
}
.tab-device {
    display: none;
}
.hero-content .hero-left,
.hero-content .hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-content .hero-right .top-hero-header {
    display: grid;
    grid-template-columns: 8fr 2fr;
    grid-template-rows: 60px;
    gap: 25px;
}
.header-logo img {
    width: 90%;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

/* for mobile device */

@media (max-width: 1024px) {
    .header-content {
        display: grid;
        padding: 10px 0;
        grid-template-columns: 2fr 8fr;
        grid-template-rows: 40px;
        align-items: center;
        /* margin: 15px 0px; */
    }
    .header-content .logo-section img {
        width: 100%;
        height: 60px;
        object-fit: contain;
        border-radius: 8px;
    }
    .big-hero .top-hero {
        display: grid;
        align-items: center;
        grid-template-columns: 8fr 3fr;
        margin-bottom: 15px;
    }
    .main-product .featured-item {
        width: 25%;
        padding: 5px;
    }
    .category-item {
        width: 25%;
    }
    .search-form button {
        font-size: var(--font-size-2);
        color: #ffffff;
        font-weight: 800;
        text-transform: uppercase;
        display: inline-block;
        padding: 11px 30px 11px;
        background: var(--primary);
        border: none;
    }
    .hero-content .hero-right .top-hero-header {
        display: grid;
        grid-template-columns: 8fr 3fr;
        grid-template-rows: 60px;
        gap: 25px;
    }
    .header-right {
        display: grid;
        grid-template-columns: 8fr 3fr;
        gap: 25px;
    }
    .header-logo img {
        width: 90%;
        height: 50px;
        object-fit: cover;
        border-radius: 6px;
    }
    .search-form {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #ccc;
        width: 100%;
        height: 50px;
        border: none;
    }
}

@media (max-width: 768px) {
    .container-custom {
        padding: 0 12px !important;
    }

    .top-header {
        display: none;
    }
    .tab-device {
        display: block;
    }
    .bottom-header {
        display: none;
    }

    .header-content {
        padding: 0px 0;
        display: grid;
        justify-items: center;
        margin: 15px 0;
        grid-template-rows: 40px;
        grid-template-columns: 2fr 6fr 2fr;
    }
    .header-content .logo-section {
        width: 100%;
    }
    .hero-content .big-hero {
        width: 100%;
    }
    .header-content .logo-section img {
        width: 100% !important;
        height: 40px;
        object-fit: cover;
        border-radius: 5px;
    }
    .big-hero .bottom-hero .image-bg {
        height: 250px !important;
        background-size: 100% 100%;
    }
    .featured-item-text .price span {
        color: #7fad39;
        font-weight: 700;
        font-size: 12px;
        margin: 0px 0px 0px;
    }
    .featured-item-text .price .del {
        font-size: 10px;
        margin: 0 0px 0px 0px;
    }
    .main-product .featured-item {
        width: 33.33%;
        padding: 5px;
    }
    .category-item {
        width: 33.33%;
    }
    .category {
        display: none;
    }
    .big-hero .top-hero {
        display: none;
    }
    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 10px;
    }
    .search-form {
        height: 40px;
    }
    .search-form button {
        padding: 6px 20px 6px;
    }

    .container-custom {
        max-width: 100%;
        margin: 0 auto;
    }

    .mobile-device {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 50px;
        padding: 0 5px;
    }
    .hamburger-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        z-index: 999;
        width: 100%;
        background: #ffffff;
        padding: 0 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .mobile-menu ul {
        display: flex;
        justify-content: space-between;
        list-style: none;
    }
    .mobile-menu ul li {
        padding: 8px 0;
        width: 100%;
        text-align: center;
        gap: 10px;
    }
    .mobile-menu ul li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--text-color);
        text-transform: uppercase;
        font-size: 12px;
    }
    .mobile-menu ul li a i {
        font-size: var(--font-size-4);
    }
    .mobile-menu .left-menu,
    .mobile-menu .right-menu {
        width: 40%;
    }
    .mobile-menu .center-menu {
        width: 20%;
        position: relative;
        display: flex;
        justify-content: space-evenly;
    }
    .mobile-menu .center-menu a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: #ffffff;
        border-radius: 50%;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 12px;
        text-decoration: none;
        position: absolute;
        bottom: -10px;
        height: 60px;
        width: 60px;
    }

    .mobile-image {
        width: 320px !important;
        height: 320px !important;
    }
    .mobile-menu ul li a i {
        position: relative;
    }
    .mobile-menu ul li a i span {
        position: relative;
        font-size: 10px;
        background: red;
        color: white;
        padding: 0px;
        border-radius: 50%;
        height: 18px;
        position: absolute;
        width: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        top: -11px;
        left: 14px;
    }
    .mobile-menu .center-menu a i {
        font-size: var(--font-size-4);
    }
    .footer-modern .footer-bottom {
        margin-bottom: 60px;
    }
}

@media (max-width: 425px) {
    .big-hero .bottom-hero .image-bg {
        height: 150px !important;
        background-size: 100% 100%;
    }

    .category-slider {
        margin-top: 0px !important;
    }
    .category-slider .title {
        padding: 5px !important;
    }
    .category-item .title a {
        font-size: 10px !important;
        word-spacing: 0px;
    }
    .main-product .featured-item {
        width: 50%;
        padding: 5px;
    }
    .category-item {
        width: 50%;
    }
    .header-content .header-cart {
        display: none;
    }
    .header-content {
        padding: 0px 0;
        display: grid;
        justify-items: center;
        height: 40px;
        margin: 10px 0;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 40px;
        gap: 25px;
    }
    .header-content .search {
        width: 100%;
        display: flex;
    }
    .search-form button {
        padding: 6px 10px 6px;
    }
    .product-btn {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 5px;
        flex-direction: column;
    }
    .product-btn .site-btn {
        padding: 3px 10px 3px;
    }
    .your-order {
        background: #f5f5f5;
        padding: 10px;
        padding-top: 20px;
    }
}

.bottom-header .header-menu ul li a {
    position: relative;
    padding-bottom: 5px;
}
.bottom-header .header-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}
.bottom-header .header-menu ul li:hover a::after {
    width: 100%;
}

.image-bg-text {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* Product Card */
.featured-item .item {
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}
.featured-item .item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.featured-item .image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.featured-item .image img {
    transition: transform 0.4s ease;
}
.featured-item:hover .image img {
    transform: scale(1.05);
}
.site-btn:hover {
    background: var(--secondary);
}

.footer-links li a {
    position: relative;
    padding-bottom: 3px;
}
.footer-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}
.footer-links li a:hover::after {
    width: 100%;
}

.category-item .image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.category-item .image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}
.category-item:hover .image {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}
.category-item:hover .image img {
    transform: scale(1.08);
}

.category-item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    border-radius: 0 0 10px 10px;
}
.category-item .title a {
    color: #fff;
    font-size: var(--font-size-3);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}
.category-item .title a:hover {
    color: var(--primary);
}

.category-slider .category-item {
    width: 20%;
    padding: 5px;
}
.mobile-header {
    display: none;
}

.footer-modern {
    background: var(--footer-bg);
    padding: 60px 0 30px;
    font-family: "Inter", sans-serif;
    color: var(--footer-text);
    font-family: "cairo";
}

.footer-modern a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "cairo";
}

.footer-modern a:hover {
    color: var(--primary);
}

/* --- Footer Logo --- */
.footer-modern .footer-logo img {
    max-height: 50px;
}

/* --- Contact Info --- */
.footer-modern .footer-contact li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--footer-muted);
    font-family: "cairo";
}

.footer-modern .footer-contact a {
    color: var(--footer-muted);
}

.footer-modern .footer-contact i {
    color: var(--primary);
}

/* --- Titles --- */
.footer-modern .footer-title {
    font-weight: 700;
    color: var(--footer-text);
    margin-bottom: 16px;
    font-family: "cairo";
}

/* --- Links --- */
.footer-modern .footer-links ul li {
    margin-bottom: 8px;
    font-family: "cairo";
}

.footer-modern .footer-links ul li a {
    font-size: 14px;
    color: var(--footer-muted);
    transition: color 0.3s ease;
    font-family: "cairo";
}

.footer-modern .footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

/* --- Newsletter --- */
.footer-modern .footer-subscribe {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-modern .footer-subscribe input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 50px;
    border: 1.5px solid #ddd;
    outline: none;
    transition: 0.3s;
    font-family: "cairo";
}

.footer-modern .footer-subscribe input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 6px rgba(127, 173, 57, 0.3);
}

.footer-modern .footer-subscribe button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "cairo";
}

.footer-modern .footer-subscribe button:hover {
    background: #6ea22f;
}

/* --- Social Icons --- */
.footer-modern .footer-social {
    display: flex;
    gap: 10px;
}

.footer-modern .footer-social .social-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    transition: all 0.3s ease;
    font-family: "cairo";
}

.footer-modern .footer-social .social-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Bottom Section --- */
.footer-modern .footer-bottom {
    border-color: #e6e6e6 !important;
}

.footer-modern .footer-bottom p {
    font-size: 13px;
    color: var(--footer-muted);
    margin: 0;
    font-family: "cairo";
}

.footer-modern .payment-img {
    max-height: 28px;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .category-item {
        width: 33.33%;
    }
    .category-item .image img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .category-item {
        width: 50%;
    }
    .category-item .image img {
        height: 160px;
    }
    header {
        display: none !important;
    }
    .bottom-header.subnav {
        display: none;
    }
    :root {
        --brand-color: #7fad39;
        --tab-bg: #fff;
        --tab-light-gray: #f6f7f8;
    }

    .tab-device {
        background: var(--tab-bg);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .tab-device .header-content {
        padding: 8px 0;
        margin: 5px;
    }

    /* Logo */
    .tab-device .logo-img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    /* Search Box */
    .tab-device .modern-search {
        border: 1.5px solid #ddd;
        border-radius: 50px;
        padding: 8px 14px;
        font-size: 14px;
        width: 240px;
        transition: all 0.3s ease;
        outline: none;
    }

    .tab-device .modern-search:focus {
        border-color: var(--brand-color);
        box-shadow: 0 0 6px rgba(127, 173, 57, 0.3);
    }

    /* Search Button */
    .tab-device .btn-search {
        position: absolute;
        right: 10px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--brand-color);
        transition: color 0.3s ease;
    }

    .tab-device .btn-search:hover {
        color: #5e8c2c;
    }

    /* Wishlist Icon */
    .tab-device .icon-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--tab-light-gray);
        color: #333;
        transition: all 0.3s ease;
    }

    .tab-device .icon-btn:hover {
        background: var(--brand-color);
        color: #fff;
        transform: scale(1.05);
    }

    /* Wishlist Badge */
    .tab-device .wishlist-badge {
        position: absolute;
        top: 0px;
        right: -3px;
        background: var(--brand-color);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        padding: 3px 6px;
        border-radius: 50px;
        min-width: 18px;
        text-align: center;
        box-shadow: 0 0 4px rgba(127, 173, 57, 0.4);
        animation: tab-popIn 0.3s ease;
    }

    /* Total Amount */
    .tab-device .tab-amount {
        font-size: 15px;
        color: #333;
    }

    /* Animation */
    @keyframes tab-popIn {
        0% {
            transform: scale(0.6);
            opacity: 0;
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }
}

@media (max-width: 425px) {
    .category-item {
        width: 50% !important;
    }
    .footer {
        padding-bottom: 80px;
    }
    .footer .container-custom .row {
        margin-bottom: 0px !important;
    }
    .featured-item-text {
        padding: 5px;
    }
    .featured-item-text h6 {
        height: 35px;
        overflow: hidden;
        margin-bottom: 0px;
        line-height: 16px;
        padding: 0;
        font-size: 12px;
    }
    .product-btn .site-btn {
        width: 100%;
        font-size: 12px;
        padding: 5px;
        line-height: 20px;
        border-radius: 5px;
    }
    .featured-item-text .price .del {
        font-size: 12px;
        margin: 0 0px 0px 0px;
    }

    .stock_in span {
        font:
            700 8px / 1 "Lato",
            sans-serif;
        padding: 4px;
    }
    .stock_in {
        width: 65px;
        height: 60px;
    }
    .stock_out span {
        font:
            700 8px / 1 "Lato",
            sans-serif;
        padding: 4px;
    }
    .stock_out {
        width: 65px;
        height: 60px;
    }
    .stock_in-top-left span {
        right: -20px;
        top: 12px;
        transform: rotate(-45deg);
    }
    .stock_out-top-left span {
        right: -20px;
        top: 12px;
    }
    .stock_in-top-left {
        top: 0px;
        left: -1px;
        z-index: 1;
    }
    .stock_out-top-left {
        top: 0px;
        left: -1px;
        z-index: 1;
    }
    .mobile-header {
        display: block;
    }
    .tab-device {
        display: none;
    }

    .mobile-header {
        background: #fff;
        border-bottom: 1px solid #eee;
        position: relative;
        z-index: 100;
        padding: 5px;
    }
    .header-content-m {
        margin-bottom: 5px;
    }

    .header-content-m .logo-img {
        height: 40px;
        object-fit: contain;
    }

    /* ---------- ICON BUTTONS ---------- */
    .icon-btn {
        background: #f8f9fa;
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: #333;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .icon-btn:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(127, 173, 57, 0.3);
    }

    .modern-icon {
        transition:
            transform 0.25s ease,
            stroke 0.25s ease;
    }

    .icon-btn:hover .modern-icon {
        transform: scale(1.1);
        stroke: #fff;
    }

    /* ---------- SEARCH BAR ---------- */
    .mobile-search-bar {
        display: none;
        background: #fff;
        border-top: 2px solid var(--primary);
        padding: 7px 5px;
        animation: slideDown 0.35s ease forwards;
        width: 100%;
    }

    .mobile-search-bar.active {
        display: block;
    }

    .search-input {
        flex: 1;
        border-radius: 8px;
        padding: 5px 10px;
        border: 1px solid #ddd;
        transition: all 0.2s ease;
    }

    .search-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(127, 173, 57, 0.2);
    }

    .btn-search {
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 7px 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .btn-search:hover {
        background: #6a9631;
    }

    /* ---------- ANIMATION ---------- */
    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .wishlist-badge {
        position: absolute;
        top: -3px;
        right: -7px;
        background: var(--primary);
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        padding: 4px 6px;
        border-radius: 50px;
        min-width: 18px;
        text-align: center;
        box-shadow: 0 0 4px rgba(127, 173, 57, 0.4);
    }

    .price .new-old {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
    .featured-item-text .discount-price {
        display: flex;
        gap: 5px;
        justify-content: space-between;
        align-items: flex-start;
    }
    .featured-item-text .price .new-price {
        color: var(--primary);
        font-weight: 700;
        font-size: var(--font-size-4);
        line-height: 1;
    }
    .featured-item-text .save span {
        display: flex;
        height: 18px;
        align-items: center;
    }
}

/* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ Large screens (2560px+, 4K) */
@media (min-width: 1921px) {
    .product-btn .site-btn {
        padding: 14px 26px;
        font-size: clamp(14px, 0.9vw, 18px);
    }
}

/* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ Medium Desktop (1440px - 1919px) */
@media (max-width: 1919px) {
    .product-btn .site-btn {
        /* padding: 5px; */
        font-size: clamp(13px, 0.9vw, 17px);
    }
}

/* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .product-btn {
        gap: 4px;
    }
    .product-btn .site-btn {
        padding: 3px !important;
        font-size: clamp(12px, 0.8vw, 14px);
    }
    .featured-item-text .price .new-price {
        color: var(--primary);
        font-weight: 700;
        font-size: var(--font-size-4);
    }
}

/* ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .product-btn {
        flex-direction: column;
    }
    .product-btn {
        gap: 5px;
        margin-top: 0px;
    }
    .product-btn .site-btn {
        width: 100%;
        font-size: 12px;
        padding: 5px;
    }
    .featured-item-text .price {
        color: var(--primary);
        margin: 10px 0px 5px;
    }
    .featured-item-text .price span {
        color: #7fad39;
        font-weight: 700;
        font-size: 18px;
        margin: 0px 0px 0px;
    }
    .hero {
        margin: 10px 0;
    }
    .main-category {
        display: flex;
        flex-wrap: wrap;
        padding: 5px !important;
    }
    .main-product {
        display: flex;
        flex-wrap: wrap;
        padding: 5px !important;
    }
}

/* -------------------- General Card Style -------------------- */
.profile-card,
.recent-order,
.wishlist ul,
.wishlist-empty {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    background: #fff;
    overflow: hidden;
}

.profile-card:hover,
.recent-order:hover,
.wishlist ul li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* -------------------- Card Headers -------------------- */
.card-header {
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #252525; /* secondary color */
    color: #fff;
}

/* -------------------- Inputs -------------------- */
.custom-input {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    transition: all 0.2s ease;
}

.custom-input:focus {
    border-color: #7fad39; /* primary color */
    box-shadow: 0 0 5px rgba(127, 173, 57, 0.4);
    outline: none;
}

/* -------------------- Buttons -------------------- */
.custom-button,
.wishlist .product-btn button,
.wishlist-empty .btn,
.btn-update,
.cart-wishlist-btn {
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    background-color: #7fad39; /* primary color */
    color: #fff;
    transition: all 0.2s ease;
}

.custom-button:hover,
.wishlist .product-btn button:hover,
.wishlist-empty .btn:hover,
.btn-update:hover,
.cart-wishlist-btn:hover {
    background-color: #6fa032;
    color: #fff;
}

/* -------------------- Dashboard Cards -------------------- */
.order-card .card {
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    text-align: center;
    background: #7fad39; /* primary color */
    transition: transform 0.2s ease;
}

.order-card .card:hover {
    transform: translateY(-2px);
}

/* -------------------- Recent Orders Table -------------------- */
.recent-order .table {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.recent-order .table tbody tr {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.recent-order .table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* -------------------- Status Badges -------------------- */
.order-status {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
}

.status-1 {
    background: #ffc107;
    color: #212529;
} /* Pending */

.status-2,
.status-3,
.status-4,
.status-5,
.status-6,
.status-7,
.status-8 {
    background: #17a2b8;
    color: #ffffff;
} /* Processing */

.status-9 {
    background: #28a745;
    color: #ffffff;
} /* Delivered */

.status-10 {
    background: #dc3545;
    color: #ffffff;
} /* Cancelled */

.status-11 {
    background: #fd7e14;
    color: #ffffff;
} /* Returned */

/* -------------------- Wishlist -------------------- */
.wishlist ul {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}

.wishlist ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    transition: background 0.2s ease;
}

.wishlist ul .tt {
    font-weight: 600;
    background: #252525;
    color: #fff;
}

.wishlist ul .pp span:nth-child(1) {
    width: 5%;
}
.wishlist ul .pp span:nth-child(2) {
    width: 80%;
}
.wishlist ul .pp span:nth-child(3) {
    width: 15%;
}

.wishlist .product-info .product_name a {
    color: #252525;
    font-weight: 500;
    text-decoration: none;
}

.wishlist .product-info .product_name a:hover {
    color: #7fad39;
}

.wishlist .product-info .text-primary {
    font-size: 12px;
    color: #7fad39 !important;
}

/* -------------------- Empty Wishlist -------------------- */
.wishlist-empty h1 {
    font-weight: 600;
    margin-bottom: 20px;
}

.checkbox-active {
    border: 2px solid #05616e;
}

.fill {
    color: #efb405 !important;
}

.infill {
    color: #7c7459 !important;
}

.review_img img {
    margin-right: 5px;
    width: 100px;
    height: 100px;
    vertical-align: top;
    object-fit: cover;
}

.review_section {
    border-bottom: 2px solid white;
}

.review_section > div {
    padding: 10px 25px 10px 25px;
}

.content {
    /* padding: 10px 25px 10px 25px; */
    margin-bottom: 10px;
    background: #f7f7f7;
}

.review_title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
}

.review_date {
    margin-bottom: 0;
    font-size: 12px;
}

.review_description {
    font-size: 14px;
}

.review-header {
    padding: 10px 25px 10px 25px;
    border: 2px solid white;
    font-weight: 600;
}

.product-rating-show {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-section .breadcrumb {
    background: #f6f6f6;
    padding: 10px 15px;
    display: flex;
    gap: 10px;
}

.breadcrumb-section .breadcrumb a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.swiper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.myMainSwiper {
    /* height: 80%; */
    width: 100%;
}

.mySwiper {
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.3;
}

.custom-active {
    opacity: 1 !important;
}

.mySwiper .swiper-button-next:after,
.mySwiper .swiper-button-prev:after {
    font-size: 30px !important;
    color: #9e9e99;
}

.myMainSwiper .swiper-button-next:after,
.myMainSwiper .swiper-button-prev:after {
    font-size: 30px !important;
    color: #9e9e99;
}

.smallMySwiper2 .swiper-button-next:after,
.smallMySwiper2 .swiper-button-prev:after {
    font-size: 20px !important;
    color: #9e9e99;
}

.smallMySwiper2 .swiper-button-next {
    height: 20px;
    margin-top: 0px;
    margin-right: -10px;
}

.smallMySwiper2 .swiper-button-prev {
    height: 20px;
    margin-top: 0px;
    margin-left: -10px;
}

.smallMySwiper2 .swiper-slide {
    opacity: 0.3;
}

@media screen and (max-width: 425px) {
    .desktop-row {
        display: none;
    }

    .small-row .images {
        width: 93% !important;
    }

    .small-row .swiper-wrapper {
        margin: 10px 0 !important;
    }

    .category-slider {
        margin-top: 15px !important;
    }
}

@media screen and (min-width: 426px) {
    .small-row {
        display: none;
    }
}

.images-wrapper {
    position: relative;
}

.images-wrapper .swiper-button-next,
.images-wrapper .swiper-button-prev {
    color: #000;
    /* button er color */
    top: 50%;
    /* transform: translateY(-50%); */
}

.images-wrapper .swiper-button-next::after,
.images-wrapper .swiper-button-prev::after {
    font-size: clamp(16px, 2vw, 20px);
    color: #9e9e99;
    font-weight: bold;
}

.images-wrapper .swiper-button-prev {
    left: -10px;
    /* image er baire left side */
}

.images-wrapper .swiper-button-next {
    right: -10px;
    /* image er baire right side */
}

#mainSwiper .swiper-slide {
    position: relative;
}

#mainSwiper .zoom-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    /* so clicks pass through */
    z-index: 10;
}

.desktop-row .images {
    width: 95%;
}

body {
    position: relative;
}

.loaderr {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 100000;
    top: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: #aaaeb329;
}

.loaderr img {
    height: 100px;
    width: 100px;
}

.margin-top-139 {
    margin-top: 90px;
    transition: margin-top 0.4s ease;
}

.variant-item-image {
    padding: 3px !important;
}

.main-margin-top {
    margin-top: 150px;
    transition: margin-top 0.4s ease;
}

.flash-deal-countdown-sp {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0;
    right: 0;
    margin: 3px 3px;
    /* border: 1px solid #ddd; */
    padding: 0 5px;
    border-radius: 5px;
    color: red;
    background: #fff;
}

.flash-deal-countdown-sp .flash-deal-time {
    display: flex;
    align-items: center;
}

.flash-deal-countdown-sp .flash-deal-time span {
    font-size: 11px;
}

.flash-deal-countdown-sp .flash-deal-time .smalltext {
    font-size: 11px;
}

.wishlist-btn-quick {
    background: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: #bbb;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 5;
}

.wishlist-btn-quick:hover {
    transform: scale(1.1);
}

.wishlist-btn-quick.active {
    color: #ff4b5c;
    background: #ffe9ec;
}

.wishlist-btn-quick.active i {
    color: #ff4b5c;
}

.review-new {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    animation: fadeUp 0.4s ease-in-out;
}

.review-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.review_img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.product-rating-show img {
    display: inline-block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-text {
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.star_rating {
    cursor: pointer;
    fill: gray;
}

.star_rating.fill {
    fill: gold;
}

.checkbox-active {
    border: 2px solid #05616e;
}

#mainSwiper img {
    touch-action: pan-y !important;
}

#mainSwiper .swiper-slide.swiper-slide-active {
    touch-action: pan-y !important;
}

.fill {
    color: #efb405 !important;
}

.infill {
    color: #7c7459 !important;
}

.review_img img {
    margin-right: 5px;
    width: 100px;
    height: 100px;
    vertical-align: top;
    object-fit: cover;
}

.review_section {
    border-bottom: 2px solid white;
}

.review_section > div {
    padding: 10px 25px 10px 25px;
}

.content {
    /* padding: 10px 25px 10px 25px; */
    margin-bottom: 10px;
    background: #f7f7f7;
}

.review_title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0;
}

.review_date {
    margin-bottom: 0;
    font-size: 12px;
}

.review_description {
    font-size: 14px;
}

.review-header {
    padding: 10px 25px 10px 25px;
    border: 2px solid white;
    font-weight: 600;
}

.product-rating-show {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-section .breadcrumb {
    background: #f6f6f6;
    padding: 10px 15px;
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.breadcrumb-section .breadcrumb a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

.swiper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.myMainSwiper {
    /* height: 80%; */
    width: 100%;
}

.mySwiper {
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    /* border-radius: 8px; */
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.3;
}

.custom-active {
    border-radius: 8px;
    border: 2px solid #7fad39;
    box-shadow: 0 2px 6px rgba(127, 173, 57, 0.3);
}

.mySwiper .swiper-button-next:after,
.mySwiper .swiper-button-prev:after {
    font-size: 30px !important;
    color: #9e9e99;
}

.myMainSwiper .swiper-button-next:after,
.myMainSwiper .swiper-button-prev:after {
    font-size: 30px !important;
    color: #9e9e99;
}

.smallMySwiper2 .swiper-button-next:after,
.smallMySwiper2 .swiper-button-prev:after {
    font-size: 20px !important;
    color: #9e9e99;
}

.smallMySwiper2 .swiper-button-next {
    height: 20px;
    margin-top: 0px;
    margin-right: -10px;
}

.smallMySwiper2 .swiper-button-prev {
    height: 20px;
    margin-top: 0px;
    margin-left: -10px;
}

.smallMySwiper2 .swiper-slide {
    opacity: 0.3;
}

@media screen and (max-width: 425px) {
    .desktop-row {
        display: none;
    }

    .small-row .images {
        width: 93% !important;
    }

    .small-row .swiper-wrapper {
        margin: 10px 0 !important;
    }
}

@media screen and (min-width: 426px) {
    .small-row {
        display: none;
    }
}

.images-wrapper {
    position: relative;
}

.images-wrapper .swiper-button-next,
.images-wrapper .swiper-button-prev {
    color: #000;
    /* button er color */
    top: 50%;
    /* transform: translateY(-50%); */
}

.images-wrapper .swiper-button-next::after,
.images-wrapper .swiper-button-prev::after {
    font-size: clamp(16px, 2vw, 20px);
    color: #9e9e99;
    font-weight: bold;
}

.images-wrapper .swiper-button-prev {
    left: -10px;
    /* image er baire left side */
}

.images-wrapper .swiper-button-next {
    right: -10px;
    /* image er baire right side */
}

#mainSwiper .swiper-slide {
    position: relative;
}

#mainSwiper .zoom-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    /* so clicks pass through */
    z-index: 10;
}

.desktop-row .images {
    width: 95%;
}

/* new */
.product-details-content {
    font-family: "Inter", sans-serif;
    color: #333;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: "cairo";
}

.sku span {
    font-size: 14px;
    color: #666;
    font-family: "cairo";
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-family: "cairo";
}

.price .new-price {
    color: #7fad39;
    font-size: 26px;
    font-weight: 700;
    font-family: "cairo";
}

.price .del {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    font-family: "cairo";
}

.price .save-money {
    font-weight: 600;
    font-size: 14px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 10px;
    font-family: "cairo";
}

.product-description p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-family: "cairo";
}

.product-quantity {
    display: flex;
    align-items: center;
}

.qty-btn {
    background: #f1f1f1;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    color: #333;
    border-radius: 5px;
    transition: 0.3s;
}

.qty-btn:hover {
    background: #7fad39;
    color: #fff;
}

.qty-input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 6px 0;
}

.variant-group {
    margin-bottom: 15px;
}

.variant-label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.variant-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-items input {
    display: none;
}

.variant-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.variant-item.active,
.variant-item:hover {
    border-color: #7fad39;
    box-shadow: 0 2px 6px rgba(127, 173, 57, 0.3);
}

.variant-item img {
    max-width: 50px;
    max-height: 50px;
    border-radius: 5px;
}

.product-cart .buy-now {
    background: #7fad39;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 200px;
    width: 100%;
    font-family: "cairo";
}

.buy-now-related {
    display: inline-block;
    padding: 5px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    font-size: var(--font-size-2);
    border: none;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    background: var(--primary);
}

.buy-now-related:hover {
    background: color-mix(in srgb, var(--primary) 85%, white 15%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-cart .buy-now:hover {
    background: #6ea22f;
}

.product-cart .add-to-cart {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 200px;
    width: 100%;
    font-family: "cairo";
}

.add-to-cart-related {
    display: inline-block;
    padding: 5px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px !important;
    font-size: var(--font-size-2);
    border: none;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
    background: var(--secondary);
    font-family: "cairo";
}

.add-to-cart-related:hover {
    background: color-mix(in srgb, var(--secondary) 85%, white 15%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-cart .add-to-cart:hover {
    background: color-mix(in srgb, var(--secondary) 85%, white 15%);
}

.product-cart-out .out-of-stock-btn {
    width: 100%;
    padding: 12px 0;
    background: #eee;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 200px;
    font-family: "cairo";
}

.product-cart-out .out-of-stock-btn:hover {
    background: #e0e0e0;
    /* subtle change on hover */
}

.product-cart-out {
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 15px;
}

.product-short-info ul {
    padding: 0;
    margin: 0;
}

.product-short-info .short-info-item {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-family: "cairo";
}

.product-short-info .short-info-item b {
    color: #333;
    min-width: 80px;
    font-weight: 600;
    font-family: "cairo";
}

.product-short-info .short-info-item span,
.product-short-info .short-info-item samp {
    color: #666;
}

.product-short-info .share {
    display: flex;
    gap: 8px;
}

.product-short-info .share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #7fad39;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: "cairo";
}

.product-short-info .share a:hover {
    background: #7fad39;
    color: #fff;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .product-short-info .short-info-item b {
        min-width: 70px;
        font-size: 13px;
    }

    .product-short-info .short-info-item span {
        font-size: 13px;
    }

    .product-short-info .share a {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 22px;
    }

    .price .new-price {
        font-size: 22px;
    }

    .product-cart .add-to-cart {
        max-width: 150px;
    }

    .product-cart .buy-now {
        max-width: 150px;
    }
}
