*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    -webkit-font-smoothing: antialiased;
}

input, button, textarea, select {
    font: inherit;
}

input[type="checkbox"] {
    height: auto;
    width: auto;
}

a {
    text-decoration: none;
    transition: 0.2s ease;
}

ul,
ol,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    overflow-wrap: break-word;
}

a, p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

:root {
    --color-white: #FFF;
    --color-black: #201A1D;
    --color-grey: #4F6D7A;
    --color-orange: #EE6C4D;
    --fs-70: 70px;
    --fs-60: 60px;
    --fs-45: 45px;
    --fs-42: 42px;
    --fs-26: 26px;
    --fs-24: 24px;
    --fs-20: 20px;
}

/* HEADER CSS START */
.custom-header {
    position: relative;
    z-index: 99;
}

.header-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.top-banner {
    background: var(--color-grey);
    padding: 14px 0;
    transition: all .4s ease-in-out;
}

.top-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.top-banner p,
.top-banner a {
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.main-header {
    background: #FFF;
    padding: 6px 0 16px;
}

.header-grid {
    display: flex;
    gap: 80px;
}

.hamburger {
    border: 0;
    outline: none;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #000;
    position: relative;
    transition: .4s;
    z-index: 1000000;
}

.hamburger-one:before, .hamburger-one:after {
    content: "";
    position: absolute;
    left: 0;
    width: 40px;
    height: 2px;
    background: #000;
    transition: .5s;
}

.hamburger:before {
    top: -11px;
}

.hamburger:after {
    top: 11px;
}

.hamburger.rotate {
    background: #0000;
    box-shadow: none;
}

.hamburger.rotate.hamburger-one:before {
    top: 0;
    transform: rotate(45deg);
}

.hamburger.rotate.hamburger-one:after {
    top: 0;
    transform: rotate(135deg);
}

.menu-toggle {
    display: none;
}

.site-branding {
    max-width: 165px;
    width: 100%;
}

.header-logo {
    max-width: 165px;
}

.header-logo a {
    display: block;
}

.header-logo a img {
    width: 100%;
}

.menu-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 130px;
    align-items: start;
    padding-top: 20px;
}

.menu-grid {
    max-width: 800px;
    width: 100%;
}

.header-form {
    max-width: 574px;
    width: 100%;
    margin: 0 auto;
    height: 40px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 1px solid #525C64;
}

.header-form input[type="search"] {
    border: none;
    color: #474E57;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    width: 100%;
    outline: none;
}

.header-form button {
    border: none;
    outline: none;
    padding: 0;
    width: 18px;
    line-height: 1;
    background: transparent;
}

.menu-form-box {
    padding-bottom: 20px;
}

.menu-list {
    display: flex;
    justify-content: center;
    gap: 35px;
    border-top: 1px solid #90969A;
    position: relative;
}

.menu-list li {
    padding-top: 12px;
}

.menu-list li.menu-item {
    position: relative;
}

.menu-list>li.menu-item.current-menu-item::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #EE6C4D;
    transition: all .4s ease-in-out;
}

.menu-list li a {
    display: block;
    color: #525C64;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    transition: all .4s ease-in-out;
}

.menu-list>li.menu-item.current-menu-item a,
.menu-list li a:hover {
    color: #EE6C4D;
}

.menu-account-box {
    display: flex;
    gap: 26px;
}

.menu-account {
    text-align: center;
    position: relative;
}

.menu-account a {
    display: block;
}

.menu-account a {
    display: block;
    color: #474E57;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 21px;
}

.menu-account a>img {
    height: 20px;
    margin-bottom: 9px;
}

.menu-account a span {
    display: block;
}

.sub-menu {
    display: none;
    position: absolute;
    width: 250px;
    background: #FFF;
    padding-top: 18px;
    z-index: 9;
    transition: all .4s ease;
}

.sub-menu>li {
    background: #4F6D7A;
    border-bottom: 1px solid #FFF;
    padding: 10px 16px;
    transition: all .4s ease-in-out;
}

.sub-menu>li:last-child {
    border: 0;
}

