*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Caveat";
    src: url("../fonts/Caveat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Caveat";
    src: url("../fonts/Caveat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Caveat";
    src: url("../fonts/Caveat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --font-family: "Poppins", sans-serif;
    --second-family: "Caveat", sans-serif;

    --white: #ffffff;
    --primary: #28acd5;
    --primary-hover: #1e8baa;
    --shadow: #ccc;
    --black: #000;
    --secondary: #141651;
    --gray: #1a1a1a;
    --ddd: #ddd;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.iconify-icon {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    vertical-align: middle;
}
body {
    position: relative;
    background-color: #f6f6f6;
}
/***** End Common Css *****/

/***** Header Section *****/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

#topBar {
    height: 50px;
    background: var(--black);
}
.acctAnCur {
    border-right: 1px solid var(--white);
}

.offers p {
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 500;
}

.quick-menu .acctAnCur {
    padding: 0 20px;
}
.quick-menu li a {
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 500;
}
.quick-menu li a .iconify-icon {
    margin: 0 5px 5px 0;
}

.quick-menu .curency {
    padding: 0 0 0 20px;
}
.quick-menu .curency span {
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 500;
}
.quick-menu .curency select {
    background: transparent;
    color: var(--white);
    border: none;
    font-family: var(--font-family);
    font-weight: 500;
}
.quick-menu .curency select option {
    color: var(--black);
}

/***** nav Section *****/
/* nav {
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(4px);
  padding: 10px 20px;
  font-family: var(--font-family);
} */
.topBar {
    max-height: 60px;
    opacity: 1;
    overflow: hidden;
    transition: 0.6s ease-in-out;
}

.topBar.none {
    max-height: 0;
    opacity: 0;
}

nav {
    background: rgba(255, 255, 255, 0.33);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.33);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
}

nav .quick-access ul li .iconify-icon,
nav .quick-access ul .cartBox {
    padding: 0 10px;
    cursor: pointer;
}

