/* FONT IMPORT */
@import url(layout.min.css);
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #D20915;
    --secondary: #D20A16;
}

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

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

section {
    position: relative;
}

h1 {
    font-family: "Abril Fatface", serif;
}

h2,
h3,
h4 {
    font-family: "Playfair Display", serif;
}

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

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

figure {
    margin: 0;
}

/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
    background: var(--white);
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 0.75rem 1.7em;
    letter-spacing: 1.01px;
    line-height: normal;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.themeBtn:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -100%;
    transition: 0.5s ease;
    z-index: -1;
}

.themeBtn:hover:before {
    bottom: 0;
}

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

/* !GLOBAL CSS */

/* Main Banner Css Start */

.mainBanner {
    background: url(../images/mainBanner.png)center/cover fixed;
    height: 754px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bannerContent h1 {
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3.02px;
    font-size: 4.5rem;
    font-weight: 400;
}

.bannerContent p {
    color: var(--white);
    font-family: "Advent Pro", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3.02px;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.bannerImages img {
    position: absolute;
}

.path1 {
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 840px;
    right: -2rem;
}

.path2 {
    top: -30%;
    right: 0;
}

/* Main Banner Css End */

/* Product Sec Css Start */

.productSec {
    padding: 7.5rem 0 5.625rem 0;
}

.productCard {
    text-align: center;
}

.productCard h5 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0.08px;
}

.productCard span {
    color: var(--black);
    letter-spacing: 0.08px;
    font-weight: 500;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 0.875rem;
    font-weight: 700;
}

.swiper-button-next,
.swiper-button-prev {
    background: var(--primary);
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50px;
    color: var(--white);
    bottom: 3rem;
    top: inherit;
}

.swiper-button-next {
    right: 43%;
}

.swiper-button-prev {
    left: 43%;
}

/* Product Sec Css End */

/* Shop Sec Css Start */

.shopSec {
    padding: 6.25rem 0;
    background: #F5F5F5;
}

.shopHeading h2 {
    color: var(--black);
    text-transform: capitalize;
    letter-spacing: 0.08px;
    font-size: 2.3125rem;
    font-weight: 600;
}

.shopHeading p {
    color: #727272;
    letter-spacing: 0.08px;
    margin-bottom: 2rem;
}

.shopCard {
    text-align: center;
    display: block;
}

.shopCard figure {
    background: var(--white);
    /*padding: 2rem 0;*/
    border: 1px solid transparent;
    margin-bottom: 1rem;
    transition: 0.5s ease;
    overflow: hidden;
    position: relative;
}

.shopCard span {
    color: var(--black);
    letter-spacing: 0.08px;
    font-weight: 500;
}

.shopCard small {
    display: block;
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.08px;
    margin-top: 8px;
}

.shopCard:hover figure {
    border-color: var(--secondary);
}

.shopCard figure h6 {
    position: absolute;
    top: 10px;
    right: -6rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    padding: 4px 8px;
    margin: 0;
    transition: 0.5s ease;
    text-transform: uppercase;
}

.shopCard:hover figure h6 {
    right: 0.625rem;
}

.shopSec .row+.row {
    margin-top: 3.125rem;
}

/* Shop Sec Css End */

/* Fashion Sec Css Start */

.fashionSec {
    padding: 7.5rem 0;
    background: var(--black);
    z-index: 1;
    overflow: hidden;
}

.faqWraps #accordion .card {
    border: none;
    padding: 0 0 0.5rem 0;
    background: transparent;
    margin-bottom: 0.5rem;
    border-radius: unset;
}

.faqWraps #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: baseline;
    color: var(--white);
    padding: 0;
    border: 0;
    font-size: 1.375rem;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    border-bottom-left-radius: 0;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.08px;
    gap: 1rem;
}

.faqWraps #accordion .card .btn-link span {
    font-size: 1.625rem;
    font-family: 'Playfair Display';
    font-weight: 500;
    letter-spacing: 0.08px;
}

.faqWraps #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-left: auto;
    font-size: 1rem;
}

.faqWraps #accordion .card .btn-link i::before {
    content: "\f106";
}

.faqWraps #accordion .card .btn-link.collapsed i::before {
    content: "\f107";
}

.faqWraps #accordion .card+.card {
    margin-top: 0;
}

.faqWraps #accordion .card .card-body {
    padding: 0rem 0rem 0.5rem 0rem;
}

.faqWraps #accordion .card .card-body p {
    color: var(--white);
    font-size: 0.875rem;
    letter-spacing: 0.08px;
    line-height: 1.85;
    margin: 0.625rem 0 0 2.5rem;
}

