@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:wght@300;400;500;700;900&display=swap');
:root {
    --primary-color: #8ABD32;
    --secondary-color: #2F43D1;
    --black-color: #000000;
    --black333-color: #333333;
    --black666-color: #666666;
    --black999-color: #999999;
    --white-color: #ffffff;
    --transition: all 300ms ease-in-out;
    --test-color: 52, 152, 219;
}

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

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

a,
button {
    text-decoration: none;
    outline: none;
    transition: var(--transition);
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 400;
}

p {
    font-size: 14px;
    line-height: 21px;
    color: var(--black-color);
}

p:last-child {
    margin-bottom: 0;
}

::placeholder {
    text-transform: capitalize;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1224px;
}

.splide__pagination__page.is-active {
    background-color: var(--black-color);
}

.splide__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    opacity: 1;
}

.splide__arrows__p__initial .splide__arrow {
    position: initial;
    transform: none;
}

.splide__arrow svg {
    width: 12px;
    height: 12px;
}

.comn-padding {
    padding-block: 50px;
}

.comn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 100px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 15px 30px;
    text-transform: capitalize;
}

.comn-btn i {
    font-size: 14px;
}

.comn-btn:hover {
    background-color: var(--secondary-color);
}

.comn-title {
    text-align: center;
    margin-bottom: 50px;
}

.comn-title-action {
    padding-inline: 120px;
    position: relative;
}

.comn-title-action>.comn-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    gap: 10px;
    font-size: 14px;
    padding: 10px 15px;
}

.comn-title-text {
    position: relative;
    font-size: clamp(28px, 4.5vw, 36px);
    font-weight: 600;
    line-height: 1;
    color: var(--black-color);
    margin-bottom: 20px;
    text-transform: capitalize;
    z-index: 1;
}

.comn-title-text>span {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(50px, 4.5vw, 70px);
    font-weight: 900;
    opacity: .03;
    z-index: -1;
    text-transform: uppercase;
}

.comn-title-para {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: var(--black666-color);
}

.comn-star-row {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    color: #F39E00;
    margin-bottom: 15px;
}

.comn-form-checkbox {
    appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0;
    flex-shrink: 0;
}

.comn-form-checkbox:checked {
    background-color: var(--primary-color);
    background-size: 100%;
}

header {
    padding-block: 25px;
    position: relative;
    z-index: 999;
}

header .navbar {
    padding: 0;
}

header .navbar>.container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

header .navbar>.container>* {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.search-login-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.search-login-row form {
    margin: 0;
    display: flex;
    align-items: center;
}

.search-login-row form>input {
    background-color: #F3F4FC;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--black-color);
    min-width: 300px;
    border-radius: 100px 0 0 100px;
}

.search-login-row form>button {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    width: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 0 100px 100px 0;
    font-size: 20px;
}

.search-login-row form>button:hover {
    background-color: var(--secondary-color);
}

.header-login-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-login-card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-login-card .dropdown>button {
    background-color: transparent;
    padding: 0;
    border: none;
}

.header-login-card .dropdown>button i:first-child,
.header-login-card>i,.header-login-card p >i {
    font-size: 24px;
    color: var(--black-color);
}

.header-login-card>aside {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--black-color);
}

.header-login-card>aside a {
    color: var(--black-color);
}

.header-login-card>aside a:hover {
    color: var(--secondary-color);
}

.header-bottom-row .navbar-collapse {
    flex-grow: 0;
}

.header-bottom-row .navbar-collapse .navbar-nav {
    gap: 30px;
}

.header-bottom-row .navbar-nav .nav-link {
    padding: 0;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--black333-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-bottom-row .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.header-bottom-row .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-submenu .dropdown-menu,
.dropdown-menu.show {
    display: block;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    border: 0;
    text-transform: capitalize;
    padding-block: 15px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 30px;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #f7f7f7;
}

.noc-btn-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.noc-btn-row>button,
.noc-btn-row>a {
    font-size: 14px;
    line-height: 1;
    color: var(--white-color);
    padding: 10px 15px;
    background-color: var(--primary-color);
    border-radius: 3px;
    border: none;
    text-transform: capitalize;
}

.noc-btn-row>button:hover,
.noc-btn-row>a:hover {
    background-color: var(--secondary-color);
}

.cart-btn-row>button,
.cart-btn-row>a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 100px;
    border: none;
}

.cart-btn-row>button:hover,
.cart-btn-row>a:hover {
    background-color: var(--secondary-color);
}

.cart-btn-row>button>p,
.cart-btn-row>a>p {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
}

.cart-btn-row>button>p span,
.cart-btn-row>a>p span {
    position: absolute;
    top: -5px;
    right: -9px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
}

.cart-btn-row>button:hover>p span,
.cart-btn-row>a:hover>p span {
    color: var(--secondary-color);
}

.banner-pattern {
    position: absolute;
    height: calc(100% + 158px);
    width: 41%;
    top: -158px;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    background-color: #C0DEBD;
    border-radius: 0px 0px 0px 40px;
    z-index: -1;
}

.banner-pattern>img {
    width: 90%;
}

.banner-splide {
    padding-block: 45px 80px;
}

.banner-small-title {
    font-size: 24px;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    color: var(--black333-color);
    text-transform: capitalize;
}

.banner-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(34px, 4.5vw, 65px);
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 30px;
}

.banner-title>span {
    display: block;
    font-weight: 500;
}

.banner-data>p {
    font-size: 22px;
    line-height: 150%;
    color: var(--black666-color);
    margin-bottom: 30px;
}