nav .main-menu {
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .main-menu li {
    position: relative;
    margin: 0 10px;
}

nav .main-menu li a {
    padding: 10px 15px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 500;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}
nav .main-menu li a.active {
    color: var(--primary);
}
.mobile-menu iconify-icon {
    font-size: 30px;
}
nav .main-menu li a::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    background-color: var(--primary);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

nav .main-menu li a:hover {
    color: var(--primary);
}

nav .main-menu li a:hover::after {
    width: 100%;
}

/* Dropdown */
nav .main-menu .category .subCategory {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 100;
}

nav .main-menu .category:hover .subCategory {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

nav .main-menu .category .subCategory li {
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav .main-menu .category .subCategory li a {
    color: var(--black);
    font-weight: 500;
}

nav .main-menu .category .subCategory li:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    border-radius: 8px;
}

/* Arrow icon rotation */
nav .main-menu .category:hover .iconify-icon iconify-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

nav .searchBox {
    position: absolute;
    right: 12%;
    top: 62px;
    background: #fffffff2;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 15px;
    z-index: 100;
    width: 400px;
    display: flex;
    align-items: center;
    transform: translateY(10px);
    transition: ease-in 0.3s;
    opacity: 0;
    visibility: hidden;
}
.searchBox-overlay {
    width: 100%;
    height: 100vh;
    background: #00000069;
    display: none;
    transition: 0.3s ease-in-out;
    position: fixed;
    left: 0;
}
.searchBox-overlay.active {
    display: block;
}
nav .searchBox.active {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
.searchBox form {
    width: 100%;
}

.search-input {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input input {
    flex: 1;
    padding: 13px 12px;
    border: none;
    border-bottom: 2px solid var(--primary);
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    font-family: var(--font-family);
    outline: none;
    background: rgba(240, 240, 240, 0.6);
    transition: all 0.3s ease;
}

.search-input input::placeholder {
    color: var(--black);
    opacity: 0.6;
}

.search-input input:focus {
    border-color: var(--primary);
}

.search-input button {
    background: var(--primary);
    border: none;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-input button:hover {
    background: var(--primary-hover);
}

.search-input button .iconify-icon iconify-icon {
    color: var(--white);
}

/***** End nav Section *****/

/***** Cart popup Section *****/
.cartOverley {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    cursor: pointer;
}
.cartPopup {
    position: absolute;
    width: 450px;
    height: 100vh;
    background: var(--white);
    right: 0;
    top: 0;
    z-index: 102;
}

.cartOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
    cursor: pointer;
}
.cartOverlay.active {
    display: block;
}

.cartPopup {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    transform: translateX(100%);
}
.cartPopup.active {
    transform: translateX(0%);
}
.cart {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.cart-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    margin: 15px 0;
}
.cart-body img {
    width: 100px;
}
.cart-body .cart-item {
    padding-bottom: 10px;
}
.cart-footer {
    /* border-top: 1px solid #eee; */
    padding-top: 15px;
}

.closeBtn {
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cartPopup .cart {
    background-color: var(--white);
    color: var(--black);
    /* box-shadow: 0 -2px 7px var(--shadow); */
    border-radius: 10px;
    overflow: hidden;
}

.cartPopup .cart-header {
    /* padding: 15px 20px; */
    border-bottom: 1px solid var(--ddd);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cartPopup .cart-header h5 {
    color: var(--secondary);
    margin: 0;
    font-family: var(--font-family);
}

.cartPopup .closeBtn iconify-icon {
    color: var(--secondary);
    cursor: pointer;
}

.cartPopup .cart-body {
    max-height: 80vh;
    overflow-y: auto;
    color: var(--gray);
    font-family: var(--font-family);
}

/* .cartPopup .cart-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--ddd);
} */

.cartPopup .cart-footer .d-flex span {
    font-family: var(--font-family);
}

.btn-checkout {
    background-color: var(--primary);
    color: var(--white);
    font-family: var(--font-family);
}

.btn-checkout:hover {
    background-color: var(--primary-hover);
}

.btn-outline-checkout {
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-family);
}

.btn-outline-checkout:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Cart Item */
.cart-item {
    background-color: var(--white);
    color: var(--black);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-family: var(--font-family);
}

.cart-item-name {
    color: var(--secondary);
    font-size: 14px;
    font-family: var(--font-family);
}

.cart-item-qty {
    color: var(--gray);
    font-size: 13px;
}

.cart-item-img {
    border: 1px solid var(--ddd);
    border-radius: 5px;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-item-divider {
    border-top: 1px solid var(--ddd);
    margin-top: 10px;
}

.remove-btn {
    color: var(--primary);
}

.remove-btn:hover {
    color: var(--primary-hover);
}

/* Quantity buttons */
.qty-pill button {
    border: none;
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
}

.qty-pill button:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-pill {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.qty-pill .count {
    margin: 0 8px;
    font-weight: 600;
}

/* Mobile bottom nav */
.mobile-menu-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    padding-top: 6px;
    padding-bottom: max(6px, env(safe-area-inset-bottom));
}

.mobile-menu-footer ul {
    margin: 0;
    padding: 6px 12px;
}

.mobile-menu-footer a {
    color: #6c757d;
    text-decoration: none;
}

.mobile-menu-footer .mobile-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    font-weight: 600;
    position: relative;
}

.mobile-menu-footer .mobile-tab.active,
.mobile-menu-footer .mobile-tab:hover {
    color: var(--primary);
}

.mobile-menu-footer .cart-badge {
    position: absolute;
    top: -2px;
    right: 6px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    line-height: 1;
    padding: 3px 5px;
    min-width: 18px;
    text-align: center;
}

/***** End Cart popup Section *****/

/***** Menu Section *****/
.menuOverley {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101;
    cursor: pointer;
}
.menuPopup {
    position: absolute;
    width: 450px;
    height: 100vh;
    background: var(--white);
    right: 0;
    top: 0;
    z-index: 102;
}

.menuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
    cursor: pointer;
}
.menuOverlay.active {
    display: block;
}

.menuPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    transform: translateX(-100%);
}
.menuPopup.active {
    transform: translateX(0%);
}
.menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
}

.menu-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.menu-body {
    flex: 1;
    overflow-y: auto;
    margin: 15px 0;
}
/* Main Menu Base */
.main-menu {
    list-style: none;
    margin: 0;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.main-menu a:hover,
.main-menu a.active {
    color: #28acd5;
}

/* Dropdown Category */
.main-menu .category > a {
    cursor: pointer;
}

.main-menu .category .iconify-icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.main-menu .category:hover .iconify-icon {
    transform: rotate(180deg);
}

/* Sub Category */
.subCategory {
    position: absolute;
    top: 110%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.subCategory li {
    padding: 0;
}

.subCategory li a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}
.subCategory li a:hover {
    color: var(--white);
}

/* Show on Hover */
.category:hover .subCategory {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.closeBtn {
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/***** Mobile Menu footer Section *****/
.mobile-menu-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 70px;
    width: 100%;
    background: #ffffff;
    z-index: 500;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 0 20px;
}
.mobile-menu-footer ul {
    height: 70px;
}
.mobile-menu-footer ul a {
    padding: 13px;
    color: var(--black);
    border-radius: 50%;
}
.mobile-menu-footer ul a.active {
    color: var(--white);
}
/***** End Mobile Menu footer Section *****/

/***** End Menu Section *****/

/***** End Header Section *****/

/***** Banner Section *****/
#banner {
    margin-top: 133px;
    width: 100%;
    height: calc(100vh - 50px);
    position: relative;
}
#banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    z-index: 150;
}
#banner .container {
    z-index: 300;
}
.bannerBox {
    width: 100%;
    height: 100%;
}
.slick-dotted.slick-slider {
    margin: 0;
}
.Banner_items {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Responsive text */
.Banner_items h2 {
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(28px, 5vw, 50px);
}

.Banner_items h5 {
    color: var(--white);
    font-family: var(--font-family);
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    max-width: 600px;
}
.Banner_items p {
    color: var(--white);
    font-family: var(--font-family);
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    max-width: 600px;
}

.Banner_items a {
    padding: 10px 20px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    color: #fff3f3;
    background-color: var(--primary);
    border-radius: 20px;
    display: inline-block;
    margin-top: 15px;
}

/* Animation effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Banner_items h5,
.Banner_items h2,
.Banner_items p,
.Banner_items a {
    opacity: 0; /* default hidden */
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.Banner_items.active h5,
.Banner_items.active h2,
.Banner_items.active p,
.Banner_items.active a {
    animation: fadeInUp 0.8s ease forwards;
}

/* একটু delay করে সুন্দর effect */
.Banner_items.active h2 {
    animation-delay: 0.2s;
}
.Banner_items.active p {
    animation-delay: 0.4s;
}
.Banner_items.active a {
    animation-delay: 0.6s;
}
/* Custom arrows */
.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary-hover);
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before,
.slick-next:before {
    display: none; /* default icon hide */
}

/* Custom icon (font awesome or unicode) */
.slick-prev::after {
    content: "‹"; /* left arrow */
    font-size: 50px;
    color: #fff;
    margin-bottom: 12px;
    margin-right: 3px;
}

.slick-next::after {
    content: "›"; /* right arrow */
    font-size: 50px;
    color: #fff;
    margin-bottom: 12px;
}

/* Dots */
.slick-dots {
    bottom: 60px;
}
.slick-dots li {
    margin: 0;
}
.slick-dots li button:before {
    font-size: 30px;
    color: var(--gray);
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    font-size: 30px;
}

/***** End Banner Section *****/

/***** About Section *****/

.title h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 29px;
    color: var(--black);
    margin: 40px 0;
    display: block;
}
.title h3 span {
    color: var(--primary);
}
#about p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
}

