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

:root {
    --section-bg: #fdfdfd;
    --primary-color: var(--primary-app-color);
    --border-color-1: #c5c5c5;
    --hero-bg: #f4f4f4;
    --border-1: 15px;
    --border-2: 25px;
    --border-3: 4px;
    --t: .5s ease;
    --s-t: .15s ease;
    --t-t: 1s ease;
}

.section-bg {
    background: var(--section-bg);
}

.col-md-2-4 {
    flex: 0 0 20%;
    max-width: 20%;
}

.common-gradient-title-bg {
    background: linear-gradient(90deg, #2bb7da 0%, #3a5bbf 60%, #2d3e9f 100%);
    padding: 10px 0px;
    border-radius: var(--border-3);
    color: white;
}

.btn-primary {
    background-color: var(--primary-product-price-color) !important;
    border-color: var(--primary-product-price-color) !important;
}

.deals-count-down-badge {
    background: var(--primary-product-price-color);
    color: #fff;
    border-radius: var(--border-2);
    padding: 5px 30px;
    font-size: 14px;
}

body {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
}

.text-center-common {
    text-align: center;
}

.white-space-nowrap {
    white-space: nowrap;
}

a {
    text-decoration: none;
    color: unset;
}

li {
    list-style: none;
}

#share-whatsapp {
    font-size: 16px;
    color: white;
}

#share-whatsapp i {
    font-size: 28px;
}

.common-btn-class {
    padding: 8px 20px;
    border-radius: var(--border-2);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    font-weight: 600;
    background-color: var(--primary-product-price-color);
    color: white;
    border: 1px solid var(--primary-product-price-color);
    white-space: nowrap;
}

.text-color-primary {
    color: var(--primary-app-color);
}

.common-btn-class:hover {
    color: white !important;
}

/* Top Header */
#header .top-header {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

#header .logo {
    display: flex;
    height: 60px;
}

#header .logo img {
    height: 100%;
}

#header .logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-app-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 20px;
}

#header .search-box {
    position: relative;
    flex-grow: 1;
    max-width: 600px;
    margin: 0 20px;
}

#header .search-icon {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #918c8c;
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
}

#header .search-box input {
    width: 100%;
    padding: 10px 50px 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
    padding-left: 35px;
}

#header .search-box input:focus {
    outline: none;
    border-color: var(--primary-app-color);
    box-shadow: 0 0 0 3px rgba(21, 140, 140, 0.1);
}

#header .search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--primary-app-color);
    border: none;
    padding: 8px 10px;
    border-radius: 4px;
}


#header .header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

#header .btn-login,
#header .btn-signup {
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    font-weight: 600;
}

#header .btn-login {
    color: var(--primary-app-color);
    background-color: transparent;
}

#header .btn-login:hover {
    color: var(--primary-app-color);
}

#header .btn-signup {
    background-color: var(--primary-app-color);
    color: white;
    border: 1px solid var(--primary-app-color);
}

#header #dashboardActions {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
}

#header #dashboardActions i {
    font-size: 25px;
    color: var(--primary-app-color);
}

/* Main Navigation */
#header .main-nav {
    background-color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

#header .nav-item {
    position: relative;
}

#header .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

#header .nav-link i {
    font-size: 16px;
    color: var(--primary-app-color);
}

#header .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-app-color);
}

/* Main Dropdown for Categories */
#header .dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 300px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0px;
    padding: 15px 0;
    display: none;
    z-index: 1000;
}

#header .nav-item:hover>.dropdown-menu-custom {
    display: block;
}

/* Category Item with Subcategories */
#header .category-item {
    position: relative;
}

#header .category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
}


#header .category-link .arrow {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

#header .category-item:hover>.category-link {
    background-color: #f0f9f9;
    color: var(--primary-app-color);
}

/* Subcategory Dropdown */
#header .subcategory-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    display: none;
    margin-left: 5px;
    z-index: 1001;
}

#header #category-left-image {
    width: 20px;
    height: 20px;
}

#header #category-left-image img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

#header .category-item:hover>.subcategory-dropdown {
    display: block;
}

#header .subcategory-link {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

#header .subcategory-link:hover {
    background-color: #f0f9f9;
    color: var(--primary-app-color);
    padding-left: 25px;
}

#header .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

#header .contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s;
}

#header .contact-link:hover {
    background-color: #f0f9f9;
    color: var(--primary-app-color);
}

#header .contact-link i {
    color: var(--primary-app-color);
}

#header .navbar-toggler {
    border: none !important;
}

#header .navbar-toggler:focus {
    box-shadow: none !important;
}

.hero-categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    position: relative;
}

.hero-category-item {
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all 0.3s ease;
}

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

.hero-category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--hero-bg);
}

.hero-category-link:hover {
    background: #f8f9fa;
    color: var(--primary-app-color);
}

