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

body {
    font-family: "Poppins", sans-serif;
    background-color: #f2f2f2;
}

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: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    font-weight: 600;
    background-color: var(--primary-app-color);
    color: white;
    border: 1px solid var(--primary-app-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;
}

#hat-bazar-hero{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

#hat-bazar-hero .hero-content-parent {
    width: 50%;
}
#hat-bazar-hero .hero-image-parent {
	display: flex;
	/* justify-content: end; */
	padding-right: 15px;
    width: 50%;
}

#hat-bazar-hero .item img {
    width: 100%;
    height: 50vh;
}

#hat-bazar-hero .slider-content {
	padding: 0px 50px;
}

#hat-bazar-hero .slider-content .title {
	text-transform: uppercase;
	color: var(--primary-app-color);
	font-size: 18px;
	font-weight: 600;
}
#hat-bazar-hero .slider-content .sub-title {
	text-transform: uppercase;
	font-size: 40px;
	font-weight: 400;
}

#hat-bazar-hero .slider-content .button {
	border: none;
    background: var(--primary-app-color);
    color: white;
    padding: 6px 25px;
    border-radius: 4px;
}
.hatbazar-categories {
    background: white;
}

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

.hatbazar-categories .item a img {
    display: block;
    width: 100%;
    border-radius: 4%;
    border: 2px solid var(--primary-app-color);
}

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

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

.hatbazar-categories .item:hover {
    transform: scale(1.1);
    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: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    font-weight: 600;
    background-color: var(--primary-app-color);
    color: white;
    border: 1px solid var(--primary-app-color);
    margin-top: 25px;
}



/* 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  */



/* 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 {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hatbazar-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hatbazar-product-card .product-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hatbazar-product-card .product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 80%;
    overflow: hidden;
    background: #f8f9fa;
}

.hatbazar-product-card .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hatbazar-product-card:hover .product-image {
    transform: scale(1.08);
}


.hatbazar-product-card .product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hatbazar-product-card .product-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-app-color);
	margin-bottom: 1px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 44px;
	text-align: center;
}

.hatbazar-product-card .product-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0px;
}

.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: 2px;
	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: 4px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 1px 1px var(--primary-product-price-color);
}

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

.hatbazar-product-card .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #f39c12;
}

.hatbazar-product-card .rating-count {
    color: #7f8c8d;
    font-size: 13px;
    margin-left: 4px;
}

.hatbazar-product-card .product-actions {
    padding: 0 16px 16px;
    display: flex;
    justify-content: center;
}



/* Product CSS End  */

/* Hot Deals Product CSS Start  */

.hatbazar-hot-deals .count_products_badge {
    background: var(--secondary-app-color);
    padding: 5px 6px;
    border-radius: 4%;
}

/* Hot Deals 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;
    justify-content: center;
}

.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: 20%;
    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;
}

.hat-bazar-checkout .checkout-pay-image-main {
    background: #fff;
    margin-bottom: 2rem;
}

.hat-bazar-checkout .checkout-pay-image {
	width: 56%;
	margin: auto;
	padding: 10px;
}
/* Check Out Page CSS End  */


/* Footer CSS Start  */

#site-footer {
    background: var(--footer-app-bg);
    color: #fff;
    padding: 56px 0 24px;
    position: relative;
    overflow: hidden;
}

#site-footer::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-app-color), var(--secondary-app-color));
    opacity: .85;
}

#site-footer h5 {
    color: var(--primary-app-color);
    font-weight: 700;
    letter-spacing: .2px;
    margin-bottom: .9rem;
}

#site-footer .footer-brand {
    font-weight: 800;
    color: #fff;
    font-size: 1.15rem;
    height: 70px;
}

#site-footer .footer-brand img{
    height: 100%;
}

#site-footer .footer-link {
    color: black;
    text-decoration: none;
    display: inline-block;
    padding: .25rem 0;
    transition: color .15s ease, transform .15s ease;
}

#site-footer .footer-link:hover {
    color: rgb(22, 20, 20);
}

#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);
    color: var(--primary-app-color);
    text-decoration: none;
    margin-right: .4rem;
    transition: all .2s ease;
}
#site-footer .social a i{
    font-size: 22px;
}

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

#site-footer .footer-divider {
    border-color: rgba(255, 255, 255, .08) !important;
    margin: 22px 0;
}

#site-footer .copyright {
    color: var(--primary-app-color);
    font-size: .95rem;
}

#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;
    }
}



/* Order Traking System CSS End  */