/***** End About Section *****/
/***** Fetured Product Section *****/
#featured-P {
    margin: 20px;
}
.items {
    margin: 10px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    background: var(--white);
    height: 400px;
    transition: all 0.3s ease;
}
.items:hover {
    transform: translateY(-5px);
}

.items .imgBox img {
    transition: transform 0.4s ease;
}
.items:hover .imgBox img {
    transform: scale(1.1);
}
/* Image box */
.items .imgBox {
    background: var(--shadow);
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.items .imgBox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product title */
.items .product-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    /* text-align: center;
  display: block; */
    margin-bottom: 5px;
    line-height: 1.4;

    transition: 0.3s ease-in-out;
}
.items .product-title:hover {
    color: var(--primary-hover);
}
/* Price */
.items .price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--black);
    margin-top: 10px;
    /* text-align: center; */
}
.items .price .old-price {
    font-weight: 400;
    text-decoration: line-through;
    color: var(--shadow);
    padding: 0 4px;
}
.items .total-reting {
    color: var(--shadow);
}
.availability span.in-stock {
    font-size: 13px;
    color: var(--black);
    padding: 4px 10px;
    font-family: var(--font-family);
    border-radius: 5px;
    background-color: rgba(0, 128, 0, 0.32);
}
.availability span.out-stock {
    font-size: 13px;
    color: var(--black);
    padding: 4px 10px;
    font-family: var(--font-family);
    border-radius: 5px;
    background-color: rgba(255, 0, 0, 0.32);
}
/* Rating */
.items .reting ul {
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1px;
}
.items .reting li {
    font-size: 14px;
    color: gold;
    padding: 1px;
    border: none;
}