.sub-menu>li>a {
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.sub-menu>li>a:hover {
    color: #FFF;
}

.menu-list li.menu-item.menu-item-has-children:hover .sub-menu {
    display: block;
}

.sub-menu>li:hover {
    background: #FFF;
}

.sub-menu>li:hover>a {
    color: #4F6D7A;
}

/* HEADER CSS ENDS */

.custom-footer {
    background: var(--color-black);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
}

.footer-box {
    padding: 75px 0 150px;
    display: flex;
    gap: 135px;
    align-items: start;
}

.footer-links {
    max-width: fit-content;
    width: 100%;
}

.footer-touch {
    max-width: 438px;
    width: 100%;
}

.footer-links h6,
.footer-touch h6 {
    color: #FFF;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.22px;
    margin-bottom: 20px;
}

.footer-links ul li a {
    display: block;
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: -0.198px;
}

.footer-links ul li a:hover,
.footer-copyright a:hover {
    color: var(--color-orange);
}

.footer-form-wrap {
    padding-top: 10px;
}

.footer-form {
    border-radius: 40px;
    background: #FFF;
    overflow: hidden;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 7px 7px 20px;
    gap: 20px;
}

.footer-form input[type="email"] {
    width: 100%;
    border: 0;
    color: #06152D;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 300;
    padding: 0;
    outline: none;
}

.footer-form input[type="submit"] {
    border-radius: 50px;
    background: var(--color-orange);
    color: #FFF;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    border: 0;
    outline: none;
    height: 45px;
    padding: 0 20px;
    transition: .4s;
}

.footer-form input[type="submit"]:hover {
    background: var(--color-grey);
}

.footer-touch p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.198px;
    margin-top: 20px;
}

.footer-copyright {
    border-top: 1px solid #FFF;
    padding: 30px 0;
}

.footer-copyright p,
.footer-copyright a {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.copyright-grid {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.features-section {
    background-color: #FFF;
    padding: 60px 0;
    position: relative;
}

.fs-grid {
    max-width: 1266px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-content {
    display: block;
    color: var(--color-grey);
    text-align: center;
    font-size: var(--fs-20);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.22px;
    margin-top: 20px;
}

.feature-box img {
    height: 70px;
}

.newsletter-section {
    background: #4F6D7A;
    padding: 70px 0 20px;
}

.newsletter-grid {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-title {
    color: #FFF;
    font-size: var(--fs-60);
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.66px;
    margin-bottom: 10px;
}

.newsletter-subtitle {
    color: #FFF;
    font-size: var(--fs-20);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.22px;
    margin-bottom: 35px;
    max-width: 530px;
}

.email-form {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 165px;
    max-width: 580px;
}

.email-form input[type="email"] {
    height: 50px;
    padding: 0 40px;
}

.email-form input[type="email"] {
    height: 50px;
    padding: 0 40px;
    border-radius: 40px;
    background: #FFF;
    color: #595857;
    font-feature-settings: 'salt'on, 'liga'off;
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    border: 0;
    outline: none;
}

.email-form button {
    border-radius: 40px;
    background: #EE6C4D;
    color: #FFF;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    font-weight: 300;
    padding: 0 10px;
    transition: all .4s ease-in-out;
}

.email-form button img {
    transition: all .4s ease;
}

.email-form button:hover img {
    transform: translateX(4px);
}

.newsform {
    margin-bottom: 40px;
}

.newsimg, .newsimg img {
    width: 100%;
}

.hero-section {
    position: relative;
    height: 860px;
    overflow: hidden;
}

.myHeroSlider {
    width: 100%;
    height: 100%;
}

.myHeroSlider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-box {
    position: absolute;
    top: 42%;
    left: 11%;
    z-index: 9;
    max-width: 640px;
    width: 100%;
    padding: 0 10px;
    transform: translateY(-50%);
}

.hero-title {
    color: #FFF;
    font-family: Poppins;
    font-size: var(--fs-60);
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.66px;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: #FFF;
    font-family: Poppins;
    font-size: var(--fs-20);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.22px;
    margin-bottom: 20px;
}

.btn-grey {
    border-radius: 25px;
    background: #4F6D7A;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    padding: 0 50px;
    transition: all .4s ease-in-out;
}

.btn-grey:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.popular-section {
    background: #EBE6DF;
    padding: 110px 0 90px;
}

.popular-grid {
    display: flex;
    gap: 92px;
    align-items: start;
    position: relative;
    padding-bottom: 80px;
}

.pop-prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1150px;
    width: 100%;
}

.pop-product,
.sp-product {
    border-radius: 15px;
    background: #F7F3EC;
    overflow: hidden;
    position: relative;
    padding: 6px;
    transition: all .4s ease;
}

.pop-product:hover {
    transition: all .4s ease;
    box-shadow: 4px 6px 15px 0px rgba(0, 0, 0, 0.25);
}

.prod-img,
.sp-img {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    height: 296px;
}

.prod-img img,
.sp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prod-content,
.sp-content {
    padding: 16px;
}

.prod-title {
    color: #4F6D7A;
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-24);
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.264px;
    min-height: 65px;
}

.prod-flx {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-top: 56px;
}

.btn-grey.btn-orange {
    background: #EE6C4D;
    height: 44px;
    padding: 0px 30px;
    letter-spacing: -0.198px;
}

.btn-grey.btn-orange:hover {
    background: #4F6D7A;
}

.prod-title {
    color: #4F6D7A;
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-24);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.264px;
    min-height: 65px;
    max-width: 285px;
    width: 100%;
    margin: 0 auto;
}

.props-title {
    color: var(--color-black);
    font-size: var(--fs-26);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.286px;
    margin-bottom: 16px;
    display: block;
}

.pc-heading {
    color: var(--color-grey);
    font-family: Poppins;
    font-size: var(--fs-70);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.77px;
    margin-bottom: 70px;
}

.pc-heading span {
    white-space: nowrap;
    font: inherit;
    display: block;
}

.pc-heading span.orange {
    color: var(--color-orange);
}

.popular-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #CEC8B6;
}