.banner-splide .splide__pagination {
    position: absolute;
    left: 50px;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    padding: 0;
    gap: 15px;
}

.banner-splide .splide__pagination li {
    width: 16px;
    height: 16px;
}

.banner-splide .splide__pagination__page {
    padding: 0;
    margin: 0;
    width: 16px;
    height: 16px;
    transform: none;
    background-color: transparent;
    border: 1px solid var(--primary-color);
}

.banner-splide .splide__pagination__page.is-active {
    outline: 4px solid var(--primary-color) !important;
    outline-offset: -8px !important;
}

.popular-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.popular-row-leftside {
    width: calc(65% - 10px);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.popular-row-rightside {
    width: calc(35% - 10px);
}

.popular-inner-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.popular-inner-row .popular-card {
    width: calc(40% - 10px);
}

.popular-inner-row .big-card {
    width: calc(60% - 10px);
}

.popular-card {
    padding: 30px 20px;
    background-color: #f1f1f1;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0px;
}

.offer-splide .popular-card {
    height: 100%;
}

.popular-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    max-height: 100%;
    overflow: hidden;
}

.card-1 {
    background-color: #F7DCDC;
}

.card-2 {
    background-color: #FBE3C2;
}

.card-3 {
    background-color: #D0DFF9;
}

.card-4 {
    background-color: #D7ECB6;
}

.card-5 {
    background-color: #EDD4E5;
}

.card-1 .popular-shape,
.card-4 .popular-shape {
    top: auto;
    bottom: 0;
    right: 0;
}

.card-5 .popular-shape {
    top: 50%;
    transform: translateY(-50%);
}

.popular-image {
    max-width: 180px;
    flex-shrink: 0;
}

.popular-card.card-3 .popular-image img,
.popular-card.card-1 .popular-image img {
    max-width: 130px;
}

.popular-data {
    width: 100%;
}

.popular-data>span {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: var(--white-color);
    display: table;
    padding: 5px 10px;
    background-color: #F29720;
    border-radius: 100px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.popular-data>p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--black333-color);
}

.popular-data>aside {
    font-size: 22px;
    line-height: 130%;
    color: var(--black333-color);
    margin-bottom: 20px;
    text-transform: capitalize;
}

.popular-data>aside>span {
    display: inline-block;
    font-weight: 500;
}

.trending-data .comn-btn,
.popular-data .comn-btn {
    gap: 10px;
    font-size: 14px;
    padding: 10px 15px;
    white-space: nowrap;
}

.trending-data .comn-btn i,
.popular-data .comn-btn i {
    font-size: 12px;
}