.hero-categories-image {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.hero-categories-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-arrow {
    font-size: 12px;
    color: #888;
}

.hero-subcategory-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.hero-category-item:hover .hero-subcategory-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-subcategory-link {
	display: flex;
	padding: 5px 16px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: all 0.3s ease;
}

.hero-subcategory-link:hover {
    background: #f8f9fa;
    color: var(--primary-app-color);
    padding-left: 20px;
}

#hat-bazar-hero .hero-categories {
    background: var(--hero-bg);
    border-radius: var(--border-1);
}

#hat-bazar-hero .hero-categories ul li:hover {
    background: #e0e0e1;
    border-radius: var(--border-2);
}

#hat-bazar-hero .hero-categories .hero-categories-image {
    width: 27px;
    height: 27px;
    margin-right: 10px;
}

#hat-bazar-hero .hero-categories .hero-categories-image img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

#hat-bazar-hero .hero-slider-card {
    background: var(--hero-bg);
    border-radius: var(--border-1);
    overflow: hidden;
    height: 100%;
    position: relative;
}

#hat-bazar-hero .hero-slider-card .owl-prev {
    position: absolute;
    left: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

#hat-bazar-hero .hero-slider-card .owl-next {
    position: absolute;
    right: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

#hat-bazar-hero .hero-slider-card .owl-prev span,
#hat-bazar-hero .hero-slider-card .owl-next span {
    padding: 10px 18px;
    font-size: 30px;
}

#hat-bazar-hero .hero-slider-card .owl-prev:hover,
#hat-bazar-hero .hero-slider-card .owl-next:hover {
    color: var(--primary-color) !important;
}

#hat-bazar-hero .hero-slider .item {
    position: relative;
    overflow: hidden;
    min-height: 392px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hat-bazar-hero .hero-slider .hero-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 96px;
}

#hat-bazar-hero .hero-slider .hero-img {
    max-width: 42%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .12));
}

#hat-bazar-hero .hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 18px 0px;
    text-align: center;
    background: linear-gradient(to top, rgba(244, 246, 248, 0.95), rgba(244, 246, 248, 0.75), rgba(244, 246, 248, 0));
}

#hat-bazar-hero .hero-caption h2 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: clamp(18px, 2.2vw, 30px);
    color: #202124;
}

#hat-bazar-hero .hero-caption p {
    margin: 0 0 -35px;
    color: #6b7280;
    font-weight: 500;
    font-size: clamp(12px, 1.2vw, 15px);
}

#hat-bazar-hero .hero-caption .btn-hero {
    border-radius: var(--border-2);
    padding: 10px 30px;
    font-weight: 400;
    margin-top: 50px;
    font-size: 15px;
}

#hat-bazar-hero .hero-slider-card .owl-theme .owl-dots .owl-dot span {
    width: 28px;
    height: 4px;
    border-radius: 999px;
}

#hat-bazar-hero .hero-deals {
    border-radius: var(--border-1);
    border: 1px solid #dfdfdf;
}

.hero-right-slider-card .hero-slide-card {
    overflow: hidden;
}

.hero-right-slider-card .hero-inner {
    position: relative;
    height: 360px;
    overflow: hidden;
}

.hero-right-slider-card .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-2);
}

.hero-right-slider-card .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
}

.hero-right-slider-card .hero-caption-right {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 85%;
    color: #222;
}

.hero-right-slider-card .hero-top-title {
    font-size: 14px;
    opacity: 0.75;
    margin-bottom: 6px;
}

.hero-right-slider-card .hero-main-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 16px;
}

.hero-right-slider-card .btn-hero {
    display: inline-block;
    background: #fff;
    color: #222;
    padding: 8px 25px;
    border-radius: var(--border-2);
    text-decoration: none;
    font-weight: 400;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hero-right-slider-card .hero-product-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 6px 0px;
    background: #fff;
}

.hero-right-slider-card .hero-product-thumb {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
    background: #f6f6f6;
    padding: 6px;
}

.hero-right-slider-card .hero-product-title {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.hero-right-slider-card .hero-product-rating {
    line-height: 1;
}

.hero-right-slider-card .star {
    font-size: 24px;
}

.hero-right-slider-card .star.filled {
    color: #f5b301;
}

.hero-right-slider-card .hero-product-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-product-price-color);
}

@media (max-width: 767px) {
    .hero-right-slider-card .hero-inner {
        height: 300px;
    }

    .hero-right-slider-card .hero-main-title {
        font-size: 22px;
    }
}


.hatbazar-categories .hatbazar_categories_slider .owl-item {
    border: 1px solid var(--border-color-1);
    border-radius: var(--border-1);
    transition: var(--t);
}

.hatbazar-categories .hatbazar_categories_slider .owl-item:hover {
    border: 1px solid var(--primary-product-price-color);
    transition: var(--t);
}

.hatbazar-categories .item a {
    width: 110px;
    display: inherit;
    height: 110px;
    padding: 10px;
}

.hatbazar-categories .item a img {
    display: block;
    width: 100%;
    /* border-radius: 50%; */
}

.hatbazar-categories .item .category-name {
    font-size: 13px;
    color: var(--primary-color);
}

.hatbazar-categories .item {
    transition: all 0.9s ease;
}