.dog-looking {
    max-width: 250px;
    position: absolute;
    bottom: 0;
    left: 90px;
}

.brands-section {
    padding: 90px 0;
    background-color: #FFF;
}

.fs-60 {
    text-align: center;
    font-size: var(--fs-60);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.66px;
}

.brands-section .fs-60 {
    color: var(--color-black);
    margin-bottom: 40px;
}

.brands-grid {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.brand-img {
    max-width: 200px;
    width: 100%;
}

.brand-img img {
    width: 100%;
    filter: grayscale(1);
    transition: all .4s ease;
}

.brand-img:hover img {
    filter: none;
}

.brand-visit {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.brands-section .btn-grey.btn-orange {
    height: 54px;
    max-width: 230px;
    width: 100%;
}

.brand-img a {
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
}

.favorites-section {
    background: #4F6D7A;
    padding: 80px 0;
}

.favorites-section .fs-60 {
    color: #FFF;
    margin-bottom: 80px;
}

.product-pricing,
.sp-pricing {
    color: #EE6C4D;
    text-align: center;
    font-family: Helvetica, 'Poppins';
    font-size: var(--fs-26);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.286px;
    margin-top: 20px;
}

.products-grid .prod-flx {
    margin-top: 20px;
}

.raw-section {
    padding: 140px 0 180px;
    background: #FFF;
}

.raw-grid {
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
    max-width: 1265px;
    margin: 0 auto;
    margin-left: 100px;
}

.raw-box {
    border-radius: 120px 120px 80px 0px;
    background: #EE6C4D;
    padding: 70px 40px;
    max-width: 446px;
    width: 100%;
    position: absolute;
    top: 80px;
    right: -75px;
}

.raw-title {
    color: #FFF;
    font-size: var(--fs-60);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.66px;
    margin-bottom: 10px;
}

.raw-box p {
    color: #FFF;
    font-size: var(--fs-20);
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.22px;
    margin-bottom: 20px;
}

.raw-box .btn-grey {
    max-width: 170px;
    height: 50px;
    padding: 0 8px;
    width: 100%;
}

.raw-dog {
    position: absolute;
    z-index: 9;
    left: 20px;
    bottom: -110px;
}

.raw-img {
    position: relative;
    max-width: fit-content;
}

.sparkle {
    position: absolute;
    top: -70px;
    left: -70px;
    max-width: 168px;
    display: block;
}

.rc-img {
    position: relative;
    display: block;
    border-radius: 50px 90px 0 150px;
    overflow: hidden;
}

#topBtn {
    border: 0;
    background: transparent;
    position: fixed;
    bottom: 40px;
    right: 20px;
    max-width: 40px;
    padding: 0;
    transition: .2s;
}

#topBtn:hover {
    opacity: .7;
}

.animate-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 2s ease, opacity 2s ease;
}

.animate-text.in-view span {
    opacity: 1;
    transform: translateY(0);
}

.banner-section {
    height: 380px;
    position: relative;
    display: flex;
    background: #EBE6DF;
    align-items: center;
}

.banner-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #EC6B4C;
}

.banner-section.blue-banner::after {
    background-color: var(--color-grey);
}

.banner-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.banner-main .fs-60 {
    color: var(--color-orange);
}

.banner-section.blue-banner .fs-60 {
    color: var(--color-grey);
}