.popular-row-rightside .popular-card {
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.popular-row-rightside .popular-image {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.popular-row-3 .popular-row-leftside,
.popular-row-2 .popular-row-leftside {
    width: 100%;
}

.popular-row-2 .popular-row-leftside .popular-inner-row .popular-card {
    width: calc(50% - 10px);
}

.popular-row-3 .popular-row-leftside .popular-inner-row .popular-card {
    width: calc(33.33% - 13.33px);
}

.trending-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.trending-card {
    padding: 20px;
    border: 1px solid #E2E2E2;
    border-radius: 5px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.arrivals-splide .trending-card {
    height: 100%;
}

.trending-card:hover {
    border-style: dashed;
    border-color: var(--primary-color);
    box-shadow: 0px 2px 15px 0px #0000000D;
}

.trending-image {
    padding-top: 30px;
    height: 240px;
    position: relative;
    margin-bottom: 20px;
    flex-shrink: 0;
}


/*.trending-image img {
  max-height: 210px;
  display: table;
  margin-inline: auto;
}*/

.pdetail-badge,
.trending-image>span {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--primary-color);
    background-color: #8ABD321A;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 100px;
    text-transform: capitalize;
}

.outof_stock {
    background-color: #ff1a001a;
    color: #ff1a00;
}

.trending-image>button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    transform: scale(0);
    color: var(--primary-color);
}

.trending-card:hover .trending-image>button {
    transform: scale(1);
}

.trending-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trending-data {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trending-data>span {
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    display: block;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.trending-data>aside {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: var(--black333-color);
    margin-bottom: 15px;
}

.trending-data .comn-btn {
    margin-top: auto;
}

.trending-data>p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.trending-data>p>span {
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 400;
    color: var(--black666-color);
}

.trending-card:hover .trending-data>button {
    background-color: var(--secondary-color);
}

.trending-card .btn-login-view-price {
    margin-bottom: 20px;
}

.beauty-row {
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    overflow: hidden;
}

.beauty-data {
    position: relative;
    z-index: 1;
    width: 40%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    padding-right: 0;
}

.beauty-data::before {
    content: "";
    position: absolute;
    left: -20%;
    top: 0;
    width: 130%;
    height: 100%;
    z-index: -1;
    background-color: #C0DEBD;
    border-right: 20px solid var(--primary-color);
    transform: skewX(-15deg);
}

.beauty-data>aside {
    font-size: clamp(26px, 2.5vw, 40px);
    line-height: 120%;
    color: var(--black333-color);
    text-transform: capitalize;
    font-weight: 300;
}

.beauty-data>aside>span {
    font-weight: 500;
    color: var(--primary-color);
    display: inline-block;
}

.beauty-image {
    width: 60%;
}

.beauty-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b-element {
    position: absolute;
    bottom: 0;
    right: 40px;
}

.splide__arrows {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: -90px;
    right: 0;
}

.splide__arrow {
    transform: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 16px;
    background-color: var(--white-color);
    color: var(--black999-color);
    box-shadow: 0px 4px 16px 0px #00000040;
    position: initial;
}

.splide__arrow:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.splide__arrow:disabled {
    pointer-events: none;
    opacity: .5;
}

.brand-slider-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brand-section {
    padding-block: 80px;
    margin-block: 40px;
    background-color: #F6FAFF;
}

.brand-card {
    border: 1px solid #EEEEEE;
    background-color: var(--white-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    padding: 20px;
}

.brand-card>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.retailer-section {
    position: relative;
    z-index: 1;
}

.retailer-element {
    position: absolute;
    top: -40px;
    right: 0;
    max-width: 30%;
}

.retailer-image {
    border-radius: 10px;
    overflow: hidden;
}

.retailer-image>img {
    width: 100%;
}

.retailer-data {
    padding-left: 76px;
}

.retailer-data>p {
    font-size: 18px;
    font-weight: 300;
    line-height: 136%;
    color: var(--black666-color);
    margin-bottom: 25px;
}

.retailer-data>span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    display: block;
    margin-bottom: 40px;
    color: var(--black-color);
}

.customers-section {
    position: relative;
}

.customers-splide .splide__track {
    padding-inline: 10px !important;
    margin-inline: -10px !important;
}

.customers-card {
    padding: 50px;
    box-shadow: 0px 4px 16px 0px #0000000A;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white-color);
    position: relative;
    z-index: 1;
    height: 100%;
}

.customers-card>* {
    margin: 0;
}

.customers-card>i[class*='fa-'] {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: clamp(220px, 16vw, 300px);
    line-height: 0.65;
    z-index: -1;
    opacity: 0.03;
}

.customers-card>img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.customers-card>p {
    font-size: 16px;
    line-height: 150%;
    color: var(--black666-color);
}

.customers-card>h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    color: var(--black-color);
    text-transform: capitalize;
}

.customer-pattern {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: -1;
}

.blog-image {
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.blog-data>* {
    width: 100%;
    margin: 0;
}

.blog-bar-data>span,
.blog-data>span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
    color: var(--black-color);
}

.blog-data>aside {
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    color: var(--black333-color);
}

.blog-data>p {
    font-size: 16px;
    font-weight: 300;
    line-height: 160%;
    color: var(--black666-color);
}

.blog-data>a {
    display: inline-flex;
    align-items: center;
    width: auto;
    gap: 10px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
    margin-top: 10px;
}

.blog-data>a:hover {
    color: var(--secondary-color);
}

.subscribe-row {
    padding: 40px;
    background-color: var(--black333-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.subscribe-row>aside {
    font-size: 30px;
    font-weight: 600;
    line-height: 110%;
    color: var(--white-color);
}

.subscribe-row>aside>span {
    display: block;
    font-size: 22px;
    font-weight: 500;
}

.subscribe-row>form {
    display: flex;
    margin: 0;
    border: 1px solid #DDDDDD;
    border-radius: 100px;
    background-color: var(--white-color);
}

.subscribe-row>form>input {
    border-radius: 100px 0 0 100px;
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    color: var(--black-color);
    width: 400px;
    background-color: transparent;
}

.subscribe-row>form>button {
    font-size: 16px;
    font-weight: 600;
    line-height: 110%;
    color: var(--white-color);
    text-transform: capitalize;
    background-color: var(--primary-color);
    border-radius: 0 100px 100px 0;
    border: none;
    padding: 20px 25px;
}

.subscribe-row>form>button:hover {
    background-color: var(--secondary-color);
}

footer {
    background-color: #F6FAFF;
    padding-block: 180px 50px;
    margin-top: -120px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #DDDDDD;
}

.footer-top-card {
    flex: 1 0 220px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-top-card>img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-top: 2px;
}

.footer-top-card>aside {
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    color: var(--black-color);
}

.footer-top-card>aside>p {
    font-size: 15px;
    font-weight: 300;
    margin-block: 5px 0;
}

.footer-middle {
    padding-block: 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 120%;
    text-transform: capitalize;
    margin-bottom: 20px;
    color: var(--black-color);
}

.footer-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    width: 100%;
    line-height: 1;
}

.footer-list li a {
    display: inline-block;
    font-size: 15px;
    line-height: 120%;
    color: var(--black333-color);
}

.footer-list li a:hover {
    color: var(--secondary-color);
}

.footer-card .navbar-brand {
    margin-bottom: 30px;
    display: inline-block;
}

.social-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--black666-color);
    font-size: 16px;
    color: var(--black666-color);
    border-radius: 5px;
}

.social-list li a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 30px;
    border-top: 1px solid #DDDDDD;
}

.footer-bottom>p {
    font-size: 14px;
    line-height: 150%;
    color: var(--black666-color);
    margin: 0;
}

.comn-breadcrumb {
    background-color: #C0DEBD;
    position: relative;
    z-index: 1;
}

.breadcrumb-element-1 {
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 1%;
    max-height: 100%;
}

.breadcrumb-element-2 {
    z-index: -1;
    position: absolute;
    right: 5%;
    top: 0;
    max-height: 100%;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 10px;
    list-style-type: none;
    padding: 40px 0;
    margin: 0;
}

.breadcrumb-list li {
    font-size: 16px;
    line-height: 1;
    color: var(--black333-color);
    text-transform: capitalize;
}

.breadcrumb-list li.active {
    color: var(--black-color);
    font-weight: 500;
}

.breadcrumb-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black333-color);
}

.breadcrumb-list li a:hover {
    color: var(--secondary-color);
}