.hatbazar_categories_slider .owl-stage-outer .owl-stage {
    margin-top: 1rem;
}

.hatbazar-categories .browse-all-categories-btn,
.hatbazar-hot-deals .all-product-btn {
    padding: 8px 20px;
    border-radius: var(--border-2);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    font-weight: 600;
    background-color: var(--primary-product-price-color);
    color: white;
    border: 1px solid var(--primary-product-price-color);
    margin-top: 25px;
}

.hatbazar-hot-deals .hatbazar_hot_deals_slider {
    position: relative;
}

.hatbazar-hot-deals .hatbazar_hot_deals_slider .owl-nav.disabled {
    display: block !important;
}

.hatbazar-hot-deals .hatbazar_hot_deals_slider .owl-nav.disabled .owl-prev {
    position: absolute;
    left: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-hot-deals .hatbazar_hot_deals_slider .owl-nav.disabled .owl-next {
    position: absolute;
    right: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-hot-deals .hatbazar_hot_deals_slider .owl-nav.disabled .owl-prev span,
.hatbazar-hot-deals .hatbazar_hot_deals_slider .owl-nav.disabled .owl-next span {
    padding: 10px 18px;
    font-size: 30px;
}


/* Category CSS Start  */
#hatbazar-all-categories .all-categories-breadcumb {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

#hatbazar-all-categories .all-categories-breadcumb .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

#hatbazar-all-categories .all-categories-breadcumb .content {
    position: relative;
    z-index: 2;
}


#hatbazar-all-categories .all-categories-wapper .card {
    border: none;
    border-radius: 10px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 30px 0px;
}

#hatbazar-all-categories .all-categories-wapper .card .category-image:hover {
    transform: scale(1.1);
    transition: all 0.9s ease;
}

#hatbazar-all-categories .all-categories-wapper .category-image {
    text-align: center;
    transition: all 0.9s ease;
}

#hatbazar-all-categories .all-categories-wapper .category-image img {
    width: 200px;
    background: var(--primary-app-color);
    border-radius: 4px;
    padding: 2px;
    height: 170px;
}

#hatbazar-all-categories .all-categories-wapper .card .content h5 {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-product-price-color);
}

#hatbazar-all-categories .all-categories-wapper .card .content p {
    text-align: center;
}


/* Category CSS End  */

/* Pre Order Product CSS Start  */

.hatbazar-pre-order .hatbazar_pre_order_slider {
    position: relative;
}

.hatbazar-pre-order .hatbazar_pre_order_slider .owl-nav.disabled {
    display: block !important;
}

.hatbazar-pre-order .hatbazar_pre_order_slider .owl-nav.disabled .owl-prev {
    position: absolute;
    left: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-pre-order .hatbazar_pre_order_slider .owl-nav.disabled .owl-next {
    position: absolute;
    right: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-pre-order .hatbazar_pre_order_slider .owl-nav.disabled .owl-prev span,
.hatbazar-pre-order .hatbazar_pre_order_slider .owl-nav.disabled .owl-next span {
    padding: 10px 18px;
    font-size: 30px;
}

/* Pre Order Product CSS End  */

/* Pre Order Product CSS Start  */
.hatbazar-category .hatbazar_category_slider {
    position: relative;
}

.hatbazar-category .hatbazar_category_slider .owl-nav.disabled {
    display: block !important;
}

.hatbazar-category .hatbazar_category_slider .owl-nav.disabled .owl-prev {
    position: absolute;
    left: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-category .hatbazar_category_slider .owl-nav.disabled .owl-next {
    position: absolute;
    right: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-category .hatbazar_category_slider .owl-nav.disabled .owl-prev span,
.hatbazar-category .hatbazar_category_slider .owl-nav.disabled .owl-next span {
    padding: 10px 18px;
    font-size: 30px;
}

/* Pre Order Product CSS End  */

/* Brand CSS Start  */
#hatbazar-all-brand .all-brand-breadcumb {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

#hatbazar-all-brand .all-brand-breadcumb .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

#hatbazar-all-brand .all-brand-breadcumb .content {
    position: relative;
    z-index: 2;
}


#hatbazar-all-brand .all-brand-wapper .category-image {
    text-align: center;
}

#hatbazar-all-brand .all-brand-wapper .category-image img {
    width: 200px;
    background: var(--primary-app-color);
    border-radius: 4px;
    padding: 2px;
    height: 170px;
}

#hatbazar-all-brand .all-brand-wapper .card .content h5 {
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-product-price-color);
}

#hatbazar-all-brand .all-brand-wapper .card .content p {
    text-align: center;
}


#hatbazar-all-brand .all-brand-wapper .card {
    border-left: 5px solid var(--primary-app-color);
    border-radius: 10px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 30px 0px;
}

#hatbazar-all-brand .all-brand-wapper .card:hover {
    border-left: 5px solid var(--secondary-app-color);
    transition: 0.6s;
}

#hatbazar-all-brand .all-brand-wapper .card:hover .category-image img {
    transform: scale(1.1) rotate(0deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: 0.6s;
}