/* Add to cart button */
.items .addToCart {
    margin-top: 5px;
}
.items .addToCart a {
    padding: 5px 15px;
    font-size: 14px;
    background: var(--primary);
    border-radius: 7px;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 500;
    display: inline-block;
    transition: 0.3s;
    width: 100%;
    padding: 10px;
}
.items .addToCart a:hover {
    background: var(--primary-hover);
}

.responsive .slick-dots {
    bottom: -30px;
}

.responsive .slick-dots li {
    margin: -3px;
}
.reting iconify-icon {
    color: var(--shadow);
    font-size: 15px;
    color: #ffa800;
}
.reting .starColor {
    color: #ebebeb;
}
/***** End Fetured Product Section *****/

/***** Our Product Section *****/
#our-product .title h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 29px;
    color: var(--black);
    margin: 60px 0 30px;
    display: block;
}
#our-product .items {
    margin: 0;
}
#our-product .items .imgBox {
    width: 100%;
}
#our-product .view-all a {
    padding: 10px 20px;
    background: var(--primary);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    border-radius: 10px;
    margin: 30px 0;
    display: inline-block;
    transition: 0.3s ease;
}
#our-product .view-all a:hover {
    background: var(--primary-hover);
}
/***** End Our Product Section *****/
/***** Supplying Section *****/

#supplying {
    background: var(--secondary);
    display: flex;
    align-items: center;
}
#supplying .global {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
#supplying .global img {
    width: 100px;
}
#supplying .global h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    color: var(--white);
}
#supplying .global p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: var(--white);
    margin: 10px 0 20px;
}
#supplying .global a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: var(--white);
    padding: 10px 20px;
    background: var(--primary);
    border-radius: 10px;
    transition: 0.3s ease;
}

#supplying .global a:hover {
    background: var(--primary-hover);
}
/***** End Supplying Section *****/
/***** Review Section *****/

#review .review-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    cursor: -webkit-grab;
    cursor: grab;
}
#review .review-items.active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
#review .review-items .review-content {
    background: var(--shadow);
    padding: 15px 20px;
    border-radius: 10px;
}
#review .review-items .reviewer-image {
    margin-top: 25px;
}
#review .review-items .reviewer-image span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.13em;
    text-align: center;
    color: var(--black);
}

#review .review .slick-dots {
    bottom: -30px;
}

.review .slick-dots li {
    margin: -3px;
}
/***** End Review Section *****/
/***** Footer Section *****/

footer {
    background-color: var(--gray);
    padding-top: 50px;
}
footer hr {
    color: #5c5c5c;
    margin: 10px 0;
}
footer .logo img {
    width: 200px;
}
footer p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.13em;
    color: var(--white);
}
footer .shoshalmedia {
    margin-top: 20px;
}
footer .shoshalmedia .icon-youtube span,
footer .shoshalmedia .icon-instagram span,
footer .shoshalmedia .icon-whatsapp span,
footer .shoshalmedia .icon-facebook span {
    margin: 0;
}
footer .shoshalmedia .icon-facebook {
    background: #0866ff;
}
footer .shoshalmedia .icon-youtube {
    background: #b20024;
}
footer .shoshalmedia .icon-whatsapp {
    background: #25d366;
}
footer .shoshalmedia .icon-instagram {
    background: #c40751;
}
footer .shoshalmedia .icon-facebook iconify-icon,
footer .shoshalmedia .icon-youtube iconify-icon,
footer .shoshalmedia .icon-whatsapp iconify-icon,
footer .shoshalmedia .icon-instagram iconify-icon {
    color: var(--white);
}
footer .shoshalmedia li {
    margin: 5px !important;
}
footer .shoshalmedia li a {
    color: var(--black);
    padding: 5px;
    background: var(--white);
    display: flex;
    align-items: center;
    border-radius: 7px;
    transition: 0.3s ease;
}
footer .shoshalmedia li a:hover {
    transform: translateY(-5px);
}