.filer-sidebar {
    border: 1px solid #EEEEEE;
    box-shadow: 0px 4px 16px 0px #0000000A;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 10px;
}

.filer-sidebar>* {
    width: 100%;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
}

.filter-header>aside {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    color: var(--black333-color);
}

.filter-header>aside>i {
    font-size: 16px;
}

.filter-header>button {
    padding: 0;
    border: none;
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: var(--primary-color);
    text-transform: capitalize;
}

.filter-header>button:hover {
    color: var(--secondary-color);
}

.filter-collapse-row>button {
    background-color: transparent;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    margin-bottom: 30px;
    color: var(--black333-color);
}

.filter-collapse-row>button>i {
    color: var(--black333-color);
    font-size: 12px;
    transition: var(--transition);
}

.filter-collapse-row>button[aria-expanded="true"]>i {
    transform: rotate(180deg);
}

.filter-collapse-row>button .filter-title {
    margin-bottom: 0;
}

.filter-title {
    font-family: Roboto;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.09px;
    text-align: left;
    text-transform: capitalize;
    border-left: 3px solid #67A103;
    padding-left: 10px;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px dashed #DDDDDD;
    padding-bottom: 30px;
}

.filter-group>label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 120%;
    color: var(--black333-color);
    cursor: pointer;
    width: 100%;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none;
}

.noUi-horizontal {
    height: 10px;
    margin: 0 10px 20px;
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.noUi-base,
.noUi-connects {
    background-color: #DDDDDD;
    height: 4px;
    border-radius: 10px;
}

.noUi-connect {
    background-color: var(--primary-color);
    right: 3px;
}

.noUi-horizontal .noUi-handle {
    background-color: var(--primary-color);
    border: none;
    border-radius: 30px;
    height: 15px;
    top: -6px;
    right: -5px;
    width: 15px;
    box-shadow: none;
    cursor: pointer;
}

.filter-range-value {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-range-value>* {
    flex: 1 0 50px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #DDDDDD;
    border-radius: 100px;
    padding-inline: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--black999-color);
}

.filter-range-value>*>input {
    border: none;
    padding: 10px 5px;
    background-color: transparent;
    color: var(--black-color);
}

.filter-sidebar-btn-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    position: sticky;
    bottom: -20px;
    background-color: var(--white-color);
    border-top: 1px solid #eeeeee;
    padding-block: 20px;
    z-index: 2;
}

.filter-sidebar-btn-row>* {
    flex: 1 0 50px;
    justify-content: center;
}

.cancel-btn {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding-block: 14px;
}

.cancel-btn:hover {
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.filter-sidebar-btn-row,
.filter-open-btn {
    display: none;
}

.pdetail-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.pdetail-badge {
    top: 20px;
    left: 20px;
    z-index: 5;
}

.pdetail-image {
    height: 380px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding: 20px;
}

.pdetail-image img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.pdetail-thumb-splide .pdetail-image {
    height: 80px;
    padding: 5px;
}

.pdetail-thumb-splide .splide__track--nav>.splide__list>.splide__slide {
    border: none;
}

.pdetail-thumb-splide .splide__track--nav>.splide__list>.splide__slide.is-active .pdetail-image {
    border-color: var(--primary-color);
}

.pdetail-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.pdetail-rating-row .comn-star-row {
    margin-bottom: 0;
}

.pdetail-rating-row>span {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    color: var(--black666-color);
}

.pdetail-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 125%;
    color: var(--black333-color);
    margin-bottom: 10px;
}

