:root {
    --white: #fff;
    --black: #000;
    --primary: #33007b;
    --secondary: #ab00ff;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

@font-face {
    font-family: "BallantinesScriptEFBold";
    src: url("../fonts/BallantinesScriptRegular.ttf");
}

.df {
    display: flex;
}

.aic {
    align-items: center;
}

.ais {
    align-items: flex-start;
}

.aie {
    align-items: flex-end;
}

.jcc {
    justify-content: center;
}

.jcfs {
    justify-content: flex-start;
}

.jcfe {
    justify-content: flex-end;
}

.jcsb {
    justify-content: space-between;
}

.frr {
    flex-direction: row-reverse;
}

.fw {
    flex-wrap: wrap;
}

.fnw {
    flex-wrap: nowrap;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

@media (min-width: 1700px) {
    .container {
        max-width: 1400px;
    }
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

figure {
    margin: 0;
}

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

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

header {
    /* position: absolute; */
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    background: var(--white);
    transition: 0.3s ease-in-out;
}

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}

.topRow {
    background: var(--primary);
    padding: 1rem 0;
}

.topRow .btn-group {
    gap: 1.5rem;
    margin-left: 1rem;
}

.topRow .btn-group a {
    color: var(--white);
    font-size: 1.25rem;
}

.topRow .btn-group a:hover {
    color: var(--secondary);
}

.topRow .cartBtn {
    position: relative;
}

.topRow .cartBtn span {
    position: absolute;
    right: -10px;
    top: 0;
    display: inline-grid;
    place-items: center;
    font-size: 10px;
    font-weight: 500;
    color: var(--black);
    line-height: 1;
    background: var(--white);
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

.searchBar {
    display: flex;
    align-items: center;
    border: 2px solid #cccccc;
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    height: 3.5rem;
    gap: 0.5rem;
    padding: 0 0.25rem 0 0.75rem;
    width: 656px;
}

.searchBar input {
    background: transparent;
    border: 0;
    color: #919191;
    font-weight: 400;
    width: 70%;
    outline: none;
    font-size: 0.9375rem;
}

.searchBar select {
    color: #919191;
    border: 0;
    width: 25%;
    outline: none;
    font-weight: 400;
    font-size: 0.9375rem;
    background: transparent;
}

.searchBar button {
    display: inline-grid;
    place-items: center;
    color: var(--white);
    font-size: 1.25rem;
    border-radius: 50%;
    border: 0;
    background-color: var(--secondary);
    width: 3rem;
    height: 3rem;
}

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

.navbar-nav {
    gap: 1rem 2rem;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 90%;
    width: 100%;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.25rem;
    font-weight: 300;
    padding: 0;
    color: #040404;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.3s ease-in-out;
    background-color: var(--secondary);
    transform-origin: center;
    transform: scaleX(0);
}

.navbar-nav .nav-item.active .nav-link::before,
.navbar-nav .nav-item .nav-link:hover::before {
    transform: scaleX(1);
}

.navbar-nav .nav-item.dropdown .nav-link::after {
    content: "\f078";
    display: inline-block;
    margin-left: 5px;
    font-family: "Font Awesome 5 Pro";
}

.navbar-nav .nav-item.dropdown .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 2.275rem;
    z-index: 111;
    padding: 0.5em;
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.3s ease-in-out;
    background: var(--white);
}

.navbar-nav .nav-item.dropdown .sub-menu li a {
    color: var(--primary);
    padding: 0.125em 0.75em;
    font-size: 1rem;
    font-weight: 300;
    display: inline-block;
    text-transform: uppercase;
}

.navbar-nav .nav-item.dropdown .sub-menu li a:hover {
    color: var(--secondary);
}

.navbar-nav .nav-item.dropdown:hover .sub-menu {
    transform: scaleY(1);
}

.form-inline {
    margin-left: 2rem;
}

.themeBtn {
    display: inline-block;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 5px;
    padding: 1em 1.5em;
    text-transform: uppercase;
    border: 1px solid var(--white);
}

.themeBtn:hover {
    background: var(--white);
    color: var(--secondary);
}

.darkBtn {
    display: inline-block;
    color: #3c3c3c;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 5px;
    padding: 1.125em 1.5em;
    text-transform: uppercase;
    border: 2px solid #3c3c3c;
}

.darkBtn:hover {
    background: var(--secondary);
    color: var(--white);
}

.secHeading {
    font-size: 3.125rem;
    font-weight: 700;
    color: #3c3c3c;
    line-height: 1;
    position: relative;
    text-transform: uppercase;
}

/* Category Section */
.categorySec {
    background: #f8f8f8;
    padding: 4rem 0;
}

.categorySec .secHeading {
    font-size: 2.5rem;
}

.categoryCard .imgWrap {
    display: block;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.categoryCard .imgWrap img {
    transition: 0.5s ease-in-out;
}

.categoryCard h6 {
    font-size: 1.125rem;
    color: #3c3c3c;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    text-align: center;
}

.categoryCard:hover .imgWrap img {
    transform: scale(-1) rotate(180deg);
}

.categorySec .swiper-button-next,
.categorySec .swiper-button-prev {
    background: none;
    color: #a6aeb7;
    position: absolute;
    font-size: 1.75rem;
}

.categorySec .swiper-button-next {
    right: -2rem;
}

.categorySec .swiper-button-prev {
    left: -2rem;
}

/* About Section */
.aboutSec {
    padding: 10rem 0;
}

.abtImg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abtImg .abt1 {
    box-shadow: 0px 0px 36px 4px rgba(79, 79, 79, 0.23);
    position: relative;
    z-index: 1;
}

.abtImg .abt2 {
    position: absolute;
    left: 0;
    top: -3rem;
}

.abtImg .abt3 {
    position: absolute;
    left: -4rem;
    bottom: -5rem;
}

.abtImg .abt4 {
    position: absolute;
    right: 3rem;
    top: 3rem;
}

.abtImg .abt5 {
    position: absolute;
    bottom: -3rem;
    right: 1rem;
}

.aboutSec P {
    font-size: 1.25rem;
    font-weight: 400;
    color: #606060;
    line-height: 1.571;
}

/* mainCategory */
.mainCategory {
    padding: 0;
    background: var(--primary);
}

.mainCategory h2 {
    color: var(--white);
    font-size: 5rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.mainCard {
    position: relative;
    overflow: hidden;
}

.mainCard img {
    transition: 0.5s ease-in-out;
}

.mainCard .content {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgb(0 0 0/25%);
}

.mainCard .content a {
    font-size: 2.0625rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.mainCard .content ul li {
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.8;
    list-style: disc;
    list-style-position: inside;
}

.mainCard:hover img {
    transform: scale(1.125);
}

/* Shop Section */
.shopSection {
    background: var(--primary);
}

.shopCard {
    position: relative;
}

.shopCard .saleTag {
    border-radius: 50%;
    background: #5d9668;
    display: inline-grid;
    place-items: center;
    width: 3.125rem;
    height: 3.125rem;
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    color: var(--white);
    font-size: 14px;
}

.shopCard .imgWrap {
    background: #e1dee6;
    display: grid;
    place-items: center;
}

.shopCard .content {
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid #b7b7b7;
}

.shopCard .content h3 {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.shopCard .content p {
    margin: 0;
    font-weight: 300;
    color: var(--white);
    font-size: 1.125rem;
}

.shopCard .content p strong {
    color: var(--black);
    font-weight: 600;
    margin-left: 5px;
}

.shopCard .arrowBtn {
    border: 1px solid var(--white);
    width: 2.125rem;
    height: 2.125rem;
    font-size: 1rem;
    color: var(--white);
    display: inline-grid;
    place-items: center;
}

.shopCard .arrowBtn:hover {
    background: var(--secondarys);
    color: var(--white);
}

.shopCard .colorList {
    display: flex;
    gap: 0.5rem;
    margin: 0.75rem 0 0;
    align-items: center;
}

.shopCard .colorList li {
    height: 1.5rem;
    width: 1.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
}

.shopCard .colorList li span {
    border-radius: 50%;
    display: inline-block;
    height: 1rem;
    width: 1rem;
}

.shopCard .colorList li:nth-child(1) span {
    background: #d05357;
}

.shopCard .colorList li:nth-child(2) span {
    background: #4e4e4f;
}

.shopCard .colorList li:nth-child(3) span {
    background: #ebaa57;
}

.shopCard .colorList li:nth-child(4) span {
    background: #ec008c;
}

.shopSection .swiper-prev,
.shopSection .swiper-next {
    width: 5rem;
    height: 5rem;
    font-size: 1rem;
    color: #fff;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.shopSection .swiper-next {
    right: -5rem;
}

.shopSection .swiper-prev {
    left: -5rem;
}

.shopSection .swiper-next:hover,
.shopSection .swiper-prev:hover {
    background: var(--white);
    color: var(--black);
}

/* proCard */
.proCard {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.proCard img {
    transition: 0.3s ease-in-out;
}

.proCard .content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.3s ease-in-out;
    transform: scale(0);
    background-color: rgb(32 34 44/72%);
}

.proCard .content h3 {
    font-size: 3.125rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.proCard:hover img {
    transform: scale(1.125);
}

.proCard:hover .content {
    transform: scale(1);
}

/* affordSec */
.affordSec {
    padding: 8rem 0;
    background: url(../images/afordImg.jpg) center/cover no-repeat;
}

.affordSec .contentBox {
    background: var(--white);
    padding: 5rem;
}

.affordSec .contentBox p {
    font-size: 1.275rem;
    font-weight: 200;
    color: #202020;
    line-height: 1.571;
    text-align: left;
    margin-bottom: 2rem;
}

/* instaSec */
.instaSec .secHeading {
    font-size: 6.25rem;
}

.instaSec .wrapper {
    position: relative;
}

.instaSec .insta-next {
    position: absolute;
    top: 50%;
    right: -4rem;
    font-size: 2rem;
    color: #606060;
}

.instaSec .insta-prev {
    position: absolute;
    top: 50%;
    left: -4rem;
    font-size: 2rem;
    color: #606060;
}

/* newsLtrSec */
.newsLtrSec {
    padding: 5rem 0;
    background: var(--primary);
}

.newsLtrSec h2 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 500;
}

.newsLtrSec .form-group {
    display: flex;
    align-items: center;
    width: 100%;
    height: 5rem;
}

.newsLtrSec .form-group input {
    width: 100%;
    height: 5rem;
    padding-left: 1.5rem;
    background: transparent;
    transition: 0.3s ease-in-out;
    border: 1px solid var(--white);
}

.newsLtrSec .form-group button {
    background: var(--white);
    color: var(--black);
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 600;
    height: 5rem;
    padding: 0 1.5em;
    border: 1px solid var(--white);
}

.newsLtrSec .form-group button:hover {
    background: var(--black);
    color: var(--white);
}

/* Footer CSS */
footer {
    padding-top: 6rem;
    background: #000000;
}

footer h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 1.5rem;
}

footer .links li a {
    font-size: 1.125rem;
    font-weight: 400;
    color: #959595;
    display: inline-block;
    line-height: 2.056;
}

.socialList li a:hover,
footer .links li a:hover {
    color: var(--secondary);
}

.socialList li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: #959595;
    line-height: 2;
}

.copyRight {
    margin-top: 4rem;
    padding: 1rem 0;
    background: #0a0a0a;
}

.copyRight p {
    color: var(--white);
    font-size: 1.125rem;
    margin: 0;
    line-height: 1;
}

.anloader video {
    width: 100%;
    height: 100%;
}

.anloader {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1111;
    background: #fff;
    text-align: center;
    display: flex;
    background: #000;
}

.anloader > div {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0px;
    left: 0px;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.anloader img {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

.innerBan {
    position: relative;
}

.innerBan > img {
    width: 100%;
}

.innerBan .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.innerBan .content h2 {
    font-size: 6.25rem;
    color: #fff;
    font-family: "BallantinesScriptEFBold";
}

.innerShop {
    background-color: #00000005;
}

.innerShop .shopCard .content * {
    color: #000;
}

.innerShop .shopCard .content {
    margin-top: 1rem;
}

.innerShop .row .row {
    gap: 2.5rem 0;
}

.filter .filterHead {
    background: var(--primary);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.filter .filterHead h3 {
    margin: 0;
    font-size: 1.375rem;
    color: #fff;
    text-transform: uppercase;
}

.filter .filterBody {
    border-inline: 1px solid #d5d1d1;
}

.filter .filterBody .filterCont > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    width: 100%;
    background: transparent;
    border: none;
    border-block: 1px solid #d5d1d1;
}

.filter .filterBody .filterCont button span {
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.filter .filterBody .filterCont button i {
    color: var(--primary);
}

.filter .filterBody .filterCont .searchCont {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.filter .filterBody .filterCont .searchCont input {
    background: transparent;
    color: #767676;
    height: 50px;
    border: 1px solid #767676;
    padding-left: 1rem;
}

.filter .filterBody .filterCont .searchCont input::placeholder {
    color: #767676;
}

.filter .filterBody .filterCont .searchCont button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    background: var(--primary);
}

.filter .filterBody .filterCont .searchCont input:focus {
    box-shadow: none;
    outline: none;
}

.filter .filterBody .filterCont .inputCont {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.filter .filterBody .filterCont .inputCont label {
    color: #767676;
    font-size: 0.875rem;
    margin: 0;
    text-transform: uppercase;
}

.filter .filterBody .filterCont .inputCont:first-of-type {
    padding-top: 1rem;
}

.filter .filterBody .filterCont .inputCont:last-of-type {
    padding-bottom: 1rem;
}

.filter .filterBody .filterCont .inputCont + .inputCont {
    margin-top: 0.5rem;
}

.filter .filterBody .filterCont > button:focus {
    outline: none;
    box-shadow: none;
}

.filter .filterBody .filterCont .priceCont {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.filter .filterBody .filterCont .priceCont input {
    width: inherit;
    border: 1px solid #d5d1d1;
    height: 40px;
    color: #767676;
}

.filter .filterBody .filterCont .priceCont input:focus {
    outline: none;
    box-shadow: none;
}

.filter .filterBody .filterCont .priceCont button {
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.filter .filterBody .filterCont:last-of-type {
    border-bottom: 1px solid #d5d1d1;
}

.contactSec {
    position: relative;
}

.contactSec .secHeading {
    font-size: 3.125rem;
    color: #081b3d;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.contactSec .form-group {
    position: relative;
    display: flex;
    border: 1px solid #efefef;
    background-color: #f1f1f1;
}

.contactSec .form-group i {
    display: grid;
    place-items: center;
    color: #7e7e7e;
    font-size: 1.25rem;
    background-color: #dedede;
    width: 58px;
    height: 58px;
}

.contactSec .form-group .form-control {
    border-radius: 0;
    background-color: transparent;
    height: 58px;
    border: 0;
    font-size: 16px;
    color: var(--black);
    transition: 0.4s ease-in-out;
    line-height: 1;
}

.contactSec .form-group .form-control::placeholder {
    color: #9f9f9f;
}

.contactSec .form-group textarea.form-control {
    height: 180px;
    padding-top: 1rem;
}

.contactSec .form-group .form-control:focus {
    background-color: var(--theme-color);
}

.contactSec button {
    margin-top: 1rem;
    background-color: #ab00ff;
    color: var(--white);
    border: none;
    border-radius: 50px;
    width: 100%;
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    max-width: 400px;
    height: 55px;
}

.addressbox {
    margin: 4rem 0 0;
    display: flex;
    align-items: center;
    gap: 0 1rem;
}

.addressbox span {
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #081b3d;
}

.addressbox a, .addressbox address {
    color: #081b3d;
    font-weight: 400;
    margin: 0;
    line-height: 1;
    font-size: 2.0625rem;
}

.contactSec .social {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.contactSec .social li a {
    color: #081b3d;
    font-size: 4rem;
}

.contactSec .social li a:hover {
    color: var(--primary)
}

.contactSec .img1 {
    position: absolute;
    top: 0;
    left: 0;
}

.contactSec .img2 {
    position: absolute;
    top: 20%;
    right: 0;
}

.addressbox .contenttext {
    width: 75%;
}

/* product detail css start */

.main-prodtl .prodtl-img {
    position: relative;
}

/* .main-prodtl .prodtl-img:after {
  content: "";
  position: absolute;
  right: -60px;
  background-color: #ebebeb;
  width: 1px;
  height: 442px;
  top: 0;
} */

.prodtl-txt h2 {
    font-size: 2.125rem;
    color: #000;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.prodtl-txt h3 {
    font-size: 16px;
    color: #388980;
    margin: 25px 0 30px;
    font-weight: 500;
}

.prodtl-txt h3 span {
    padding-right: 7px;
}

.prodtl-txt h3 span i {
    color: #f7941d;
    padding-right: 5px;
}

.prodtl-txt h4 {
    font-size: 15px;
    color: #747474;
    font-weight: 500;
    margin: 0 0 25px;
}

.prodtl-txt .stckst {
    display: flex;
}

.prodtl-txt .stckst li:first-child {
    font-size: 26px;
    color: #323232;
    font-weight: 500;
    padding-right: 20px;
}

.prodtl-txt .stckst li:last-child {
    font-size: 1.75rem;
    color: #000000;
    font-weight: 700;
    margin: 1rem 0;
}

.prodtl-txt .stckst li:last-child i {
    padding-right: 7px;
}

.ad-crtstwo ul {
    margin: 30px 0 30px;
    display: flex;
    align-items: center;
}

.ad-crtst ul li {
    /* display: inline-block; */
}

.number .minus {
    font-size: 30px;
}

.main-prodtl .number .minus {
    width: 32px;
    height: 35px;
    background: #707070;
    border-radius: 4px;
    padding: 0px 5px 0 5px;
    /* border: 1px solid #e1e1e1; */
    display: flex;
    vertical-align: middle;
    text-align: center;
    color: #000;
    font-size: 24px;
    align-items: center;
    justify-content: center;
}

.number {
    display: flex;
}

.main-prodtl .number .plus {
    width: 32px;
    height: 35px;
    background: #707070;
    border-radius: 4px;
    padding: 0 5px 0 5px;
    /* border: 1px solid #707070; */
    display: flex;
    vertical-align: middle;
    text-align: center;
    color: #000;
    font-size: 24px;
    align-items: center;
    justify-content: center;
}

.number .minus {
    float: left;
}

.number span {
    cursor: pointer;
}

.number input {
    border: none;
    height: 36px;
    /* border-radius: 4px; */
    /* border: 1px solid #e2e2e2; */
    /* display: inline-block; */
    width: 34px;
    text-align: center;
    color: #000;
    /* float: left; */
    background-color: transparent;
    margin: 0 10px;
}

.ad-crtst ul li a {
    border-radius: 5px;
    background-color: #388980;
    font-size: 14px;
    color: #ffffff;
    display: inline-block;
    padding: 14px 34px;
    text-transform: uppercase;
    margin: 0 0 0 20px;
}

.prodtl-txt h5 {
    font-size: 16px;
    display: inline-block;

    padding: 15px 12px;
    font-weight: 600;
    margin: 0 0 25px;
    color: #ffff;
}

.ratd-txt {
    padding: 70px 0 50px;
}

.ratd-txt h2 {
    font-size: 26px;
    color: #323232;
    font-weight: 600;
    margin: 0 0 20px;
}

.ratd-txt p {
    font-size: 17px;
    color: #747474;
    font-weight: 500;
    margin: 0 0 24px;
    line-height: 28px;
}

.slider-nav .cell {
    background: #0b0b0b;
    height: 130px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    margin: 5px;
}

.slider-nav {
    padding-top: 20px;
}

.prodtl-txt p {
    font-size: 18px;
    color: #5e5e5e;
    /* width: 65%; */
    font-weight: 500;
    line-height: 27px;
}

.main-prodtl {
    padding: 6rem 0;
    background: #ffff;
}

.main-prodtl .prodtl-img .productIMAGE img {
    padding: 2rem 0;
    width: 100%;
}

.cardbutton a {
    width: 100%;
    text-align: center;
    border-color: #000;
}

.cardbutton {
    display: flexx;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.cardbutton button {
    background: transparent;
    border-radius: 6px;
    /* padding: 1rem 1rem; */
}

.cardbutton button i {
    font-size: 1.3rem;
}

.ad-crtst.ad-crtstwo strong {
    color: #000;
    padding-right: 1rem;
}

.aboutInner a {
    color: #fcf3cf;
}

.brandicon {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #000;
    margin-bottom: 1rem;
}

.brandicon img {
    max-width: 150px;
}

.brandicon h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
    font-weight: 500;
}

.shopBOX figure img {
    filter: brightness(0) invert(1);
}

.shopBOX {
    min-height: 200px;
}

.innerBnr video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .boxx figure img {
  filter: revert;
} */

.shopBOX p {
    text-transform: uppercase;
}

.shopBan h2 {
    font-size: 5.5rem;
}

.moretext {
    display: none;
}

.main-Img img {
    position: absolute;
    bottom: -2rem;
    right: -15rem;
}

.socialIcon img {
    height: 40px;
}

.main-slider.abtBg img {
    height: auto;
}

.prodtl-txt a {
    color: #000;
    font-weight: 700;
}

.footPara {
    font-size: 12px;
    margin-top: 1.5rem;
}

.brandBox figure img {
    filter: none;
}

.rating-box {
    display: inline-block;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 0;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 2rem;
    transition: color 0.2s linear;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover ~ label,
.rating-box .rating-container input:checked ~ label {
    color: gold;
}

.productDetailBox h2 {
    color: var(--secondary);
    font-size: 3rem;
}

.productDetailBox h4 {
    font-size: 2.5rem;
    color: #fff;
}

.productDetailBox p {
    font-size: 1.25rem;
    line-height: initial;
    color: #fff;
}

.prodtl-txt p a {
    color: #fffa64;
    font-weight: 600;
}

.prodDetl {
    color: #000;
}

.prodDetl li span {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
    padding-right: 0.5rem;
    text-transform: capitalize;
}

.prodDetl li {
    font-size: 1.3rem;
    font-weight: 400;
    text-transform: capitalize;
}

/* product detail css end */
.weekSec{
    padding: 0;
}
.weekSec p {
    font-size: 0.9375rem;
    margin: 1rem 0 3rem;
}

.weekSec h2 {
    font-size: 4.375rem;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 1rem;
}

.weekSec h4 {
    font-size: 2.9375rem;
    font-weight: 400;
    text-transform: uppercase;
}

.weekSec h5 {
    font-size: 11.25rem;
    line-height: 1;
    color: #000;
    margin-left: -5rem;
    position: relative;
    text-transform: uppercase;
    font-weight: 400;
}

.weekSec h5::before {
    content: "";
    position: absolute;
    /* inset: 0; */
    bottom: 0;
    background: #b71337;
    width: 50%;
    height: 11px;
}

.weekSec h6 {
    font-size: 12.375rem;
    color: #000;
    font-weight: bold;
    margin-left: -5rem;
}

.weekSec h6 span {
    font-size: 4.0625rem;
    color: #f14a88;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    top: -7rem;
    left: -4rem;
}

.weekSec .colorList {
    display: flex;
    gap: 0.5rem;
    margin: -1rem 0 0;
    align-items: center;
    justify-content: center;
}

.weekSec .colorList li {
    margin: 0 0.4rem;
}

.weekSec .colorList li span {
    border-radius: 50%;
    display: inline-block;
    height: 2.5rem;
    width: 2.5rem;
}

.weekSec .colorList li:nth-child(1) span {
    background: #d05357;
}

.weekSec .colorList li:nth-child(2) span {
    background: #4e4e4f;
}

.weekSec .colorList li:nth-child(3) span {
    background: #003471;
}

.weekSec .colorList li:nth-child(4) span {
    background: #ebaa57;
}

.weekBox {
    border-bottom: 5px solid #dfe3e9;
    padding: 8rem 0;
}

.weekBox-2 {
    border-bottom: 5px solid #dfe3e9;
    padding: 8rem 0;
}

.weekBox-2 h6 {
    margin-left: 0;
}

.weekBox-2 h5 {
    margin-left: 0rem;
}
.abtSec p {
    font-size: 0.9375rem;
    margin: 1rem 0;
}

.abtSec h4 {
    font-size: 4.0625rem;
    font-weight: 400;
    text-transform: uppercase;
}

.abtSec h5 {
    font-size: 1.875rem;
    margin: 1rem 0;
    text-transform: capitalize;
}