footer .shoshalmedia li a iconify-icon {
    font-size: 25px;
}

footer .customer-services h4 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 19px;
    color: var(--white);
}
footer .customer-services ul li {
    margin: 5px 0;
}
footer .customer-services ul li a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: var(--shadow);
    transition: 0.3s ease;
}
footer .customer-services ul {
    margin-top: 20px;
}
footer .customer-services ul li a:hover {
    color: var(--white);
}

footer .contact h4 {
    color: var(--white);
    font-size: 19px;
    font-family: var(--font-family);
}
footer .contact ul li {
    margin: 10px 0;
}
footer .contact ul li span {
    color: var(--primary);
    margin-right: 10px;
}
footer .contact ul li a {
    color: var(--white);
}
footer .contact ul li p {
    color: var(--white);
}
footer .copyright p {
    color: var(--white);
    border-top: 1px solid #3a3a3a;
    margin-top: 20px;
    padding: 20px 0;
    font-family: var(--font-family);
}
footer .copyright p a {
    color: var(--white);
    text-decoration: underline;
    transition: 0.3s ease;
}
footer .copyright p a:hover {
    color: var(--primary-hover);
}
/***** End Footer Section *****/

/*! Shop Page Section *****/

#breadcrumb {
    padding: 20px 0;
    margin-top: 125px;
}
#breadcrumb ul a {
    color: var(--black);
    font-size: 18px;
    transition: 0.3s;
}
#breadcrumb ul a:hover {
    color: var(--primary);
}
#breadcrumb ul iconify-icon {
    margin: 0 5px;
    color: var(--black);
}

#shopPage .products .items {
    margin: 0;
}

.shop-header {
    padding-bottom: 10px;
}

.shop-title {
    font-size: 30px;
    font-weight: 400;
    font-family: var(--font-family);
    color: var(--black);
}

.sort-select {
    max-width: 220px;
    display: inline-block;
    font-size: 14px;
    border-radius: 6px;
    padding: 10px 10px;
    border: 1px solid var(--shadow);
    background-color: var(--white);
    transition: all 0.2s ease-in-out;
}

.sort-select:focus {
    border-color: var(--primary-hover);
    box-shadow: 0 0 5px rgba(40, 172, 213, 0.5);
}

.filters {
    background: var(--white);
    border-radius: 8px;
    height: 100%;
    position: sticky;
    top: 90px;
    padding: 20px;
}

.filter-box {
    margin-bottom: 20px;
}

.filter-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray);
    text-transform: uppercase;
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-list li {
    margin: 5px 0;
    font-size: 15px;
}
.filter-list li a {
    font-size: 16px;
}
.filter-list li a span {
    font-size: 14px;
    margin: 3px 0 0 3px;
}
.filter-list label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-list input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--black);
}

.filter-list span {
    color: #8d8d8d;
    font-size: 14px;
    margin: 3px 0 0 3px;
}

.toggle {
    display: flex;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    padding: 3px 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 40px;
}

.slider-container input[type="range"] {
    position: absolute;
    left: 0;
    top: 15px;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--black);
    cursor: pointer;
    -webkit-appearance: none;
    position: relative;
    z-index: 2;
}

.slider-container input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--black);
    cursor: pointer;
}

.slider-track {
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 5px;
    background: var(--ddd);
    z-index: 1;
}

.slider-track::before {
    content: "";
    position: absolute;
    height: 5px;
    border-radius: 5px;
    background: var(--primary-hover);
    left: 0;
    right: 0;
}

.filter-close {
    padding: 10px;
}
.filter-overley {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0000009d;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.filter-overley.active {
    visibility: visible;
    opacity: 1;
}
.filter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease-in-out;
    transform: translateX(-100%);
    padding: 20px;
    z-index: 100;
    overflow-y: auto;
}
.filter-header {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--ddd);
}

.filter-popup.active {
    transform: translateX(-0%);
}
/*! End Shop Page Section *****/