.pdetail-price {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.pdetail-price>span {
    font-size: 22px;
    font-weight: 400;
    color: var(--black666-color);
    text-decoration: line-through;
}

.pdetail-data .pdetail-badge {
    position: initial;
    margin-bottom: 20px;
    font-size: 16px;
    padding: 8px 12px;
}

.pdetail-para {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 30px;
    color: var(--black666-color);
}

.quantity-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-row>span {
    font-size: 16px;
    line-height: 1;
    color: var(--black666-color);
}

.pdetail-count-box {
    display: flex;
    width: 114px;
    height: 42px;
    overflow: hidden;
    border-radius: 100px;
    border: 1px solid #DDDDDD;
}

.pdetail-count-box>* {
    flex: 1 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    color: var(--black666-color);
}

.pdetail-count-box>p {
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
}

.pdetail-count-box>p:hover {
    color: var(--secondary-color);
}

.quantity-row .comn-btn {
    padding: 13px 20px;
}

.wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #DDDDDD;
    background-color: transparent;
    padding: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.wishlist-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.pdetail-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.pdetail-list li {
    width: 100%;
    font-size: 16px;
    line-height: 125%;
    color: var(--black666-color);
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.pdetail-list li>span {
    color: var(--black-color);
}

.dar-row {
    margin-top: 50px;
}

.dar-row .nav-tabs {
    margin-bottom: 30px;
    border-bottom: 1px solid #DDDDDD;
    /* gap: 30px;
    flex-direction: row;
    flex-wrap: nowrap; */
    overflow: auto;
}

.dar-row .nav-tabs>* {
    flex-shrink: 0;
}

.dar-row .nav-tabs .nav-link {
    margin: 0;
    padding: 10px 30px;
    border-radius: 0px;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 18px;
    font-weight: 500;
    line-height: 125%;
    color: var(--black-color);
    text-transform: capitalize;
    border-radius: 8px 8px 0 0;
}

.dar-row .nav-tabs .nav-link:hover {
    color: var(--secondary-color);
}

.dar-row .nav-tabs .nav-link.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
    background-color: #F6FAFF;
}

.ai-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.ai-list li {
    width: 100%;
    padding-block: 15px;
    font-size: 16px;
    line-height: 150%;
    color: var(--black333-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-list li>span {
    width: 180px;
    flex-shrink: 0;
    font-weight: 600;
}

.review-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-card {
    padding-bottom: 30px;
    border-bottom: 1px solid #EEEEEE;
}

.review-card-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.review-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 100%;
}

.review-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-data {
    width: calc(100% - 120px);
}

.review-data>aside {
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    color: var(--black333-color);
    margin-bottom: 20px;
}

.review-data .pdetail-rating-row {
    margin-bottom: 0;
}

.review-para {
    font-size: 16px;
    line-height: 150%;
    margin: 0;
    color: var(--black333-color);
}

.comment-row {
    margin-top: 50px;
}

.comment-itle {
    font-size: 20px;
    font-weight: 600;
    line-height: 125%;
    color: var(--black333-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.comment-itle>p {
    font-size: 14px;
    font-weight: 400;
}

.comn-form-group {
    margin-bottom: 20px;
}

.comn-form-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    display: block;
    width: 100%;
    margin-bottom: 5px;
    color: var(--black333-color);
    text-transform: capitalize;
}
.ts-wrapper {
    z-index: 1;
}
.comn-form-control {
    border: 1px solid #DDDDDD;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    padding: 10px 15px;
    color: var(--black-color);
}

textarea.comn-form-control {
    border-radius: 5px;
    resize: none;
    height: 100px;
}

.comn-form-control:disabled {
    background-color: rgba(239, 239, 239, 0.3);
}

.comn-form-control:focus {
    border-color: var(--secondary-color);
}

.ts-wrapper.single .ts-control,
.comn-form-control .ts-control {
    border: 1px solid #DDDDDD;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    padding: 10px 15px;
    color: var(--black-color);
    width: 100%;
}

.ts-dropdown {
    border: 1px solid #eee !important;
    border-radius: 6px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
    top: 40% !important;
    z-index: 0 !important;
    padding-top: 25px;
}
.ts-dropdown .create, .ts-dropdown .no-results, .ts-dropdown .optgroup-header, .ts-dropdown .option {
    padding: 10px 10px !important;
}
.comn-form-select .ts-control {
    display: flex;
    flex-wrap: nowrap;
    padding-right: 40px !important;
}

input::file-selector-button {
    border-radius: 100px;
    border: 1px solid #ddd;
    padding: 1px 10px;
    margin-right: 10px;
}

.comn-form-select .ts-control::before {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    font-size: 14px;
    font-weight: 900;
    color: var(--black666-color);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}


/* .comn-form-group .ts-control,
.comn-form-group .ts-wrapper.single.input-active .ts-control {
    background-color: var(--white-color);
} */

/* .comn-form-group .ts-wrapper.single.input-active .ts-control,
.comn-form-group .ts-wrapper.single .ts-control, */
div.dt-container select.dt-input,
select.comn-form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    appearance: none;
    -moz-appearance: none;
    padding-right: 45px !important;
}

.comn-form-select.dropdown-active .ts-control::before {
    transform: rotate(180deg);
}

.comn-form-select .ts-control>* {
    flex-shrink: 0;
}

.ts-control>div {
    text-overflow: ellipsis;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.comn-form-select .ts-control>input {
    min-width: auto;
    width: auto;
}

.ts-select-large .ts-dropdown {
    width: 150% !important;
}

.ts-dropdown .optgroup {
    padding-inline: 10px;
}

.ts-dropdown .optgroup:first-child .optgroup-header {
    margin-top: 0;
}

.ts-dropdown .optgroup-header {
    padding: 0 0 10px 0;
    border-bottom: 1px solid var(--black15-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.comn-form-select-top .ts-dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 3px;
}

.ts-dropdown .no-results,
.ts-dropdown [data-selectable].option {
    cursor: pointer;
    opacity: 1;
    padding: 0 0 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: var(--black-color);
}

.ts-dropdown .no-results,
.ts-dropdown [data-selectable].option:last-child {
    padding-bottom: 0;
}

.ts-dropdown [data-selectable].option.active {
    background-color: transparent;
    color: var(--secondary-color);
}

.ts-dropdown [data-selectable].option.selected {
    background-color: transparent;
    color: var(--primary-color);
}

.ts-dropdown [data-selectable] .highlight {
    background-color: var(--primary15-color);
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
}

.page-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 30px;
    color: var(--black333-color);
    text-transform: capitalize;
}

.cart-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.cart-row>* {
    width: 100%;
    margin: 0;
}

.cart-card {
    border: 1px solid #EEEEEE;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-card>* {
    flex-shrink: 0;
}

.delete-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    font-size: 16px;
    color: var(--black666-color);
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -10px;
}

.delete-btn:hover {
    background-color: salmon;
    border-color: salmon;
    color: var(--white-color);
}

.cart-detail {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    flex-grow: 1;
    gap: 10px;
    font-size: 16px;
    line-height: 125%;
    color: var(--black333-color);
}

.cart-detail>img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    object-fit: scale-down;
}

.cart-price,
.cart-price-2 {
    font-size: 18px;
    line-height: 120%;
    margin: 0;
    color: var(--black666-color);
}

.cart-price-2 {
    color: var(--black333-color);
}

.cu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 20px;
}