.fashionContent {
    text-align: center;
}

.fashionContent h2 {
    color: var(--white);
    letter-spacing: 0.08px;
    font-weight: 600;
    font-size: 3rem;
}

.fashionContent p {
    color: var(--white);
    letter-spacing: 0.08px;
    font-size: 0.875rem;
    margin: 1.25rem 0 1.875rem 0;
}

.shopBtn {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.08px;
    border: 1px solid var(--white);
    padding: 0.75rem 1.5em;
    display: inline-block;
}

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

.shopBtn i {
    padding-left: 6px;
}

.fashionPath {
    position: absolute;
    top: 0;
    z-index: -1;
    left: 27%;
}

/* Fashion Sec Css End */

/* Jacket Sec Css Start */

.jacketSec {
    padding: 6.25rem 0;
}

.jacketWraps {
    position: relative;
}

.jacketContent {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 1.875rem;
    align-items: flex-start;
}

.jacketContent h3 {
    color: var(--black);
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 2rem;
    writing-mode: vertical-rl;
    font-family: 'Poppins';
    background: #F0F0F0;
    padding: 0.625rem 4px;
}

.jacketContent small {
    background: var(--primary);
    display: block;
    width: 6px;
    height: 55%;
    margin-left: 1.2rem;
}

.jacketContent span {
    color: var(--white);
    background: var(--primary);
    letter-spacing: 0.08px;
    padding: 8px 1rem;
    display: block;
    margin-top: 1.875rem;
}

.jacketWraps2 .jacketContent {
    flex-direction: column-reverse;
}

.jacketWraps2 .jacketContent span {
    margin: 0 0 1.875rem 0;
}

.jacketWraps2 .jacketContent small {
    height: 49%;
}

/* Jacket Sec Css End */

/* Trend Sec Css Start */

.trendSec {
    background: var(--black);
    padding: 6.25rem 0;
    overflow: hidden;
    z-index: 1;
}

.trendContent span {
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.625rem;
    letter-spacing: 5.04px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 0.4px;
    display: block;
    font-weight: 500;
}

.trendContent h2 {
    color: var(--white);
    font-size: 7.5rem;
    text-transform: uppercase;
    letter-spacing: 4.8px;
    font-family: 'Abril Fatface';
    line-height: 1;
}

.trendContent p {
    color: var(--white);
    font-size: 1.25rem;
    margin: 1rem 0 2rem 0;
}

.trendPaths img {
    position: absolute;
}

.trend2 {
    top: 0;
    right: 0;
    z-index: -1;
}

.trend1 {
    bottom: 0;
    right: 0;
}

/* Trend Sec Css End */

/* Shipping Sec Css Start */

.shippingSec {
    padding: 5rem 0 3.75rem 0;
}

.shippingBox {
    background: #FAFAFA;
    padding: 2.5rem 1.25rem;
}

.shippingBox h3 {
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
    font-size: 1.375rem;
    letter-spacing: 0.08px;
    margin: 1.25rem 0 1rem 0;
}

.shippingBox p {
    margin: 0;
    color: #545454;
    letter-spacing: 0.08px;
    line-height: 1.8;
}

/* Shipping Sec Css End */

/* Footer Css Start */

footer {
    background: url(../images/footBg.png)center/cover;
    padding-top: 2.5rem;
}

.contactList li a {
    color: var(--white);
    font-size: 1.25rem;
    letter-spacing: 0.08px;
}

.contactList li:nth-child(1) a {
    font-size: 1.625rem;
    font-weight: 500;
}

.contactList {
    margin: 1.875rem 0;
}

.contactList li+li {
    margin-top: 0.75rem;
}

.links {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #999999;
    padding: 1.875rem 0;
}

.links li a {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.08px;
}

.copyRight {
    background: var(--black);
    padding: 0.9375rem 0;
}

.copyRight p {
    color: var(--white);
    margin: 0;
    font-size: 0.875rem;
    letter-spacing: 0.08px;
}

footer ul li a:hover {
    color: var(--primary);
}

/* Footer Css End */

/* Inner Css Start */

.innerBanner {
    /* background: url(../images/mainBanner.png)center/cover; */
    height: 400px;
    display: flex;
    align-items: center;
}

.innerBanner h2 {
    color: var(--white);
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    font-size: 3.5rem;
}

.aboutInner {
    padding: 100px 0;
}

.aboutContent h2 {
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 0.08px;
    font-size: 3rem;
}