/*! Product details Section *****/
.main-image {
    border: 1px solid var(--shadow);
    width: 100%;
    /* height: 60vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.main-image .image img {
    width: 90%;
}
.main-image .image {
    display: flex;
    align-content: center;
    justify-content: center;
}
.child-images {
    margin-top: 10px;
    border: 1px solid var(--shadow);
    width: 100%;
    height: 12vh;
}
.child-images .image-item {
    width: 100%;
    height: 12vh;
    border: 1px solid var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.child-images .slick-next {
    border-radius: 0;
    right: 0px;
    height: 12vh;
    width: 30px;
    /* background: #0000006c; */
}
.child-images .slick-prev {
    border-radius: 0;
    left: 0px;
    height: 12vh;
    width: 30px;
    /* background: #0000006c; */
}

#related-roducts {
    margin-top: 70px;
}
#related-roducts .title h3 {
    margin: 20px 0;
}
#product-details .details hr {
    color: var(--shadow);
}
#product-details .details h1 {
    font-size:24px;
    font-family: var(--font-family);
    font-weight: 600;
}
#product-details .details p {
    font-family: var(--font-family);
    font-size: 13px;
}
#product-details .details ul li .total-reting {
    font-size: 10px;
    color: #aaa;
    margin-left: 5px;
}
#product-details .details ul li {
    padding: 0 10px;
    border-right: 1px solid #aaaaaa;
}
#product-details .details ul li a {
    color: var(--black);
    transition: 0.3s;
}
#product-details .details ul li a:hover {
    color: var(--primary);
}
#product-details .details ul .reting {
    padding: 0 10px 0 0;
}

#product-details .details ul li:last-child {
    border-right: none;
}
#product-details .details .price .new-price {
    font-size: 24px;
    font-family: var(--font-family);
    font-weight: 600;
}
#product-details .details .price .old-price {
    text-decoration: line-through;
    color: #aaaaaa;
    margin-left: 5px;
}

#product-details .details .availability h5 {
    font-size: 13px;
    font-family: var(--font-family);
    font-weight: 400;
}
/* #product-details .details .availability h5 span {
    font-family: var(--font-family);
    font-weight: 400;
    background: #28a745;
    padding: 1px 10px;
    border-radius: 5px;
    margin-left: 15px;
    color: var(--white);
} */
#product-details .details .quantity {
    display: inline-block;
    /* align-items: center; */
    /* max-width: 150px; */
    margin-left: 10px;
}

#product-details .details .quantity .quantity-plus,
#product-details .details .quantity .quantity-minus {
    border: 1px solid var(--shadow);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

#product-details .details .quantity .quantity-plus:hover,
#product-details .details .quantity .quantity-minus:hover {
    background: var(--primary);
    color: #fff;
}

#product-details .details .quantity .input-quantity {
    flex: 1;
    padding: 0;
}

#product-details .details .quantity .input-quantity input {
    text-align: center;
    border: 1px solid var(--shadow);
    height: 40px;
    width: 50px;
    outline: none;
    box-sizing: border-box;
    padding: 0;
}

#product-details
    .details
    .quantity
    .input-quantity
    input::-webkit-outer-spin-button,
#product-details
    .details
    .quantity
    .input-quantity
    input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
#product-details .details .quantity .input-quantity input[type="number"] {
    -moz-appearance: textfield;
}

#product-details .details .addToCart {
    border: none;
    padding: 10px 20px;
    background: var(--primary);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    color: var(--white);
    transition: 0.3s;
    display: inline-block;
    margin-left: 30px;
}
#product-details .details .request-inquiry {
    border: none;
    padding: 10px 20px;
    background: var(--primary);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-family);
    color: var(--white);
    /* margin-left: -57px; */
    transition: 0.3s;
    margin-top: 10px;
}
#product-details .details .addToCart:hover,
#product-details .details .request-inquiry:hover {
    background: var(--primary-hover);
}
/*! End Product details Section *****/

/*! contact Section *****/
#contact-form hr {
    color: var(--shadow);
}
#contact-form h2 {
    font-size: 25px;
    font-family: var(--font-family);
    margin-bottom: 4px;
}
#contact-form p {
    font-size: 16px;
    font-family: var(--font-family);
    margin-bottom: 4px;
}
.left-side button {
    border: none;
    padding: 7px 15px;
    color: var(--white);
    background: var(--primary);
    border-radius: 7px;
    font-family: var(--font-family);
}