.cu-leftside>a {
    font-size: 16px;
    line-height: 120%;
    color: var(--black333-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cu-leftside>a i {
    font-size: 12px;
}

.cu-leftside>a:hover {
    color: var(--secondary-color);
}

.cu-rightside {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cc-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 16px;
    line-height: 120%;
    color: var(--black333-color);
}

.cc-btn i {
    color: var(--black666-color);
    transition: var(--transition);
}

.cc-btn:hover,
.cc-btn:hover i {
    color: salmon;
}

.coupon-row>form, .coupon-row {
    display: flex;
    overflow: hidden;
    border-radius: 100px;
    border: 1px solid #DDDDDD;
    max-width: 400px;
}

.coupon-row>form input, .coupon-row input {
    border: none;
    padding: 13px 20px;
    font-size: 16px;
    line-height: 120%;
    color: var(--black-color);
}

.coupon-row>form button, .coupon-row button {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    color: var(--white-color);
    background-color: var(--primary-color);
    border: none;
    padding: 5px 25px;
}

.coupon-row>form button:hover, .coupon-row button:hover {
    background-color: var(--secondary-color);
}

.comn-card {
    box-shadow: 0px 4px 16px 0px #0000000A;
    border: 1px solid #EEEEEE;
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white-color);
}

.comn-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color: var(--black333-color);
    margin-bottom: 30px;
    text-transform: capitalize;
}

.comn-card-list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #DDDDDD;
}

.comn-card-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: var(--black333-color);
    padding-block: 20px;
    white-space: nowrap;
    border-top: 1px solid #DDDDDD;
}

.comn-card-list .total-text {
    font-size: 24px;
    font-weight: 600;
}

.comn-card-list li>span {
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
    color: var(--black666-color);
    text-transform: capitalize;
}

.comn-card-list li>p {
    font-size: 16px;
    color: var(--black333-color);
    margin-right: 30px;
}

.bs-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
    min-height: 68px;
    margin-bottom: 10px;
    color: var(--black333-color);
    text-transform: capitalize;
}

.bs-title .filter-group {
    margin-top: 20px;
}

.bs-title .filter-group>label {
    font-size: 14px;
    font-weight: 400;
    line-height: 110%;
}

.comn-card-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comn-form-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 150%;
    color: var(--black333-color);
    cursor: pointer;
}

.comn-form-radio>input {
    width: 18px;
    height: 18px;
    appearance: none;
    -moz-appearance: none;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='rgb(138, 189, 50)'/%3e%3c/svg%3e");
    background-size: 0;
    background-position: center;
    background-repeat: no-repeat;
}

.comn-form-radio>input:checked {
    background-size: 100%;
}

.rmf-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.rmf-row>label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 160%;
    color: var(--black333-color);
    cursor: pointer;
}

.rmf-row>a {
    font-size: 14px;
    line-height: 120%;
    color: var(--primary-color);
}

.rmf-row>a:hover {
    color: var(--secondary-color);
}

.login-data {
    padding-left: 36px;
}

.login-data>aside {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color: var(--black333-color);
    margin-bottom: 20px;
}

.login-data>p {
    font-size: 16px;
    line-height: 150%;
    color: var(--black666-color);
    margin-bottom: 20px;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.75;
}

.place-order-modal .modal-content {
    padding: 30px;
    border: none;
    border-radius: 10px;
}

.place-order-modal .modal-header {
    padding: 0 0 15px;
}

.place-order-modal .modal-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    color: var(--black-color);
}

.place-order-modal .modal-body {
    padding: 0;
}

.thank-you-card {
    padding-block: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.thank-you-card>img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 30px;
}

.thank-you-card>aside {
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    color: var(--black-color);
    margin-bottom: 5px;
    text-transform: capitalize;
}

.thank-you-card>p {
    font-size: 16px;
    line-height: 120%;
    color: var(--black-color);
    margin-bottom: 0;
}

.gth-btn-card {
    text-align: center;
    margin-block: 10px 20px;
}

.gth-btn-card>button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1;
    color: var(--primary-color);
    padding: 0;
    border: none;
    background-color: transparent;
}

.gth-btn-card>button:hover {
    color: var(--secondary-color);
}

.gth-btn-card>button>i {
    margin-top: -5px;
}

.account-data {
    text-align: center;
    margin-block: 20px 40px;
}

.account-image {
    width: 100px;
    height: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #DDDDDD;
    border-radius: 50%;
}

.account-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-data>aside {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    text-align: center;
    color: var(--black-color);
}

.account-pills .nav-link {
    padding: 18px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 115%;
    text-align: left;
    border-top: 1px solid #EEEEEE;
    border-radius: 0px;
    color: var(--black333-color);
}

.account-pills .nav-link:hover {
    background-color: rgba(138, 189, 50, 0.1);
}

.account-pills .nav-link.active {
    background-color: var(--primary-color);
    border-radius: 10px;
    color: var(--white-color);
    border-top-color: var(--primary-color);
}

.account-pills .nav-link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.account-pills .nav-link.active img {
    filter: brightness(10);
}

.account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #DDDDDD;
}

.account-header>aside {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 103%;
    color: var(--black333-color);
    text-transform: capitalize;
}

.account-header>aside>span {
    font-size: 14px;
    font-weight: 400;
}

.comn-badge {
    font-size: 13px;
    line-height: 150%;
    text-align: center;
    min-width: 85px;
    border-radius: 100px;
    background-color: #eeeeee;
    padding: 3px 10px;
    display: inline-block;
    text-transform: capitalize;
    border: none;
}

.stock-badge {
    color: #11AE59;
    background-color: #11AE591A;
}