#hatbazar-all-brand .all-brand-wapper .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-app-color-rgb), 0.03), rgba(var(--secondary-app-color-rgb), 0.03));
    opacity: 0;
    transition: 0.6s;
}

#hatbazar-all-brand .all-brand-wapper .card:hover .content p {
    background: var(--primary-app-color);
    color: #fff;
    transition: 0.6s;
}

#hatbazar-all-brand .all-brand-wapper .card .content p {
    text-align: center;
    font-size: 14px;
    color: #718096;
    font-weight: 500;
    margin: 0;
    display: inline-block;
    background: #f7fafc;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* Brand CSS End  */

/* Product CSS Start  */
.hatbazar-product-card .product-card {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: var(--border-2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s ease, transform .25s ease;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--s-t);
}

.hatbazar-product-card .original-price {
    font-size: 16px;
    color: #95a5a6;
    text-decoration: line-through;
}

.hatbazar-product-card .current-price {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-product-price-color);
}

.hatbazar-product-card .discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    color: var(--primary-product-price-color);
    padding: 6px 12px;
    border-radius: var(--border-2);
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 1px 1px var(--primary-product-price-color);
}

.hatbazar-product-card .date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-product-price-color);
    color: white;
    padding: 6px 16px;
    border-radius: var(--border-2);
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 1px 1px var(--primary-product-price-color);
}

.hatbazar-product-card .product-img-wrap {
    padding: 4px 4px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 280px;
    position: relative;
}

.hatbazar-product-card .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: top center;
    transition: transform .35s ease;
    border-radius: var(--border-2);
}

.hatbazar-product-card:hover {
    transform: scale(1.1);
    transition: var(--t-t);
}

.hatbazar-product-card:hover .product-card {
    border-color: var(--primary-product-price-color);
}

/* .hatbazar-product-card:hover .product-img {
    transform: scale(1.1);
} */

.hatbazar-product-card .product-body {
    padding: 20px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hatbazar-product-card .product-cat {
    font-size: 14px;
    color: #9aa3ad;
    font-weight: 500;
}

.hatbazar-product-card .product-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111;
    font-weight: 600;
    font-size: 14px;
}

.hatbazar-product-card .product-rating i {
    color: #f5b301;
    font-size: 14px;
}

.hatbazar-product-card .product-title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hatbazar-product-card .product-footer {
    padding: 20px 18px;
    border-top: 1px solid #edf0f3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hatbazar-product-card .price {
    font-weight: 800;
    font-size: 18px;
    color: #5b5cf6;
}

.hatbazar-product-card .cart-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 0;
    background: #fff;
    display: grid;
    place-items: center;
    transition: background .2s ease, transform .2s ease;
}

.hatbazar-product-card .cart-btn i {
    font-size: 18px;
    color: #111;
}

.hatbazar-product-card .cart-btn:hover {
    background: #f5f7fb;
    transform: scale(1.05);
}




/* Product CSS End  */


/* Product Details Page CSS Start  */
.product-details-wapper,
.countdown-container-wapper,
.product-name-container-wapper {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: white;
    border-radius: 10px;
}

.hat-bazar-product-details .discount-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-app-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hat-bazar-product-details .active-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-accent-color);
    color: white;
    padding: 6px 20px;
    border-radius: 25px;
    z-index: 10;
}

.hat-bazar-product-details .product-section {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.hat-bazar-product-details .owl-carousel {
    padding: 20px 20px;
}

.hat-bazar-product-details .owl-item img {
    max-height: 430px;
    object-fit: cover;
}

.hat-bazar-product-details .thumbnail-container {
    display: flex;
    gap: 10px;
    padding: 0px 10px;
}

.hat-bazar-product-details .thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hat-bazar-product-details .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hat-bazar-product-details .thumbnail.active {
    border-color: var(--primary-accent-color);
    box-shadow: 0 0 4px rgba(20, 184, 166, 0.5);
}

.hat-bazar-product-details .thumbnail:hover {
    transform: scale(1.05);
}



.hat-bazar-product-details .countdown-box {
    background: linear-gradient(135deg, var(--primary-app-color) 0%, var(--secondary-app-color) 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
}

.hat-bazar-product-details .time-out {
    text-align: center;
    font-size: 19px;
    color: #dc3545;
}

.hat-bazar-product-details .countdown-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.hat-bazar-product-details .countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.hat-bazar-product-details .join-button {
    background: var(--primary-app-color);
    border: none;
    padding: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    color: white;
    width: 100%;
    transition: transform 0.2s;
}

.hat-bazar-product-details .join-button-two {
    background: var(--secondary-app-color);
    border: none;
    padding: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    color: white;
    width: 100%;
    transition: transform 0.2s;
}

.hat-bazar-product-details .join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 145, 178, 0.3);
}

.hat-bazar-product-details .progress-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hat-bazar-product-details #vedio-section {
    position: sticky;
    top: 2px;
}

.hat-bazar-product-details .progress {
    height: 8px;
    border-radius: 10px;
}