.right-side h2 {
    font-size: 20px;
    font-family: var(--font-family);
}
.social-links {
    margin-top: 20px;
}
.social-links a {
    padding: 5px;
    border-radius: 5px;
}
.social-links a .iconify-icon {
    padding-bottom: 5px;
}
.social-links .icon-facebook {
    background: #0866ff;
}
.social-links .icon-youtube {
    background: #b20024;
}
.social-links .icon-whatsapp {
    background: #25d366;
}
.social-links .icon-instagram {
    background: #c40751;
}
.social-links .icon-facebook iconify-icon,
.social-links .icon-youtube iconify-icon,
.social-links .icon-whatsapp iconify-icon,
.social-links .icon-instagram iconify-icon {
    color: var(--white);
}
.social-links li {
    margin: 5px !important;
    transition: 0.2s;
}
.social-links li:hover {
    transform: translateY(-5px);
}

.general-equerries {
    font-size: 20px;
    font-family: var(--font-family);
    margin-bottom: 10px;
}
.equerries li {
    margin: 5px 0;
}

.support iconify-icon {
    font-size: 50px;
    color: var(--primary);
}
.support .icon {
    margin-right: 10px;
}
.support .number p {
    font-size: 16px;
    font-family: var(--black);
    font-weight: 600;
}
.support .number a {
    color: rgb(71, 70, 70);
    font-family: var(--font-family);
}
.support .number a:hover {
    text-decoration: underline;
}
/*! Contact End Section *****/

/*! Login Section *****/

.register-parent,
.login-parent {
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.childe {
    width: 500px;
    border: 1px solid var(--shadow);
    padding: 20px;
    border-radius: 10px;
}
.childe button {
    width: 100%;
    padding: 10px 20px;
    border: 0;
    background: var(--primary);
    border-radius: 7px;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 600;
}
.childe p {
    font-family: var(--font-family);
    margin-top: 10px;
}
.childe .password-box {
    position: relative;
}
.childe .password-box .show {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 5px 10px;
}
/*! End Login Section *****/

/*!  user_dashboard *****/
.user_dashboard {
    margin-top: 100px !important;
}

/*!  Account Page Wrapper *****/
.account-page-wrapper {
    padding: 30px 0;
    min-height: 100vh;
}

/*!  Sidebar *****/
.account-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
    position: sticky;
    top: 20px;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(90deg, var(--primary-color), #00c6ff);
    color: #fff;
    text-align: center;
}

.sidebar-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #555;
    text-decoration: none;
    transition: 0.3s all;
}

.sidebar-nav a:hover {
    background: #f0f8ff;
    color: var(--primary-color);
}

.sidebar-nav a.active {
    background: #f0f8ff;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
}

.sidebar-nav iconify-icon {
    font-size: 20px;
    margin-right: 12px;
}
/*!   Main Content Area *****/
.main-content-area {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}
/*!  Profile Header Card *****/