.aboutContent p {
    color: var(--black);
    line-height: 1.8;
    width: 93%;
}

.aboutInner .row+.row {
    margin-top: 5rem;
}

.shopLeftBar {
    position: sticky;
    top: 2rem;
}

.shopLeftBar h3 {
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    letter-spacing: 0.08px;
}

.catWraps {
    display: flex;
    color: black;
    justify-content: space-between;
    width: 90%;
    margin-top: 0.75rem;
    text-transform: capitalize;
}

.catWraps .form-check {
    display: flex;
}

.shopInner .shopCard figure {
    background: #F5F5F5;
}

.shopInner .shopCard {
    margin-bottom: 2rem;
}

.mySwiper img {
    width: 90%;
    border-radius: 5px;
}

.mySwiper2 img {
    width: 100%;
    border-radius: 20px;
}

.mySwiper {
    width: 90%;
    margin: auto;
    text-align: center;
    margin-top: 1rem;
}

.quantity-container {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background-color: transparent;
    border: none;
    padding: 0.625rem 0.9375rem;
    cursor: pointer;
    font-size: 1.125rem;
    user-select: none;
    transition: background 0.3s;
    outline: unset !important;
    box-shadow: unset;
    color: var(--black);
}

.qty-btn:hover {
    background-color: transparent;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    outline: none;
    background: transparent;
    color: var(--black);
}

.detailBtns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 1rem;
}

.shopDetails h2 {
    color: var(--black);
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
}

ul.stars {
    display: flex;
    gap: 2px;
}

ul.stars li {
    font-size: 0.75rem;
    color: var(--black);
    margin: 0.75rem 0;
}

.shopDetails .shopBtn {
    color: var(--black);
    border-color: var(--black);
    border-radius: 50px;
    text-transform: uppercase;
}

.shopDetails .shopBtn:hover {
    border-color: var(--primary);
    color: var(--white);
}

.cardsBtns {
    width: 70%;
    text-align: center;
    padding: 1rem 3.6em;
}

.buyBtn {
    width: 100%;
    text-align: center;
    padding: 1rem 3.6em;
    margin-top: 0.875rem;
}

.shopDetails {
    margin-top: 2rem;
}

.shopDetails p {
    color: var(--black);
    line-height: 1.75;
}

.price {
    color: var(--black);
    font-weight: 600;
    font-size: 1.5rem;
}

.producttabSec .tabsPack {
    justify-content: left;
}

.tabsPack {
    display: flex;
    gap: 1.875rem 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tabsPack a {
    color: var(--black);
    text-transform: capitalize;
    font-family: 'Mona Sans';
    font-size: 1.5rem;
    font-weight: 600;
}

.tabsPack a.active,
.tabsPack a.current {
    color: var(--primary);
}

[class^=box-] {
    display: none;
}

[class^=box-].showfirst {
    display: block;
}

.prodtabContent p {
    color: var(--black);
    font-size: 1.125rem;
}

.producttabSec {
    padding-bottom: 5rem;
}

.categorySec h2 {
    color: var(--black);
    font-size: 3rem;
}

.categorySec {
    padding-bottom: 5rem;
}

.contactInner {
    padding: 6.25rem 0;
}

.contactHeadings h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 600;
}

.contactHeadings p {
    color: var(--black);
    font-size: 1.125rem;
}

.contactForm .form-control {
    outline: unset;
    box-shadow: unset;
    background: transparent;
    height: 55px;
    border-radius: 50px;
    border: 1px solid var(--black);
    padding-left: 1.5rem;
    color: var(--black);
    margin-bottom: 1.375rem;
}

.contactForm .form-control::placeholder {
    color: var(--black);
}

.contactForm textarea {
    height: 150px !important;
    padding-top: 1rem;
    resize: none;
    border-radius: 20px !important;
}

.contactForm label {
    color: var(--black);
}

.contactForm .form-check {
    margin: 0.625rem 0 2rem 0;
}

.contactForm {
    margin-top: 1rem;
}

.contactForm .themeBtn {
    outline: unset;
    border: unset;
    background: var(--black);
    color: var(--white);
}

/* Inner Css End */

span.wpcf7-form-control-wrap {
    position: static;
}

.contactBtn.text-center {
    margin-top: 2rem;
}

header {
    position: relative;
    z-index: 111;
}

button.promagnifier {
    height: unset !important;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    border-color: var(--primary) !important;
    color: white !important;
}

.woocommerce ul.products li.product a img {
    margin: 0 !important;
}

.woocommerce span.onsale {
    padding: 0 !important;
    background: var(--primary);
}