.hat-bazar-product-details .progress-bar {
    background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.hat-bazar-product-details .progress-bar-green {
    background: linear-gradient(90deg, #14b8a6 0%, #10b981 100%);
}

.hat-bazar-product-details .price-current {
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--primary-app-color);
}

.hat-bazar-product-details .price-original {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #6b7280;
    font-weight: 600;
}

.hat-bazar-product-details .product-sku {
    display: inline-block;
    background: var(--primary-app-color);
    color: #fff;
    padding: 0px 10px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    line-height: 0;
    margin-bottom: 10px;
}

.hat-bazar-product-details .product-emi {
    display: inline-block;
    background: var(--product-emi-background-color);
    color: #fff;
    padding: 0px 10px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    line-height: 0;
    margin-bottom: 10px;
}

.hat-bazar-product-details .quantity-control {
    display: flex;
    align-items: center;
}

.hat-bazar-product-details .quantity-btn.first {
    width: 30px;
    height: 37px;
    background: white;
    color: var(--primary-app-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--primary-app-color);
}

.hat-bazar-product-details .quantity-input {
    width: 50px;
    text-align: center;
    border-radius: 0px;
    padding: 5px;
    border-top: 1px solid var(--primary-app-color);
    border-bottom: 1px solid var(--primary-app-color);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.hat-bazar-product-details .quantity-btn.second {
    width: 30px;
    height: 37px;
    border: 1px solid var(--primary-app-color);
    background: white;
    color: var(--primary-app-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.hat-bazar-product-details .quantity-btn:hover {
    background: var(--primary-app-color);
    color: white;
}

.hat-bazar-product-details .savings-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

.hat-bazar-product-details .price-box {
    background: #f0fdfa;
    border: 1px solid var(--primary-accent-color);
    border-radius: 10px;
    padding: 10px;
}

.hat-bazar-product-details .whatsapp-box {
    background: green;
    border-radius: 4px;
    padding: 4px 0px;
    text-align: center;
}

.hat-bazar-product-details #video {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    place-items: center;
    text-align: center;
    color: #fff;
    padding: 100px 0px;
}


.hat-bazar-product-details .product-details-tab .nav-link {
    color: #495057 !important;
    border: 3px solid transparent !important;
}

.hat-bazar-product-details .product-details-tab .nav-link:hover {
    border-color: #dee2e6 #fff #fff !;
}

.hat-bazar-product-details .product-details-tab .nav-link.active {
    border-color: #fff #fff var(--primary-app-color) !important;
}

.hat-bazar-product-details #video .play-btn {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary-app-color);
    box-shadow: 0 10px 30px var(--secondary-app-color);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hat-bazar-product-details #video .play-btn i {
    font-size: 38px;
    color: #fff;
    margin-left: 4px;
}

.hat-bazar-product-details #video .play-btn::before,
.hat-bazar-product-details #video .play-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    animation: ripple 1.8s infinite ease-out;
}

.hat-bazar-product-details .share-btn {
    padding: 6px 10px;
    border-radius: 4px;
    color: white;
}

.hat-bazar-product-details .share-btn.facebook {
    background: #1877F2;
}

.hat-bazar-product-details .share-btn.twitter {
    background: #1DA1F2;
}

.hat-bazar-product-details .share-btn.copy {
    background: #2b2929;
}

@keyframes ripple {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Product Details Page CSS End  */

/* All Product Page CSS Start  */

.hat-bazar-all-product .accordion-button:not(.collapsed) {
    color: white !important;
    background: var(--primary-app-color) !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.hat-bazar-all-product .accordion-button {
    color: white !important;
    background: var(--primary-app-color) !important;
}

.hat-bazar-all-product .accordion-button:focus {
    z-index: 3;
    border-color: unset !important;
    outline: 0;
    box-shadow: unset !important;
}

.hat-bazar-all-product .price-range-wrap .range-slider {
    margin-top: 20px;
}

.hat-bazar-all-product .price-range-wrap .range-slider .price-input {
    position: relative;
}

.hat-bazar-all-product .price-range-wrap .range-slider .price-input input {
    font-size: 16px;
    color: var(--primary-app-color);
    font-weight: 700;
    max-width: 40%;
    border: none;
    display: inline-block;
    cursor: not-allowed;
}

.hat-bazar-all-product .price-range-wrap .range-slider .price-input input:focus-visible {
    outline: unset !important;
}



.hat-bazar-all-product .price-range-wrap .price-range {
    border-radius: 0;
}

.hat-bazar-all-product .price-range-wrap .price-range.ui-widget-content {
    border: none;
    background: #ebebeb;
    height: 5px;
}

.hat-bazar-all-product .price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
    height: 13px;
    width: 13px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    outline: none;
    cursor: pointer;
}

.hat-bazar-all-product .price-range-wrap .price-range .ui-slider-range {
    background: var(--secondary-app-color);
    border-radius: 0;
}

.hat-bazar-all-product .price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
    background: var(--secondary-app-color);
}

.hat-bazar-all-product .fillters {
    background: var(--primary-app-color);
    padding: 10px 5px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* All Product Page CSS End  */


/* Check Out Page CSS Start  */

.hat-bazar-checkout .info-banner {
    background: linear-gradient(135deg, var(--primary-app-color) 0%, var(--secondary-app-color) 100%);
    color: white;
    padding: 20px;
    border-top-left-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top-right-radius: 4px;
}

.hat-bazar-checkout .info-banner h5 {
    font-weight: bold;
    margin-bottom: 10px;
}

.hat-bazar-checkout .form-card {
    background: white;
    border-bottom-left-radius: 4px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    border-bottom-right-radius: 4px;
}

.hat-bazar-checkout .cart-card {
    background: white;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.hat-bazar-checkout .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.hat-bazar-checkout .form-control,
.hat-bazar-checkout .form-select {
    border: 2px solid #e9ecef;
    border-radius: 4px;
    padding: 8px 15px;
    transition: all 0.3s;
}

.hat-bazar-checkout .form-control:focus,
.hat-bazar-checkout .form-select:focus {
    border-color: var(--primary-app-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.hat-bazar-checkout .payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hat-bazar-checkout .payment-option {
    flex: 1;
    min-width: 150px;
}

.hat-bazar-checkout .payment-option input[type="radio"] {
    display: none;
}

.hat-bazar-checkout .payment-option label {
    display: block;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    font-weight: 500;
}

.hat-bazar-checkout .payment-option input[type="radio"]:checked+label {
    border-color: var(--primary-app-color);
    background: #f0f3ff;
    color: var(--primary-app-color);
}

.hat-bazar-checkout .payment-option label:hover {
    border-color: var(--primary-app-color);
}

.hat-bazar-checkout .btn-order {
    background: linear-gradient(135deg, var(--primary-app-color) 0%, var(--secondary-app-color) 100%);
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    width: 100%;
    color: white;
    transition: transform 0.2s;
}

.hat-bazar-checkout .btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hat-bazar-checkout .cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.hat-bazar-checkout .cart-item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.hat-bazar-checkout .cart-item img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 10px;
    border: 1px solid var(--primary-app-color);
}

.hat-bazar-checkout .item-details {
    flex: 1;
}

.hat-bazar-checkout .item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.hat-bazar-checkout .quantity-control {
    display: flex;
    align-items: center;
}

.hat-bazar-checkout .quantity-btn.first {
    width: 30px;
    height: 37px;
    background: white;
    color: var(--primary-app-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--primary-app-color);
}

.hat-bazar-checkout .quantity-btn.second {
    width: 30px;
    height: 37px;
    border: 1px solid var(--primary-app-color);
    background: white;
    color: var(--primary-app-color);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.hat-bazar-checkout .quantity-btn:hover {
    background: var(--primary-app-color);
    color: white;
}

.hat-bazar-checkout .quantity-input {
    width: 50px;
    text-align: center;
    border-radius: 0px;
    padding: 5px;
    border-top: 1px solid var(--primary-app-color);
    border-bottom: 1px solid var(--primary-app-color);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}

.hat-bazar-checkout .quantity-input:focus-visible {
    outline: unset !important;
}

.hat-bazar-checkout .item-price {
    font-weight: bold;
    color: var(--primary-app-color);
}

.hat-bazar-checkout .remove-btn {
    background: var(--danger-app-color);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.hat-bazar-checkout .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.hat-bazar-checkout .summary-row:last-child {
    border-bottom: none;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-app-color);
    margin-top: 10px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/* Check Out Page CSS End  */


/* Footer CSS Start  */
#site-footer {
    background: #f7f7f8;
    color: #111827;
}

#site-footer .wm-label {
    font-weight: 700;
    margin-bottom: 6px;
}


#site-footer .wm-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 14px;
}

#site-footer .wm-list li {
    margin-bottom: 10px;
}

#site-footer .wm-nav {
	color: #2b406c;
	font-weight: 400;
}

#site-footer .wm-nav:hover {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}


#site-footer .wm-divider {
    border-color: #e5e7eb;
    opacity: 1;
}