.profile-header-section {
    padding: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-header-card {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-avatar .avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 24px;
    color: #333;
}

.profile-title {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

.profile-location {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.profile-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: #e0f0ff;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.profile-actions .btn {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
}
/*!  Profile Tabs*****/

.profile-content-tabs {
    padding: 0;
}

.nav-tabs {
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: flex-start;
    padding: 0 30px;
}

.nav-tabs .nav-link {
    border: none;
    padding: 15px 25px;
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: 0.3s all;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

/*!  Tab Content*****/
.tab-content {
    padding: 30px;
}
/*!  Edit Profile Form*****/

.edit-profile-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.edit-profile-form .form-control,
.edit-profile-form .form-select,
.edit-profile-form textarea {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: 0.3s all;
}

.edit-profile-form .form-control:focus,
.edit-profile-form .form-select:focus,
.edit-profile-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-actions .btn {
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 500;
}

/*!   About Tab*****/
.about-info {
    max-width: 600px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item strong {
    color: #333;
    font-weight: 600;
}

.info-item span {
    color: #666;
}

.status-active {
    color: var(--success-color) !important;
    font-weight: 500;
}

/*!  Connected Accounts *****/
.connected-accounts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.account-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: 0.3s all;
}

.account-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.account-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.account-icon {
    font-size: 24px;
    color: #666;
}

.account-info h6 {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.account-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.account-status.connected {
    color: var(--success-color);
    font-weight: 500;
}

.account-item .btn {
    border-radius: 20px;
    padding: 6px 20px;
    font-size: 14px;
}

/*!  Orders Page Styles *****/
.orders-page {
    padding: 0;
}

.orders-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.orders-stats {
    padding: 20px 30px;
}

.orders-stats .stat-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    text-align: center;
}

.orders-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.orders-stats .stat-label {
    color: #666;
    font-size: 0.9rem;
}

.orders-list {
    padding: 0 30px;
}

.order-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

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

.order-header {
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
    background: #f8f9fa;
}

.order-body {
    padding: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.order-footer {
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
    background: #f8f9fa;
}

/* Status Badges *****/
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bg-success {
    background: #d4edda;
    color: #155724;
}

.bg-info {
    background: #cce7ff;
    color: #004085;
}

.bg-warning {
    background: #fff3cd;
    color: #856404;
}

.bg-danger {
    background: #f8d7da;
    color: #721c24;
}
/*! Pagination*****/

.pagination-container {
    padding: 20px 30px;
    display: flex;
    justify-content: center;
}

/*  Smooth animations for mobile  *****/
.mobile-tabs .nav-link,
.profile-header-card,
.order-card {
    transition: all 0.3s ease;
}

/* Mobile-specific optimizations  *****/
.btn-touch {
    transform: scale(0.95);
    opacity: 0.8;
}

/* Prevent text selection on mobile  *****/
.mobile-tabs,
.mobile-tabs .nav-link {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*Improved touch feedback  *****/
.nav-link,
.btn,
.order-card {
    -webkit-tap-highlight-color: transparent;
}

/*!Smooth scrolling for mobile  *****/
.mobile-tabs-scroll {
    scroll-behavior: smooth;
}

/*!Optimize images for mobile *****/
.avatar-img,
.order-item img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/*!Reduce motion for users who prefer it *****/
@media (prefers-reduced-motion: reduce) {
    .mobile-tabs .nav-link,
    .profile-header-card,
    .order-card,
    .btn {
        transition: none;
    }
}

/*! About page *****/
/*! About Hero Section */
.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-family: var(--second-family);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(40, 172, 213, 0.3);
    color: white;
}

.hero-icon iconify-icon {
    transition: transform 0.3s ease;
}

.hero-icon:hover iconify-icon {
    transform: scale(1.1);
}
/*! Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    position: relative;
    font-family: var(--second-family);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}
/* !Company Overview */
.company-overview {
    background: var(--white);
}

.stats {
    max-width: 400px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

.icon-item {
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
}

.icon-item iconify-icon {
    transition: transform 0.3s ease;
}

.icon-item:hover iconify-icon {
    transform: scale(1.1);
}
/* !Mission & Vision */
.mission-card,
.vision-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mission-card .card-title,
.vision-card .card-title {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/*! Our Values */
.value-card {
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 172, 213, 0.2);
}

.value-card h4 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-icon iconify-icon {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon iconify-icon {
    transform: scale(1.1);
}

/*! Team Section */
.team-card {
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 172, 213, 0.2);
}

.team-icon {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.team-card:hover .team-icon {
    transform: scale(1.1);
    background: var(--primary);
}

.team-card:hover .team-icon iconify-icon {
    color: white !important;
}

.team-card h4 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

/*! CTA Section */
.cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.btn-light {
    background: var(--white);
    color: var(--secondary);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    color: var(--secondary);
}

/*! Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .cta-section h3 {
        font-size: 1.8rem;
    }

    .value-card,
    .team-card {
        margin-bottom: 2rem;
    }

    .hero-icon iconify-icon {
        width: 150px !important;
        height: 150px !important;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-section .row {
        text-align: center;
    }

    .cta-section .col-lg-4 {
        margin-top: 1.5rem;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .icon-item {
        margin-bottom: 1rem;
    }

    .team-icon {
        width: 100px;
        height: 100px;
    }

    .team-icon iconify-icon {
        width: 60px !important;
        height: 60px !important;
    }

    main {
        margin-top: 80px !important;
    }
}