.out-badge {
    color: #F14C41;
    background-color: #F14C411A;
}

.edit-badge {
    color: #E9AB0C;
    background-color: rgba(233, 171, 12, 0.1);
}

.refund-badge {
    color: #2F43D1;
    background-color: #2F43D11A;
}

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

.change-password-card {
    max-width: 575px;
    margin-inline: auto;
}

.user-account-row {
    position: sticky;
    top: 10px;
}

.comn-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.comn-table table {
    width: 100% !important;
}

.comn-table table.dataTable>thead>tr>th,
.comn-table table.dataTable>tbody>tr>td {
    border-bottom: 1px solid #EEEEEE;
    padding: 15px 10px;
    font-size: 14px;
    line-height: 120%;
    vertical-align: middle;
    height: 55px;
    color: var(--black666-color);
}

.comn-table table.dataTable>thead>tr>th {
    background-color: #2F43D10D;
    font-weight: 500;
    vertical-align: inherit;
    color: var(--black-color);
    white-space: nowrap;
}
.comn-table table>thead>tr>th,
.comn-table table>tbody>tr>td {
    border-bottom: 1px solid #EEEEEE;
    padding: 15px 10px;
    font-size: 14px;
    line-height: 120%;
    vertical-align: middle;
    height: 55px;
    color: var(--black666-color);
}

.comn-table table>thead>tr>th {
    background-color: #2F43D10D;
    font-weight: 500;
    vertical-align: inherit;
    color: var(--black-color);
    white-space: nowrap;
}

.comn-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.action-btn-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: none;
    font-size: 15px;
    color: var(--black-color);
    background-color: #eeeeee;
}

.download-btn {
    color: var(--primary-color);
    background-color: #8ABD321A;
}

.print-btn {
    color: var(--secondary-color);
    background-color: #2F43D11A;
}

div.dt-container select.dt-input {
    width: 90px;
    height: 32px;
    padding: 0 35px 0 15px;
    border-radius: 100px;
    background-position: right 15px center;
}

div.dt-container .dt-paging {
    display: flex;
    align-items: center;
    gap: 10px;
}

div.dt-container .dt-paging .dt-paging-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #DDDDDD;
    padding: 0;
    background-color: transparent;
    font-size: 14px;
    line-height: 150%;
    color: var(--black666-color);
    border-radius: 5px;
    margin: 0;
}

div.dt-container .dt-paging .dt-paging-button:hover {
    border-color: currentColor;
    color: var(--primary-color) !important;
    background: #8ABD321A;
}

div.dt-container .dt-paging .dt-paging-button.current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color) !important;
}

.blog-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-row .comn-card {
    padding: 20px;
}

.blog-row .blog-image {
    height: 420px;
}

.comn-card .search-login-row form>input {
    min-width: auto;
    flex-grow: 1;
}

.blog-card-row {
    position: sticky;
    top: 10px;
}

.blog-card-row .comn-card {
    padding: 20px;
}

.blog-card-title {
    font-size: 20px;
    line-height: 120%;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
    margin-bottom: 30px;
    color: var(--black333-color);
    text-transform: capitalize;
}

.blog-card-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.blog-card-list li a {
    font-size: 16px;
    line-height: 120%;
    color: var(--black333-color);
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.blog-card-list li a i {
    font-size: 12px;
    color: var(--black666-color);
}

.blog-card-list li a:hover,
.blog-card-list li a:hover i {
    color: var(--secondary-color);
}

.blog-bar-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.blog-bar-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
}

.blog-bar-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-bar-data {
    width: calc(100% - 100px);
}

.blog-bar-data>aside {
    margin-top: 5px;
    font-size: 16px;
    line-height: 120%;
    color: var(--black-color);
}

.tag-share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #dddddd;
}

.tag-share-leftside {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.tag-share-leftside>aside {
    padding: 8px 20px;
    color: var(--black-color);
    background-color: #F3F4FC;
    font-size: 14px;
    border-radius: 5px;
}

.tag-share-rightside .social-list {
    gap: 10px;
}

.create-account-radio-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trending-card {
    position: relative;
    overflow: hidden;
}

.trending-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
    background-color: rgb(0 0 0 / 50%);
    transition: var(--transition);
}

.trending-card:hover .trending-overlay {
    top: 0;
}

.trending-overlay .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--white-color);
}

.overlay-btn-row {
    display: flex;
    gap: 10px;
}