.breadcrumb-item a {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.476px;
    transition: all .4s ease;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 4px;
}

.breadcrumb-item+.breadcrumb-item::before {
    padding-right: 2px;
    padding-top: 4px;
    font-size: 14px;
    color: #000;
}

.banner-wrap {
    background: #EC6B4C;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img {
    max-width: 506px;
    margin-right: 40px;
}

.banner-img img {
    width: 100%;
}

.filter-menu {
    max-width: 300px;
    margin-bottom: 55px;
}

.filter-title {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: -0.22px;
}

.shop-filters hr {
    border: none;
    border-top: 2px solid #000;
    margin: 12px 0 40px;
    opacity: 1;
    max-width: 250px;
}

.option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: none;
    border-color: transparent;
    margin-right: 16px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: #0000;
}

.option input[type="radio"]::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 24px;
    height: 24px;
    border: 2px dashed #000;
    border-radius: 50%;
}

.option input[type="radio"]:checked {
    background-color: var(--color-orange);
}

.option label {
    cursor: pointer;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: -0.198px;
}

.price-filter {
    width: 300px;
    margin-bottom: 80px;
}

.price-filter .line {
    height: 2px;
    background-color: black;
    margin-bottom: 20px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 250px;
}

.slider-container input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #000;
    border-radius: 5px;
    outline: none;
    margin: 0;
    margin-left: -4px;
}

.slider-container input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.filter-ul {
    padding-left: 8px;
}

.filter-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 250px;
    gap: 20px;
    margin-top: 10px;
}

.price-label {
    color: rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.154px;
}

.filter-button {
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.154px;
    background-color: transparent;
    border: 0;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.shop-section {
    padding: 65px 0;
    position: relative;
}

.shop-filters {
    max-width: 300px;
}

.shop-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 120px;
}

.shop-products {
    width: 100%;
}

.offer-box {
    position: relative;
}

.offer-content {
    position: absolute;
    top: 35px;
    left: 25px;
    max-width: 220px;
}

.offered-discount {
    color: var(--color-orange);
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.55px;
    margin-bottom: 12px;
}

.offer-detail {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.22px;
}

.shop-prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 45px;
    padding-top: 100px;
}

.sp-product:hover {
    background: rgba(247, 243, 236, 0.5);
    box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.37);
}

.sp-title {
    color: var(--color-grey);
    text-align: center;
    font-family: Poppins;
    font-size: var(--fs-20);
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 50px;
}

.sp-product .prod-flx {
    margin-top: 20px;
}

.sp-product .btn-grey.btn-orange {
    padding: 0 20px;
}

.sp-content {
    padding-bottom: 30px;
}

.prod-rating {
    max-width: 95px;
}

.pagination {
    justify-content: center;
    margin-top: 90px;
}

.page-link {
    color: #747474;
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
    border: 0;
    transition: .2s;
}

.page-link:hover {
    background-color: transparent;
    color: var(--color-orange);
}

.page-link:focus {
    background: transparent;
    box-shadow: none;
}

.active>.page-link, .page-link.active {
    background: transparent;
    color: var(--color-orange);
}

.sticky-filter {
    position: sticky;
    top: 10px;
}

.fixed-gapping {
    width: 100%;
    height: 125px;
    background: #FFF;
    margin: 0;
}

.contact-section {
    padding: 140px 0;
    background: #FFF;
}

.contact-grid {
    max-width: 1330px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 140px;
}

.contact-filler {
    padding: 55px;
    position: relative;
    background-image: url(../img/contact_us_bg.png);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: start;
}

.ct-detail {
    max-width: 194px;
}

.ct-icon {
    width: 50px;
    margin-right: 20px;
}

