:root {
    --font-family: "Open Sans", sans-serif;
    --font-family-poppins: "Poppins", sans-serif;
    --primary-color: #222529;
    --secondary-color: #777777;
    --new-danger-color: #EC2222;
    --new-success-color: #28A745;
    --danger-color: #D43D3F;
    --mute-color: #888888;
    --primary-button-color: #F8B900;
    --primary-card-hover-color: #353535;
    --primary-button-text-color: #303030;
    --secondary-button-color: #232429;
    --category-bg-color: #F7F7F7;
    --product-bg-color: #F4F4F4;
    --marquee-bg-color: #F4F5F5;
    --footer-bg-color: #F4F5F5;
    --footer-content-color: #7A7A7A;
    --footer-link-color: #7A7A7A;
    --footer-copyright-text-color: #515151;
}

body {
    font-family: var(--font-family);
    color: var(--primary-color);
    font-size: 14px;
}

section {
    margin-bottom: 60px;
    /* display: none; */
}

th {
    color: var(--primary-color) !important;
}

td {
    color: var(--primary-color) !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

label {
    font-size: 14px !important;
}

input {
    color: var(--primary-color) !important;
}

input::placeholder {
    color: var(--mute-color) !important;
}

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

.text-red {
    color: var(--new-danger-color);
}

.primary-color {
    color: var(--primary-button-color);
}

.bg-primary {
    background-color: var(--primary-button-color) !important;
}

.text-muted {
    color: var(--mute-color) !important;
}

.icon-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-link a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

.announcement-bar {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.loop-text {
    display: inline-block;
    padding-left: 100%;
    animation: loopText 20s infinite linear;
}

@keyframes loopText {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

.loop-wrapper {
    display: flex;
    width: max-content;
    animation: seamless 20s infinite linear;
    gap: 30px;
}

@keyframes seamless {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.navbar .nav-link {
    padding: 15px 5px;
}

.nav-link:hover {
    opacity: 0.6;
}

.range-btn {
    padding: 10px 10px !important;
    font-size: 12px !important;
    text-decoration: none;
}

.range-control {
    font-size: 12px !important;
    width: 10px !important;
    text-align: center;
    padding: 0;
    max-width: 50px;
}

.range-control::-webkit-outer-spin-button,
.range-control::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.range-control[type=number] {
    -moz-appearance: textfield;
}

.nav-button {
    background-color: var(--secondary-button-color);
    color: #fff;
    border: none;
    /* padding: 8px 16px; */
    border-radius: 8px;
    width: 40px;
    aspect-ratio: 1/1;
    padding: 0px;
    transition: background-color 0.2s ease-in-out;
}

.nav-button:hover {
    background-color: var(--primary-button-color);
}

.nav-button i {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-value {
    top: 6px;
    left: 6px;
    font-size: 8px;
    font-style: normal;
    background-color: white;
    width: 12px;
    height: 12px;
    color: #000;
    border-radius: 50%;
}

.nav-logo {
    width: 200px;
}

.burger-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mega-dropdown {
    position: relative;
}

.mega-dropdown:hover .mega-menu {
    display: block;
}

.mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 1300px;
    background: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    padding: 30px 0;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mega-menu .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-menu h6 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
    margin: 0px;
}

.mega-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mega-menu ul li {
    margin-bottom: 6px;
}

.mega-menu ul li a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.mega-menu ul li a:hover {
    color: #000;
    text-decoration: underline;
}

.mega-menu img {
    padding: 2px;
    max-width: 60px;
    /* max-width: 100%; */
    transition: 0.3s;
    /* max-height: 40px; */
    height: 60px;
}

.mega-menu a {
    background-color: var(--product-bg-color);
    transition: transform 0.3s ease-in-out;
    padding: 10px 0px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.mega-menu a:hover {
    transform: translateY(-5px);
    /* box-shadow: var(--primary-button-color) 0px 0px 15px; */
    border-color: var(--primary-button-color) !important;
}

.btn-primary {
    background-color: var(--primary-button-color);
    color: #fff;
    border: 2px solid var(--primary-button-color) !important;
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: bold;
    height: fit-content;
    text-wrap: nowrap;
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--primary-button-color);
}

.btn-primary:active {
    background-color: var(--primary-button-color) !important;
    opacity: 0.8;
}

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border-style: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 15px;
    border: 1px solid #000;
    height: fit-content;
    text-wrap: nowrap;
    font-weight: bold;
}

.btn-secondary:hover,
.btn-secondary.active {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-secondary i {
    line-height: 0px;
    margin-right: 2px;
}

.add-to-cart-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: none;

    background-color: var(--secondary-button-color);
    color: #fff;
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 15px;
    height: fit-content;
    text-wrap: nowrap;
    font-weight: bold;
    text-decoration: none;
}

.add-to-cart-btn:after {
    content: " ";
    width: 0%;
    height: 110%;
    background: var(--primary-button-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    left: 0;
}

.add-to-cart-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.add-to-cart-btn span {
    z-index: 20;
}

.add-to-cart-btn:hover span {
    z-index: 20;
    animation: scaleUp 0.3s ease-in-out;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}


.btn-danger {
    background-color: var(--new-danger-color);
    font-family: var(--font-family-poppins);
    color: #fff;
    border-style: none;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 12px;
    height: fit-content;
    font-weight: 600;
}

.btn-success {
    background-color: var(--new-success-color);
    font-family: var(--font-family-poppins);
    color: #fff;
    border-style: none;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: 12px;
    height: fit-content;
    font-weight: 600;
}

.new-btn {
    margin: 10px;
    z-index: 10;
}

.btn-danger-action {
    background-color: var(--new-danger-color);
    font-family: var(--font-family-poppins);
    color: #fff;
    border: 1px solid var(--new-danger-color);
    border-radius: 10px;
    padding: 5px 15px;
    font-size: 12px;
    width: 20px;
    aspect-ratio: 1 / 1;
    font-weight: 600;
}

.btn-danger-action:hover {
    color: var(--new-danger-color);
    background-color: #fff;
    border: 1px solid var(--new-danger-color);
}

.swiper-slide-item {
    background-size: cover;
    border-radius: 10px;
    height: auto;
}

.hero-text-container {
    padding: 50px;
    padding-right: 50%;
}

.inner-hero-text-container {
    padding: 80px;
}

.hero-bg-img {
    border-radius: 10px;
    object-fit: cover;
}

.hero-suffix {
    font-family: var(--font-family-poppins);
    font-size: 30px;
}

.hero-title {
    font-size: 80px;
    font-weight: bold;
}

.inner-hero-title {
    font-size: 50px;
    font-weight: bold;
}

.hero-subtitle {
    font-family: var(--font-family-poppins);
    font-size: 18px;
}

.hero-img {
    height: 400px;
}

.product-img {
    height: 300px;
}

.hero-inner {
    flex-direction: row !important;
}

.hero-inner-2 {
    flex-direction: row !important;
}

.heroSwiper {
    overflow: hidden;
}

.hero-inner-img {
    height: 500px;
    margin-top: -55px;
}

.hero-inner-img-2 {
    width: 160px;
    margin-right: -83px;
    margin-bottom: 16px;
    z-index: 10;
}

.title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
}

.subtitle {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
}

.context {
    color: var(--primary-color);
    font-size: 16px;
}

.category-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
}

.subtitle-varient {
    color: var(--secondary-color);
    font-family: var(--font-family-poppins);
    font-size: 12px;
    font-weight: 400;
}

.category-card {
    min-width: 130px;
    text-decoration: none;
}

.category-card img {
    /* width: 125px !important; */
    height: 100px !important;
    transition: transform 0.3s ease-in-out;
}

.category-card:hover img {
    transform: translateY(-5px);
}

.product-card {
    /* min-width: 300px; */
    background-color: var(--product-bg-color);
    padding: 20px !important;
    /* border: 2px solid var(--product-bg-color) !important; */
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 2px 2px 10px 1px var(--mute-color) !important; */
    /* border-color: var(--primary-button-color) !important; */
    border-radius: 12px;
    /* background-color: var(--primary-button-color); */
}

.product-card__transition {
    position: relative;
    overflow: hidden;
    /* padding-top: 0 !important; */
}

.product-card__transition:after {
    content: " ";
    z-index: -1;
    width: 0%;
    height: 100%;
    background: var(--primary-card-hover-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    left: 0;
    top: 0;
}

.product-card__transition:hover:after,
.product-card__transition:hover .add-to-cart-btn::after {
    right: auto;
    left: 0;
    width: 100%;
}

.product-card__transition:hover .product-title,
.product-card__transition:hover .product-discount {
    color: #fff;
}

.product-card__transition:hover img {
    filter: drop-shadow(0 0 10px #f8b900ab);
}

.add-to-cart-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: none;

    color: var(--secondary-button-color);
    background-color: #fff;
    border: 1px solid var(--secondary-button-color);
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 15px;
    height: fit-content;
    text-wrap: nowrap;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.add-to-cart-btn:after {
    content: " ";
    width: 0%;
    height: 110%;
    background: var(--primary-button-color);
    position: absolute;
    transition: all 0.4s ease-in-out;
    left: 0;
}

.add-to-cart-btn:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.add-to-cart-btn span {
    z-index: 20;
    transition: all 0.4s ease-in-out;
}

.product-card__transition:hover .add-to-cart-btn span {
    z-index: 20;
    /* animation: scaleUp 0.3s ease-in-out; */
    color: #fff;
}

.add-to-cart-btn:hover span {
    z-index: 20;
    animation: scaleUp 0.3s ease-in-out;
}

.add-to-cart-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px 1px var(--secondary-button-color) !important;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

/* .product-card:hover .product-title,.product-card:hover .product-price, .product-card:hover .product-discount, .product-card:hover .rating-container{
    color: #fff;
} */

.product-title {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.two-lines {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    width: 100%;
}

.product-title:hover {
    text-decoration: underline;
    cursor: pointer;
}

.product-card img {
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.product-price {
    font-family: var(--font-family-poppins);
    color: var(--mute-color);
    text-decoration-line: line-through;
    font-size: 16px;
    font-weight: 500;
    text-wrap: nowrap;
    transition: color 0.3s ease-in-out;
}

.product-discount {
    font-family: var(--font-family-poppins);
    color: var(--danger-color);
    font-size: 16px;
    font-weight: 700;
    text-wrap: nowrap;
    transition: color 0.3s ease-in-out;
}

.rating-container {
    margin-bottom: 20px;
    color: var(--primary-button-color);
    transition: color 0.3s ease-in-out;
}

.interactive-rating {
    gap: 8px;
    font-size: 1.5rem;
    color: var(--primary-button-color);
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
}

.interactive-rating i {
    transition: transform 0.1s ease;
}

.interactive-rating i:hover {
    transform: scale(1.1);
}

.footer-feature {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.footer-feature i {
    font-size: 50px;
}

.footer-feature p {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0px;
}

.footer-description {
    font-family: var(--font-family-poppins);
    color: var(--footer-content-color);
    font-size: 16px;
    margin: 0;
    max-width: 340px;
}

.footer-bottom {
    background-color: var(--footer-bg-color);
    border-radius: 10px;
    padding-top: 150px
}

.footer-link-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
}

.footer-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--footer-link-color);
    text-wrap: nowrap;
    margin-bottom: 12px;
}

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

.footer-contact {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-contact:hover a {
    color: var(--primary-color);
}

.footer-contact i {
    margin-right: 5px;
}

.footer-contact a {
    text-decoration: none;
    font-family: var(--font-family-poppins);
    font-size: 16px;
    color: var(--footer-link-color);
}

.footer-whatsapp-btn {
    background-color: #25D366;
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    color: white;
    animation: jump 1s infinite;
}

.footer-whatsapp-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: waterRipple 1s infinite;
}

.scroll-top-btn {
    background-color: var(--primary-button-color);
    color: #fff;
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 0 2px var(--primary-button-color) !important;
}

@keyframes waterRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.jump {
    display: inline-block;
    animation: jump 1s infinite;
}

@keyframes jump {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.pop {
    display: inline-block;
    animation: pop 1s infinite;
}

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

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

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


.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: var(--primary-color);
    color: #fff;
    width: 38px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.social-btn:hover {
    border-color: var(--primary-color);
    border-style: solid;
    border-width: 2px;
}

.social-btn i {
    line-height: 0px;
}

.filter-title {
    font-size: 16px;
    font-weight: bold;
}

.btn-filter {
    padding: 8px 12px !important;
}


.marquee {
    --h: 35px;
    --gap: 90px;
    --d: 80s;

    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: var(--gap);

    animation: scroll var(--d) linear infinite;
}

.marquee-content img {
    height: 80px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.swiper-button-next {
    background-color: #fff;
    border-radius: 50%;
    right: -22px !important;
    border-width: 1px;
    border-color: #CCCCCC;
    border-style: solid;
}

.swiper-button-next svg {
    color: #000;
    height: 30%;
}

.swiper-button-next svg path {
    stroke-width: 2px;
    stroke: currentColor;
}

.swiper-button-prev {
    background-color: #fff;
    border-radius: 50%;
    left: -22px !important;
    border-width: 1px;
    border-color: #CCCCCC;
    border-style: solid;
}

.swiper-button-prev svg {
    color: #000;
    height: 30%;
}

.swiper-button-prev svg path {
    stroke-width: 2px;
    stroke: currentColor;
}

.category-swiper-next {
    background-color: #fff;
    border-radius: 50%;
    right: -14px !important;
    border-width: 1px;
    border-color: #CCCCCC;
    border-style: solid;
    z-index: 10;

    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50px !important;
}

.category-swiper-next i {
    line-height: 0;
}

.category-swiper-prev {
    background-color: #fff;
    border-radius: 50%;
    left: -14px !important;
    border-width: 1px;
    border-color: #CCCCCC;
    border-style: solid;
    z-index: 10;

    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50px !important;
}

.category-swiper-prev i {
    line-height: 0;
}

.swiper-button-lock {
    display: none !important;
}

.swiper-button-disabled {
    /* opacity: 0.35;
    pointer-events: none; */
    display: none !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.breadcrumb {
    font-weight: bold !important;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--footer-link-color);
}

.breadcrumb-item.active {
    text-decoration: none;
    color: var(--primary-color);
}

.card-primary {
    background-color: var(--product-bg-color);
    border-radius: 10px;
    padding: 30px;
    /* border: 1px solid var(--primary-color); */
}

.property-title {
    font-size: 16px;
    margin-bottom: 15px;
}

.property-tag {
    padding: 8px 20px !important;
}

.reset-button {
    font-family: var(--font-family-poppins);
    color: var(--danger-color);
    font-size: 16px;
    font-weight: 500;
    text-wrap: nowrap;
    border-style: none;
    background-color: transparent;
}

.reset-button:hover {
    cursor: pointer;
    text-decoration: underline;
}

.btn-action {
    background-color: #fff;
    color: var(--primary-color);
    border-style: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 12px;
    border: 1px solid #000;
    height: fit-content;
    text-wrap: nowrap;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-action:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-color {
    width: 50px;
    height: 50px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
}

.btn-color i {
    font-size: 25px;
    display: none !important;
}

.btn-color.active {
    color: #fff;
    border: 3px solid var(--primary-color);
}

.btn-color.active i {
    display: flex !important;
}

.btn-secondary-varient {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 15px;
    height: fit-content;
    text-wrap: nowrap;
    font-weight: bold;
}

.btn-secondary-varient:hover {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #000;
}

.btn-dropdown {
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 15px;
    height: fit-content;
    text-wrap: nowrap;
    font-weight: bold;
}

.btn-dropdown:hover {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid #000;
}

.btn-dropdown:focus {
    border: 1px solid var(--primary-button-color) !important;
    box-shadow: 0 0 0 2px var(--primary-button-color) !important;
}

.dropdown-menu.w-100 {
    min-width: 100% !important;
    max-height: 335px;
    overflow: auto;
    /* max-width: 100%; */
    width: fit-content !important;
    inset: 3px auto auto 0px !important;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-menu.w-100 .dropdown-item {
    /* overflow: hidden;
    text-overflow: ellipsis; */
    white-space: nowrap;
    display: block;
    width: 100%;
}

.dropdown-item:active {
    color: var(--primary-color);
    text-decoration: none;
    background-color: var(--primary-button-color);
}

.collection-swiper-next {
    background-color: #fff;
    border-radius: 50%;
    right: 3px !important;
    border-width: 1px;
    border-color: #CCCCCC;
    border-style: solid;
    z-index: 10;

    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40%;
}

.collection-swiper-next i {
    line-height: 0;
}

.collection-swiper-prev {
    background-color: #fff;
    border-radius: 50%;
    left: 3px !important;
    border-width: 1px;
    border-color: #CCCCCC;
    border-style: solid;
    z-index: 10;

    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40%;
}

.collection-swiper-prev i {
    line-height: 0;
}

.card-secondary {
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.card-secondary:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 15px;
}

.card-varient {
    border: 1px solid var(--mute-color);
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
    height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.card-varient-gold {
    border-radius: 10px;
    background-color: var(--primary-button-color);
    color: #fff;
    height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.card-secondary.active {
    border: 3px solid var(--secondary-color);
}

.product-tab-item {
    flex: 1;
    text-align: center;
    border-radius: 35px !important;
}

.product-tab-item.active {
    background: var(--primary-button-color) !important;
    color: #fff !important;
}

.product-tab-item button {
    color: var(--primary-color) !important;
}

.product-tab-item.active button {
    color: #fff !important;
}

.profile-tab-item {
    flex: 1;
    text-align: center;
    border-radius: 35px !important;
    border: 1px solid var(--secondary-button-color);
}

.profile-tab-item.active {
    background: var(--secondary-button-color) !important;
    color: #fff !important;
}

.profile-tab-item button {
    color: var(--primary-color) !important;
    background-color: #fff;
}

.profile-tab-item.active button {
    color: #fff !important;
}

.ratingProgress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ratingProgress p {
    margin-bottom: 0;
}

.specification-tag {
    width: 25px;
}

.specification-title {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
}

.specification-subtitle {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: bold;
}

.swiper-button-disabled {
    display: none !important;
}

.form-control,
.form-select {
    font-family: var(--font-family);
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid var(--mute-color) !important;
}

.form-select {
    font-weight: 400;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid var(--primary-button-color) !important;
    box-shadow: 0 0 0 1px var(--primary-button-color) !important;
}

.list-group {
    border-radius: 10px;
    /* border: 1px solid var(--primary-color); */
    background-color: var(--product-bg-color);
}

.list-group-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.list-group-item {
    background-color: var(--product-bg-color);
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23222529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: var(--marquee-bg-color);
}

.accordion-button:focus {
    box-shadow: none;
}

progress {
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    height: 8px;
}

progress::-webkit-progress-bar {
    background-color: var(--category-bg-color);
    border-radius: 10px;
}

progress::-webkit-progress-value {
    background-color: var(--primary-button-color);
    border-radius: 10px;
}

progress::-moz-progress-bar {
    background-color: var(--primary-button-color);
}

.review-filter-btn {
    border-radius: 10px;
    padding: 10px 15px;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 10px;
}

.accordion-item button {
    border-radius: 10px !important;
}

/* Sign In */
/* .sign-main {
    padding-top: 0px;
} */

.sign-form {
    padding: 5rem 10rem;
}

.sign-logo {
    width: 100px;
}

.btn-signup {
    background-color: #1c4ea6;
    border: none;
    padding: 10px;
}

.promo-section {
    background-image: url(/assets/web/images/login-bg.png);
    background-size: cover;
    background-position: center;
}

.form-check-input:checked {
    background-color: var(--primary-button-color);
    border-color: var(--primary-button-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 1px var(--primary-button-color) !important;
    border-color: var(--primary-button-color);
}

.error-code {
    font-family: var(--font-family-poppins);
    line-height: 160px;
    font-size: 130px;
    font-weight: 800;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.error-code span {
    color: var(--primary-button-color);
}

.error-msg {
    font-size: 26px;
    font-weight: 700;
}

.error-sub-msg {
    font-size: 16px;
    font-weight: 600;
}

.order-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.order-id-text {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
}

.order-id-text span {
    color: var(--secondary-button-color);
}

.order-item img {
    width: 70px;
    height: 70px;
    border: 1px solid var(--mute-color);
    border-radius: 10px;
    padding: 12px;
}

.order-item .title {
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: start;
    max-width: 400px;
}

.order-item .title:hover {
    text-decoration: underline;
}

.order-item .subtitle {
    font-size: 14px;
    font-weight: 600;
}

.order-item .quantity {
    font-size: 14px;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

@media (max-width: 1400px) {
    .hero-suffix {
        font-size: 20px;
    }

    .hero-title {
        font-size: 70px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-img {
        height: 400px;
    }

    .product-img {
        height: 300px;
    }

    .hero-inner {
        flex-direction: row !important;
    }

    .hero-inner-2 {
        flex-direction: row !important;
    }

    .category-swiper-prev {
        top: 25% !important;
    }

    .category-swiper-next {
        top: 25% !important;
    }
}

@media (max-width: 1200px) {
    .hero-img {
        height: 320px;
    }

    .product-img {
        height: 250px;
    }

    .hero-suffix {
        font-family: var(--font-family-poppins);
        font-size: 20px;
    }

    .hero-title {
        font-size: 50px;
        font-weight: bold;
    }

    .hero-subtitle {
        font-family: var(--font-family-poppins);
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hero-inner {
        flex-direction: row !important;
    }

    .hero-inner-2 {
        flex-direction: row !important;
    }

    .hero-text-container {
        padding: 50px;
    }

    .inner-hero-text-container {
        padding: 50px;
    }

    .hero-inner-img {
        height: 400px;
        margin-top: -80px;
    }

    .hero-inner-img-2 {
        width: 120px;
        margin-right: -83px;
        margin-bottom: 16px;
        z-index: 10;
    }

    .category-swiper-prev {
        top: 25% !important;
    }

    .category-swiper-next {
        top: 25% !important;
    }

    .order-item .title {
        max-width: 150px;
    }
}

@media (max-width: 992px) {
    .hero-img {
        height: 220px;
    }

    .product-img {
        height: 250px;
    }

    .hero-suffix {
        font-size: 18px;
    }

    .hero-title {
        font-size: 45px;
        font-weight: bold;
        margin-bottom: 10px !important;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 10px !important;
    }

    .hero-inner {
        flex-direction: row !important;
    }

    .hero-inner-2 {
        flex-direction: column !important;
    }

    .hero-text-container {
        padding: 50px;
    }

    .swiper-button-next {
        right: -18px !important;
        width: 35px;
        height: 35px;
    }

    .swiper-button-prev {
        left: -18px !important;
        width: 35px;
        height: 35px;
    }

    section {
        margin-bottom: 60px;
    }

    .category-swiper-prev {
        top: 25% !important;
    }

    .category-swiper-next {
        top: 25% !important;
    }

    .order-item .title {
        max-width: 150px;
    }
}

@media (max-width: 767px) {
    .subtitle {
        font-size: 24px;
    }

    .rating-container {
        margin-bottom: 22px;
    }

    .nav-logo {
        width: 100px;
    }

    .hero-suffix {
        font-size: 14px;
    }

    .hero-title {
        font-size: 35px;
        font-weight: bold;
        margin-bottom: 10px !important;
    }

    .hero-subtitle {
        font-size: 10px;
        margin-bottom: 10px !important;
    }

    .hero-img {
        height: 180px;
    }

    .product-img {
        height: 180px;
    }

    .hero-text-container {
        padding: 25px;
    }

    .hero-inner {
        flex-direction: row !important;
    }

    .btn-primary {
        padding: 10px 30px;
        font-size: 15px;
    }

    .footer-bottom {
        padding-top: 140px
    }

    .product-card img {
        height: 100%;
    }

    .swiper-button-next {
        right: 3px !important;
        width: 32px;
        height: 32px;
    }

    .swiper-button-prev {
        left: 3px !important;
        width: 32px;
        height: 32px;
    }

    .specification-tag {
        width: 45px;
    }

    section {
        margin-bottom: 50px;
    }

    .inner-hero-title {
        font-size: 35px;
    }

    .marquee {
        --gap: 60px;
    }

    .category-swiper-prev {
        left: 5px !important;
    }

    .category-swiper-next {
        right: 5px !important;
    }

    .order-item .title {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .order-item .title {
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 426px) {
    .nav-logo {
        width: 100px;
    }

    .nav-button {
        width: 30px;
        height: 30px;
    }

    .nav-button i {
        font-size: 12px;
    }

    .nav-button-container {
        gap: 10px !important;
    }

    .cart-value {
        top: 3px;
        left: 5px;
        font-size: 7px;
        width: 10px;
        height: 10px;
    }

    .burger-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .swiper-slide-item {
        background-position: right bottom;
    }

    .hero-text-container {
        padding: 35px;
        padding-right: 25%;
    }

    .hero-suffix {
        font-size: 12px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 5px !important;
    }

    .hero-subtitle {
        font-size: 10px;
        margin-bottom: 20px !important;
    }

    .hero-img {
        height: 220px;
    }

    .product-img {
        height: 250px;
    }

    .hero-inner {
        flex-direction: row !important;
    }

    .hero-inner-img {
        height: 350px;
        margin-top: -30px;
    }

    .hero-inner-img-2 {
        width: 80px;
        margin-right: -50px;
        margin-bottom: 20px;
        z-index: 10;
    }

    /* .hero-text-container {
        padding-bottom: 0px;
    } */

    .heroSlide {
        height: 150px !important;
    }

    .footer-link-title {
        font-size: 20px;
    }

    .footer-link {
        font-size: 14px;
    }

    .footer-contact a {
        font-size: 14px;
    }

    .footer-feature i {
        font-size: 40px;
    }

    .footer-feature img {
        height: 40px;
    }

    .footer-feature p {
        font-size: 16px;
    }

    .product-card img {
        height: 100%;
    }

    .product-title {
        font-size: 16px;
    }

    .product-price {
        font-size: 16px;
    }

    .product-discount {
        font-size: 16px;
    }

    .btn-primary {
        padding: 8px 25px;
        font-size: 14px;
    }
    .home-primary-btn{
        padding: 5px 15px;
        font-size: 10px;
    }

    .btn-secondary {
        padding: 8px 25px;
        font-size: 12px;
    }

    .add-to-cart-btn {
        padding: 8px 25px;
        font-size: 12px;
    }


    .btn-danger {
        font-size: 10px;
    }

    .btn-success {
        font-size: 10px;
    }


    .swiper-button-next {
        right: 2px !important;
        width: 32px;
        height: 32px;
    }

    .swiper-button-prev {
        left: 2px !important;
        width: 32px;
        height: 32px;
    }

    .inner-hero-title {
        font-size: 24px;
    }

    .inner-hero-text-container {
        padding: 40px;
    }

    .specification-tag {
        width: 65px;
    }

    section {
        margin-bottom: 40px;
    }

    .offcanvas {
        width: 100% !important;
    }

    .footer-whatsapp-btn {
        width: 50px;
        font-size: 25px;
    }

    .scroll-top-btn {
        width: 50px;
        font-size: 25px;
    }

    .category-swiper-prev {
        left: 4px !important;
        top: 25% !important;
    }

    .category-swiper-next {
        right: 4px !important;
        top: 25% !important;
    }

    .order-item .title {
        max-width: none;
        text-align: center;
    }

}

@media (max-width: 320px) {
    .subtitle {
        font-size: 20px;
    }

    .hero-text-container {
        padding: 35px;
        padding-right: 25%;
    }

    .hero-suffix {
        font-size: 12px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 5px !important;
    }

    .hero-subtitle {
        font-size: 10px;
        margin-bottom: 12px !important;
    }

    .hero-img {
        height: 200px;
    }

    /* .hero-text-container {
        padding-bottom: 0px;
    } */

    .hero-inner-img {
        height: 270px;
        margin-top: -25px;
    }

    .hero-inner-img-2 {
        width: 80px;
        margin-right: -50px;
        margin-bottom: 20px;
        z-index: 10;
    }

    .btn-primary {
        padding: 5px 15px;
        font-size: 10px;
    }

    .heroSlide {
        height: 150px !important;
    }

    .product-card img {
        height: 100%;
        width: 100px;
    }

    .product-title {
        font-size: 14px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-discount {
        font-size: 14px;
    }

    .btn-primary {
        padding: 8px 20px;
        font-size: 12px;
    }
    .home-primary-btn{
        padding: 5px 15px;
        font-size: 10px;
    }

    .btn-secondary {
        padding: 8px 20px;
        font-size: 10px;
    }

    .add-to-cart-btn {
        padding: 8px 20px;
        font-size: 10px;
    }

    .btn-danger {
        font-size: 8px;
    }

    .btn-success {
        font-size: 8px;
    }

    .inner-hero-title {
        font-size: 24px;
    }

    .inner-hero-text-container {
        padding: 25px;
        padding-right: 25%;
    }

    .swiper-button-next {
        right: 3px !important;
        width: 32px;
        height: 32px;
    }

    .swiper-button-prev {
        left: 3px !important;
        width: 32px;
        height: 32px;
    }

    .specification-tag {
        width: 85px;
    }

    section {
        margin-bottom: 35px;
    }

    .marquee {
        --gap: 50px;
    }

    .category-swiper-prev {
        left: 5px !important;
        top: 25% !important;
    }

    .category-swiper-next {
        right: 5px !important;
        top: 25% !important;
    }

    .order-id-text {
        font-size: 14px;
    }

    .order-item .title {
        text-align: center;
    }
}