#site-footer .wm-copy {
    color: #111827;
    font-weight: 400;
}

#site-footer .social a i {
	font-size: 22px;
}

#site-footer .social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .15);
	text-decoration: none;
	margin-right: .4rem;
	transition: all .2s ease;
}

#site-footer .social a:hover {
	border-color: var(--primary-app-color);
	transform: translateY(-2px);
}

#gotowhatsapp {
    position: fixed;
    bottom: 39px;
    right: 10px;
    font-size: 35px;
    color: #075E54;
    z-index: 3;
    width: 80px;
    height: 80px;
    animation: upDown 1.8s infinite ease-in-out;
}

#gotowhatsapp a {
    font-size: 35px;
    color: #075E54;
    z-index: 3;
    width: 55px;
    height: 55px;
    display: block;
    margin-left: 12px;
}

#gotowhatsapp span {
    font-size: 15px !important;
    color: var(--primary-product-price-color);
}

#myBtnWhatsapp img {
    width: 100%;
    height: 100%;
}

@keyframes upDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Footer CSS End  */


/* Order Traking System CSS End  */

.hat-bazar-traking-order .tracking-card-first {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hat-bazar-traking-order .card-header-custom {
    background: linear-gradient(135deg, var(--primary-app-color) 0%, var(--secondary-app-color) 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.hat-bazar-traking-order .card-header-custom h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.hat-bazar-traking-order .card-header-custom p {
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.hat-bazar-traking-order .search-section {
    padding: 40px;
    background: #f8fafc;
}

.hat-bazar-traking-order .search-box {
    max-width: 600px;
    margin: 0 auto;
}

.hat-bazar-traking-order .search-input {
    padding: 15px 25px;
    border: 2px solid #e2e8f0;
    font-size: 1.1rem;
}

.hat-bazar-traking-order .search-input:focus {
    border-color: var(--primary-app-color);
    box-shadow: unset !important;
}

.hat-bazar-traking-order .search-btn {
    padding: 15px 40px;
    background: var(--primary-app-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}



.hat-bazar-traking-order-details .tracking-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
}

.hat-bazar-traking-order-details .card-header-custom {
    background: linear-gradient(135deg, var(--primary-app-color) 0%, var(--secondary-app-color) 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.hat-bazar-traking-order-details .card-header-custom h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.hat-bazar-traking-order-details .card-header-custom p {
    margin: 10px 0 0 0;
    opacity: 0.9;
}

.hat-bazar-traking-order-details .order-details {
    padding: 40px;
}

.hat-bazar-traking-order-details .order-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.hat-bazar-traking-order-details .info-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #cbd5e1;
    align-items: center;
}

.hat-bazar-traking-order-details .info-row:last-child {
    border-bottom: none;
}

.hat-bazar-traking-order-details .info-label {
    font-weight: 600;
    color: #475569;
    font-size: 1rem;
}

.hat-bazar-traking-order-details .info-value {
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
}

.hat-bazar-traking-order-details .status-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hat-bazar-traking-order-details .status-processing {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.hat-bazar-traking-order-details .status-shipped {
    background: linear-gradient(135deg, var(--primary-app-color) 0%, var(--secondary-app-color) 100%);
    color: #fff;
}

.status-delivered {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.hat-bazar-traking-order-details .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hat-bazar-traking-order-details .section-title i {
    color: var(--primary-app-color);
}

.hat-bazar-traking-order-details .timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 40px;
}

.hat-bazar-traking-order-details .timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.hat-bazar-traking-order-details .timeline-item:last-child {
    padding-bottom: 0;
}

.hat-bazar-traking-order-details .timeline-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #e2e8f0 0%, #cbd5e1 100%);
}

.hat-bazar-traking-order-details .timeline-item:last-child::before {
    display: none;
}

.hat-bazar-traking-order-details .timeline-icon {
    position: absolute;
    left: -52px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hat-bazar-traking-order-details .timeline-icon.active {
    background: linear-gradient(135deg, var(--primary-success-color) 0%, #059669 100%);
    animation: pulse 2s infinite;
}

.hat-bazar-traking-order-details .timeline-icon.pending {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.8);
    }
}

.hat-bazar-traking-order-details .timeline-content {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.3s ease;
}

.hat-bazar-traking-order-details .timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hat-bazar-traking-order-details .timeline-content.active {
    border-color: var(--primary-success-color);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hat-bazar-traking-order-details .timeline-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.hat-bazar-traking-order-details .timeline-time {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hat-bazar-traking-order-details .timeline-desc {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.hat-bazar-traking-order-details .product-item {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.hat-bazar-traking-order-details .product-item:hover {
    border-color: var(--primary-app-color);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    transform: translateY(-1px);
}

.hat-bazar-traking-order-details .product-img {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 1px solid #cbd5e1;
}

.hat-bazar-traking-order-details .product-details {
    flex: 1;
}

.hat-bazar-traking-order-details .product-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.hat-bazar-traking-order-details .product-meta {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.hat-bazar-traking-order-details .product-price {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary-app-color);
    align-self: center;
}


.hat-bazar-product-details .product__details__tab__desc .primary-btn,
#reviewCreateForm .primary-btn {
    background: var(--primary-app-color);
    color: white;
}

@media (max-width: 768px) {
    .hat-bazar-traking-order-details .order-details {
        padding: 20px;
    }

    .hat-bazar-traking-order-details .product-item {
        flex-direction: column;
        text-align: center;
    }

    .hat-bazar-traking-order-details .product-img {
        margin: 0 auto;
    }

    .hat-bazar-traking-order-details .timeline {
        padding-left: 40px;
    }

    .hat-bazar-traking-order-details .timeline-icon {
        left: -42px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .hat-bazar-traking-order-details .timeline-item::before {
        left: -26px;
    }
}


.feature-section .feature-card {
    background: #f3f4f6;
    border: 1px solid #eceff3;
    border-radius: var(--border-1);
    padding: 30px 15px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-section .feature-card:hover {
    transform: translateY(-1px);
}

.feature-section .feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-section .feature-icon img {
    width: 100%;
    height: 100%;
}



.feature-section .feature-title {
    font-weight: 700;
    color: #111827;
}

.feature-section .feature-text {
    font-size: .875rem;
    color: #6b7280;
}



/* Order Traking System CSS End  */



.hatbazar-success-projects .hatbazar_success_projects_slider {
    position: relative;
}

.hatbazar-success-projects .hatbazar_success_projects_slider .owl-nav.disabled {
    display: block !important;
}

.hatbazar-success-projects .hatbazar_success_projects_slider .owl-nav.disabled .owl-prev {
    position: absolute;
    left: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-success-projects .hatbazar_success_projects_slider .owl-nav.disabled .owl-next {
    position: absolute;
    right: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-success-projects .hatbazar_success_projects_slider .owl-nav.disabled .owl-prev span,
.hatbazar-success-projects .hatbazar_success_projects_slider .owl-nav.disabled .owl-next span {
    padding: 10px 18px;
    font-size: 30px;
}

.hatbazar-success-projects .hatbazar_success_projects_slider .owl-prev:hover,
.hatbazar-success-projects .hatbazar_success_projects_slider .owl-next:hover {
    color: var(--primary-color) !important;
}



.hatbazar-success-projects {
    position: relative;
    overflow: hidden;
}

.success-projects-header h4 {
    font-size: 24px;
    letter-spacing: 0.3px;
}

.success-project-btn {
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.success-project-btn:hover {
    transform: translateY(-2px);
}

.success-project-card {
    background: #fff;
    border-radius: var(--border-2);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.success-project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.success-project-image {
    border-radius: var(--border-2);
    overflow: hidden;
    position: relative;
}

.success-project-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease;
    display: block;
}

.success-project-card:hover .success-project-image img {
    transform: scale(1.06);
}

/* Optional overlay effect */
.success-project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
    opacity: 0;
    transition: 0.3s ease;
    border-radius: 14px;
}

.success-project-card:hover .success-project-image::after {
    opacity: 1;
}

.hatbazar_success_projects_slider .item {
    padding: 8px;
}

.hatbazar_success_projects_slider .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.hatbazar_success_projects_slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    transition: 0.3s ease;
}

.hatbazar_success_projects_slider .owl-dots .owl-dot.active span {
    width: 24px;
    border-radius: 20px;
    background: #198754;
}

@media (max-width: 767px) {
    .success-projects-header h4 {
        font-size: 20px;
    }

    .success-project-image img {
        height: 150px;
    }

    .success-project-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

.customer-feedbacks-card iframe {
    width: 100%;
    height: 320px;
    border-radius: var(--border-2);
}




.hatbazar-customer-feedbacks .hatbazar_customer_feedbacks_slider {
    position: relative;
}

.hatbazar-customer-feedbacks .hatbazar_customer_feedbacks_slider .owl-nav.disabled {
    display: block !important;
}

.hatbazar-customer-feedbacks .hatbazar_customer_feedbacks_slider .owl-nav.disabled .owl-prev {
    position: absolute;
    left: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-customer-feedbacks .hatbazar_customer_feedbacks_slider .owl-nav.disabled .owl-next {
    position: absolute;
    right: 0%;
    top: 47%;
    background: white;
    border-radius: 50%;
}

.hatbazar-customer-feedbacks .hatbazar_customer_feedbacks_slider .owl-nav.disabled .owl-prev span,
.hatbazar-customer-feedbacks .hatbazar_customer_feedbacks_slider .owl-nav.disabled .owl-next span {
    padding: 10px 18px;
    font-size: 30px;
}


.hatbazar-customer-feedbacks .hatbazar_customer_feedbacks_slider .owl-prev:hover,
.hatbazar-customer-feedbacks .hatbazar_customer_feedbacks_slider .owl-next:hover {
    color: var(--primary-color) !important;
}

.wm-logo-icon{
    width: 110px;
}

.social .facebook {
    color: #1877F2;
}

.social .instagram {
    color: #d6249f;
}

.social .youtube {
    color: #FF0000;
}

.social .linkedin {
    color: #0A66C2;
}

.social .twitter {
    color: #2b2929;
}

.social .pinterest {
    color: #E60023;
}

.social .skype {
    color: #00AFF0;
}

.social .whatsapp {
    color: #25D366;
}

.social .reddit {
    color: #FF4500;
}

#add-to-wish-list-btn {
	font-size: 15px !important;
	padding: 6px 20px !important;
}

.hatbazar_categories_slider.owl-carousel .owl-stage-outer {
	height: 200px !important;
}

.hat-bazar-successfull-project .image_div {
	width: 100%;
	height: 220px;
	overflow: hidden;
	border: 1px solid var(--primary-product-price-color);
	border-radius: 4px;
}

.hat-bazar-successfull-project img {
    width: 100%;
    height: 100%;
}