.ct-title {
    color: #000;
    font-family: Helvetica;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.ct-info {
    color: #000;
    font-family: Poppins;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.contact-box {
    border-radius: 20px;
    background: #4F6D7A;
    overflow: hidden;
    position: relative;
    padding: 40px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contact-map {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.contact-map img {
    width: 100%;
}

.ct-heading {
    color: #FFF;
    text-align: center;
    font-family: Poppins;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ct-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ct-input-box label {
    display: block;
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
}

.ct-input-box {
    width: 100%;
}

.ct-input-box:first-child, .ct-input-box:nth-child(2) {
    max-width: calc(50% - 10px);
}

.ct-input-box input,
.ct-input-box select,
.ct-input-box textarea {
    border-radius: 10px;
    border: 1px solid #FFF;
    padding: 0 12px;
    height: 48px;
    width: 100%;
    background: transparent;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    outline: none;
}

.ct-input-box textarea {
    height: 100px;
    padding: 10px;
}

.ct-input-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../img/darr.svg");
    background-repeat: no-repeat;
    background-position: 98% 50%;
}

.ct-input-box select option {
    color: #000;
}

.form-submit {
    width: 100%;
    text-align: center;
}

.form-submit input[type="submit"] {
    border-radius: 25px;
    background: #FFF;
    color: #4F6D7A;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 200%;
    letter-spacing: -0.198px;
    border: none;
    outline: none;
    height: 50px;
    width: 180px;
    padding: 0;
}


.single-product-section {
    background: #FFF;
    padding: 75px 0 100px;
}

.single-product-grid {
    max-width: 1475px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.single-product-summery {
    max-width: 705px;
}

.single-prod-img {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
    align-items: start;
}

.single-prod-thumbs {
    max-width: 80px;
}

.prod-thumb {
    max-width: 80px;
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #90969A;
    transition: all .4s ease-in-out;
}

.prod-thumb img {
    width: 100%;
}

.prod-thumb.active {
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.single-product-title {
    color: #000;
    font-size: var(--fs-45);
    font-weight: 600;
    line-height: 130%;
    letter-spacing: -0.495px;
    margin-bottom: 10px;
}

.sinp-flx {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: start;
    margin-bottom: 40px;
}

.sinp-rating {
    max-width: 100px;
    width: 100%;
}

.sinp-sku {
    color: #90969A;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.22px;
}

.sinp-pricing {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sinp-pricing .price {
    color: #4F6D7A;
    font-size: var(--fs-42);
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.462px;
}

.sinp-pricing .subscribe {
    color: #90969A;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.198px;
}

.sinp-options {
    border-radius: 10px;
    max-width: 575px;
    border: 1px solid #D9D9D9;
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 35px 0;
}

.sinp-qty input[type="number"] {
    max-width: 100px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    height: 50px;
    padding: 0 20px;
}

.prod-cart-btn {
    border-radius: 25px;
    background: #4F6D7A;
    display: block;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.176px;
    height: 50px;
    padding: 14px 32px;
    transition: all .4s ease-in-out;
}

.prod-cart-btn:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.prod-size label {
    display: block;
    color: #474E57;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.176px;
}

.prod-size select {
    color: #90969A;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.198px;
    border: 0;
    padding: 0;
    outline: none;
    appearance: none;
    /* Most modern browsers */
    -webkit-appearance: none;
    /* Safari & Chrome */
    -moz-appearance: none;
    /* Firefox */
}

.sinp-details {
    position: relative;
}

.sinp-details span {
    color: #ADADAD;
    font-size: 18px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: -0.22px;
    display: block;
}

.sinp-details span strong {
    font-weight: 400;
    color: #000;
    margin-right: 4px;
}

#prodImg {
    border: 1px solid rgba(144, 150, 154, 0.75);
    max-width: 525px;
    width: 100%;
}

#prodImg img {
    width: 100%;
}

.product-about-section {
    position: relative;
    padding-bottom: 40px;
}

.tab-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.tab-box {
    border-radius: 10px;
    background: #F8F8F8;
}

#tabs-nav {
    display: flex;
    gap: 20px;
}

#tabs-nav li a {
    display: block;
    padding: 10px 40px;
    color: rgba(144, 150, 154, 0.75);
    font-size: 18px;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: -0.176px;
    transition: all .4s ease-in-out;
}

#tabs-nav li.active {
    background: #FFF;
}

#tabs-nav li.active a {
    color: rgba(0, 0, 0, 0.75);
}

.tab-content {
    padding: 30px 0;
    display: none;
}

.tab-content p, 
.tab-content ul li {
    color: rgba(0, 0, 0, 0.75);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.198px;
}
.tab-content .ds-title {
    color: rgba(0, 0, 0, 0.75);
    font-weight: 700;
}

.tab-content span {
    color: #90969A;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.176px;
    display: block;
}

.tab-content p,
.tab-content span {
    margin-bottom: 20px;
}

.tab-content ul {
    padding-left: 24px;
    padding-bottom: 20px;
}

.tab-content ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.split {
    column-count: 2;
}   

.favorites-section.recently-viewed.white-themed {
    background: #ECECEC;
}

.favorites-section.recently-viewed.white-themed .fs-60 {
    color: rgba(0, 0, 0, 0.75);
}