.trending-overlay .wishlist-btn:hover {
    color: var(--secondary-color);
}
.address-box {
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0px 4px 16px 0px #0000000A;
}
.order-table th {
    color: #444;
}
.table.order-table th, .table.order-table td {
    padding: .75rem .5rem;
}
.table.order-table td {
    vertical-align: middle;
}
.table.order-table tr:last-child td {
    border-bottom: 0 !important;
}
img.table-thumbs {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.text-green, a.text-green {
    color: var(--primary-color);
}
a.text-green:hover {
    color: var(--secondary-color);
}
.pro-category-overlay {   
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.pro-category-overlay .pdetail-count-input {
    background: transparent;
    color: #fff;
}
.pro-category-overlay .comn-btn i {
    font-size: 18px;
}
.pro-category-overlay p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.pro-category-overlay .trending-data>p>span {
    color: #fff;
}
.pro-category-overlay .pdetail-count-box {
    min-height: 42px;
}
.header-login-card  #header-cart-item-count {
    position: absolute;
    top: -5px;
    right: -9px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
}
.page-loader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    background-color: #ffffffed;
}
.page-loader img {
    max-width: 120px;
}
.sale-tag {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEwIiBoZWlnaHQ9IjExMCIgdmlld0JveD0iMCAwIDExMCAxMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01NSAwTDYyLjkxNTYgNS4wMjI5N0w3MS45OTU5IDIuNjkxODlMNzcuOTcxOSA5LjkxNTA3TDg3LjMyODIgMTAuNTA0MUw5MC43Nzk2IDE5LjIyMDRMOTkuNDk1OSAyMi42NzE4TDEwMC4wODUgMzIuMDI4MUwxMDcuMzA4IDM4LjAwNDFMMTA0Ljk3NyA0Ny4wODQ0TDExMCA1NUwxMDQuOTc3IDYyLjkxNTZMMTA3LjMwOCA3MS45OTU5TDEwMC4wODUgNzcuOTcxOUw5OS40OTU5IDg3LjMyODJMOTAuNzc5NiA5MC43Nzk2TDg3LjMyODIgOTkuNDk1OUw3Ny45NzE5IDEwMC4wODVMNzEuOTk1OSAxMDcuMzA4TDYyLjkxNTYgMTA0Ljk3N0w1NSAxMTBMNDcuMDg0NCAxMDQuOTc3TDM4LjAwNDEgMTA3LjMwOEwzMi4wMjgxIDEwMC4wODVMMjIuNjcxOCA5OS40OTU5TDE5LjIyMDQgOTAuNzc5NkwxMC41MDQxIDg3LjMyODJMOS45MTUwNyA3Ny45NzE5TDIuNjkxODkgNzEuOTk1OUw1LjAyMjk3IDYyLjkxNTZMMCA1NUw1LjAyMjk3IDQ3LjA4NDRMMi42OTE4OSAzOC4wMDQxTDkuOTE1MDcgMzIuMDI4MUwxMC41MDQxIDIyLjY3MThMMTkuMjIwNCAxOS4yMjA0TDIyLjY3MTggMTAuNTA0MUwzMi4wMjgxIDkuOTE1MDdMMzguMDA0MSAyLjY5MTg5TDQ3LjA4NDQgNS4wMjI5N0w1NSAwWiIgZmlsbD0iI0YyOTcyMCIvPgo8L3N2Zz4K");
    width: 110px;
    height: 110px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
}
.sale-tag-sale {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}
.sale-tag-percent {
    font-size: 36px;
    font-weight: 800;
}
.sale-tag-off {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
}


#goTopBtn span {
    background: url(../../images/top.png) no-repeat;
    width: 33px;
    height: 33px;
    background-size: 33px;
    display: inline-flex;
}
#goTopBtn {
    position: fixed;
    bottom: 30px;
    right: 70px;
    z-index: 99;
    font-size: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px;
    width: 45px;
    border-radius: 10px;
    background-color: #8ABD32;
    display: flex;
    align-items: center;
    justify-content: center;
}

#goTopBtn:hover {
    background-color: #2F43D1;
}

#top-nav-fixed.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: #fff;
    transition: all .4s;
    border-bottom: 1px solid #ddd;
    padding-block: 10px;
}

.map iframe{
    width: 100% !important;
    height: 500px !important;
}
.order-payment-list {
    display: table;
    margin-left: auto;
}
.order-payment-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-block: 5px;
}


/* ============================================
   ENHANCED CLOVER CARD PAYMENT UI STYLES
   ============================================ */

#card-payment-section {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#card-payment-section .comn-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
}

#card-payment-section .comn-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

#card-payment-section .comn-card-title {
    color: #333333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#card-payment-section .comn-card-title::before {
    content: "💳";
    font-size: 24px;
}

/* Card Element Container */
#card-element {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    min-height: 50px;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

#card-element:hover {
    border-color: #d61e25;
    box-shadow: 0 4px 12px rgba(214, 30, 37, 0.08);
}

#card-element.has-error {
    border-color: #dc3545;
    background-color: #fff5f5;
    animation: shake 0.3s ease;
}

#card-element.is-complete {
    border-color: #28a745;
    background-color: #f0fff4;
}

#card-element.is-complete::after {
    content: "✓";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 20px;
    font-weight: bold;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Security Badge */
#card-element::before {
    content: "🔒 Secure Payment";
    position: absolute;
    top: -12px;
    left: 15px;
    background: linear-gradient(135deg, #d61e25 0%, #ff4444 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(214, 30, 37, 0.3);
}

/* Error Messages */
#card-errors {
    color: #dc3545;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 15px;
    background-color: #fff5f5;
    border-left: 3px solid #dc3545;
    border-radius: 4px;
    display: none;
    animation: fadeIn 0.3s ease;
}

#card-errors i {
    margin-right: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accepted Cards Display */
.accepted-cards {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
}

.accepted-cards::before {
    /* content: "We accept:"; */
    font-size: 12px;
    color: #707070;
    font-weight: 600;
    margin-right: 5px;
}

.card-icon {
    width: 40px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    filter: grayscale(20%);
}

.card-icon:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Payment Information Box */
.payment-info-box {
    background: #f8f9fa;
    border-left: 4px solid #d61e25;
    padding: 12px 15px;
    margin-top: 15px;
    border-radius: 6px;
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
}

.payment-info-box i {
    color: #d61e25;
    margin-right: 8px;
}

/* Loading State */
#card-element.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

#card-element.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #d61e25;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    #card-payment-section .comn-card {
        padding: 20px 15px;
    }
    
    #card-element {
        padding: 14px;
    }
    
    .accepted-cards {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .card-icon {
        width: 35px;
        height: 22px;
    }
}