* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Hide default cursor */
body {
    /*cursor: none;*/
}

/* Dot (inner cursor) */
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: black;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out;
    transform: translate(-50%, -50%);
}

/* Outline (outer cursor) */
.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid black;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.25s ease-out;
    transform: translate(-50%, -50%);
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.woff2') format('woff2'),
        url('../fonts/MyriadPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nimbus-Medium';
    src: url('../fonts/NimbusRomNo9L-Med.woff2') format('woff2'),
        url('../fonts/NimbusRomNo9L-Med.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nimbus-Regular';
    src: url('../fonts/NimbusRomNo9L-Reg.woff2') format('woff2'),
        url('../fonts/NimbusRomNo9L-Reg.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/*@font-face {*/
/*    font-family: 'NimbusRomNo9L-Med.woff2';*/
/*    src: url('../fonts/HelveticaCE-Regular.woff2') format('woff2'),*/
/*        url('../fonts/HelveticaCE-Regular.woff') format('woff');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/

/*@font-face {*/
/*    font-family: 'Helvetica';*/
/*    src: url('../fonts/HelveticaCE-NarrowBold.woff2') format('woff2'),*/
/*        url('../fonts/HelveticaCE-NarrowBold.woff') format('woff');*/
/*    font-weight: bold;*/
/*    font-style: normal;*/
/*    font-display: swap;*/
/*}*/

:root {
    --primary: #173964;
}

body {
    font-family: 'Myriad Pro';
    background-color: white;
    font-size: 15px;
}

a {
    text-decoration: none;
}

ol,
ul,
dl {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

p,
li,
a {
    font-size: 1rem;
    letter-spacing: .3px;
    line-height: 1.6;
    transition: .4s ease;
    color: #202020;
    font-family: 'Myriad Pro';
}

img {
    max-width: 100%;
    height: auto;
    transition: .4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #202020;
    line-height: normal;
    font-family: 'Nimbus-Medium';
    
}

/* header  */

@media (min-width: 1200px) and (max-width: 1399.98px) {

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

.top-header {
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.17);
    padding: 10px 0;
}

.logo img {
    width: 165px;
}

.logo-text {
    border-left: 2px solid #cdcdcd;
    padding-left: 15px;
}

.nav-btn a {
    display: inline-block;
    padding: 7px 36px;
    background-color: var(--primary);
	color: #fff;
	border: 1px solid #000;
	transition: all 0.5s ease;
}

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

.scroll-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    /*border-right: 2px solid #a5a5a5;*/
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

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

.main-header {
    padding: 10px 0;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.17);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.menus {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

ul.menus li a {
    display: inline-block;
    padding: 10px 30px;
}

.side-menu a {
    color: #000;
    margin: 0 5px;
    position: relative;
    font-size: 22px;
    cursor: pointer;
}

.side-menu a span {
    position: absolute;
    width: 15px;
    height: 15px;
    display: grid;
    place-content: center;
    background: #000;
    color: white;
    top: -8px;
    right: -4px;
    font-size: 10px;
    border-radius: 100%;
}

a.cat-toggle {
    color: #000;
    font-size: 2rem;
}

button.btn-close {
    opacity: 1 !important;
    color: white !important;
    background: #000;
    line-height: 1;
    font-size: 1.2rem;
}

.sec-padding {
    padding: 3rem 0;
}

/* cat css  */

.cat-img img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.cat-img {
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.cat-box {
    width: 95%;
    margin: auto;
    position: relative;
    text-align: center;
}

.cat-link a {
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    transition: .4s ease;
}

.cat-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: transparent;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .4s ease;
}

.cat-box:hover .cat-img:before {
    opacity: 1;
}

.cat-box:hover .cat-link a {
    transform: translate(-50%, -50%) scale(1.4);
}

.cat-text h5{
	transition: all 0.5s ease;
}

.cat-box:hover .cat-text h5 {
    color: var(--primary);
}

ul.slick-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

ul.slick-dots li button {
    font-size: 0;
    border: 0;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 3px 6px rgb(0 0 0 / 25%);
    transition: .4s ease;
}

ul.slick-dots li.slick-active button {
    background: var(--primary);
    width: 30px;
    border-radius: 30px;
}

button.slick-arrow {
    border: none;
    background: #ffffff;
    width: 35px;
    height: 35px;
    font-size: 17px;
    position: absolute;
    top: 40%;
    box-shadow: 0 3px 6px rgb(0 0 0 / 18%);
    border-radius: 100%;
    z-index: 9;
    line-height: 2;
}

button.slick-prev.slick-arrow {
    left: -10px;
}

button.slick-next.slick-arrow {
    right: -10px;
}

/* banner css  */

.banner-slide {
    width: 100%;
    position: relative;
    z-index: 9;
    background-color: #dbdbd9;
}

.banner-img {
    position: relative;
}

.banner-text {
    position: absolute;
    top: 20%;
    width: 42%;
    left: 30%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.banner-text h5 {
    font-family: cursive;
    font-size: 1.5rem;
    border-bottom: 2px solid #000;
    display: inline-block;
    padding: 0 0 3px;
}

.banner-text h2 {
    font-size: 3rem;
    width: 100%;
/*     margin: 20px 0; */
}

.banner-text h2 span {
    color: var(--primary);
    font-weight: 600;
}

.banner-sec ul.slick-dots {
    position: absolute;
    bottom: 40px;
    left: 6%;
}

.title {
     font-size: 2rem; 
}

/* product css  */

.product-box {
    width: 100%;
    position: relative;
    margin: 0 0 30px;
	overflow: hidden;
}

.pr-img {
    overflow: hidden;
    position: relative;
    background: #f9f8f4;
}

.pr-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
	    position: relative;
    overflow: hidden;
}

/* Overlay background */
.pr-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: 0.3s ease;
  z-index: 1;
}

/* Overlay text */
/*.pr-img::before {*/
/*  content: "Trending Collection";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
  
/*  color: #fff;*/
/*  font-size: 16px;*/
/*  font-weight: 600;*/
/*  text-align: center;*/

/*  opacity: 0;*/
/*  z-index: 2;*/
/*  transition: 0.3s ease;*/
/*	letter-spacing: 3px;*/
/*}*/

/* Hover effect */
.pr-img:hover::after,
.pr-img:hover::before {
  opacity: 1;
}

.pr-icons a {
    display: grid;
    width: 35px;
    height: 35px;
    place-content: center;
    background: #fff;
    color: #000;
    margin: 0 0 5px;
}

.pr-icons {
    position: absolute;
    bottom: 30px;
    right: 0;
    transition: .4s ease;
    opacity: 0;
    height: 60%;
    width: auto;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 1px;
}

.pr-icons a:hover {
    background: var(--primary);
	color: #fff;
}

.pr-icons a svg {
    stroke: #333;
    transition: all 0.3s ease;
	margin: 0 !important;
}

.pr-icons a:hover svg {
    stroke: #fff;
}

.pr-cart a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    transform: translateY(100%);
    font-size: 15px;
	z-index: 9;
}

.pr-upper {
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    margin: 0 0 15px;
    overflow: hidden;
    width: 100%;
    z-index: 9;
}

.product-box:hover .pr-cart a {
    transform: inherit;
}

.pr-text small , .pr-text small a {
    color: var(--primary);
    font-weight: 500;
}

.pr-text {
    position: relative;
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.price {
    color: #000;
    opacity: .7;
}


.product-box:hover img {
    transform: scale(1.1);
}

.product-box:hover .pr-icons {
    opacity: 1;
}

.num {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.num span {
    font-weight: normal;
    font-size: 1.2rem;
}

.add-box {
    width: 100%;
    position: relative;
/*     background: #f9f8f4; */
    padding: 24px;
/*     height: 500px; */
    overflow: hidden;
}

.add-box img {
    /* bottom: 0; */
    /* right: 15px; */
    width: 100%;
    height: auto;
    display: block;
}

.add-text {
    padding: 40px;
    width: 50%;
}

.add-text.add-text-2 {
    width: 100%;
    /* text-align: center; */
/*     padding-top: 70px; */
}

.add-box.add-box-2 {
    display: grid;
    place-content: center;
	padding: 70px 0 0 0;
}

.women-slider .product-box {
    width: 95%;
    margin: auto;
}

.show-img{
    overflow: hidden;
    position: relative;
}

.show-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}


.visit-box {
    width: 90%;
    margin-left: auto;
	padding: 70px 0 0 0;
}

.visit-links{
	position: relative;
}

.about-btn-line{
    position: absolute;
    height: 2px;
    background: var(--primary);
    width: 138px;
    top: 50%;
    left: -25%
}

.visit-links a {
	display: inline-block;
    padding: 7px 36px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.5s ease;
}

.visit-links a:hover{
	background: var(--primary);
    color: #fff;
}

/* insta css  */

.insta-box {
    position: relative;
}

.insta-img {
    overflow: hidden;
}

.insta-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.insta-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-content: center;
    text-align: center;
    opacity: 0;
    transition: .4s ease;
}

.insta-text i {
    font-size: 2rem;
    color: white;
}

.insta-text a {
    color: white;
}

.insta-box:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    background: #0000004d;
    top: 0;
    left: 0;
    transition: .4s ease;
}

.insta-box:hover:before {
    height: 100%;
    z-index: 9;
}

.insta-box:hover img {
    transform: scale(1.2);
}

.insta-box:hover .insta-text {
    opacity: 1;
    z-index: 9;
}

.icon-box {
    text-align: center;
    width: 95%;
    margin: auto;
}

.icon-box img {
    width: 60px;
    height: 50px;
    object-fit: contain;
    margin: 0 0 15px;
}

/* footer  */

footer {
    padding: 60px 0 0 0;
    background: var(--primary);
}

footer h4 {
    font-size: 24px;
    margin: 0 0 25px;
	color: #e9bf21 !important;
}

.footer-box form input[type="email"] {
    width: 100%;
    background: white;
    position: relative;
    border: 0;
    padding: 8px 15px;
    box-shadow: rgb(155 148 148 / 26%) 0px 2px 8px 0px;
}

.footer-box form input[type="submit"] {
    border: 0;
    background: #000;
    padding: 10px;
    position: absolute;
    right: 0;
    color: white;
    width: auto;
    font-size: inherit;
    top: 1px;
}

.footer-box form {
    position: relative;
    width: 90%;
    margin: 0 0 25px;
}

.socials a {
    font-size: 20px;
    margin: 0 5px;
    color: #fff;
	transition: all 0.5s ease;
}

.socials a:hover{
	color: #e9bf21;
}

.footer-links ul li{
	position: relative;
	padding: 0 0 0 20px;
}

.footer-links ul li a {
    display: inline-block;
    width: 100%;
    margin: 0 0 6px;
	color: #fff;
}

.contact-flex {
    display: flex;
    margin: 0 0 15px;
    gap: 15px;
}

.contact-flex i {
	font-size: 16px;
    color: #000;
    background: #e9bf21;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.contact-flex>div {
    width: 80%;
}

.contact-flex>div span {
    display: block;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 6px;
    letter-spacing: .5px;
}

.copyrights {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9bf21;
    padding: 12px 0;
    margin: 20px auto 0;
}

.payment-img img {
    width: 400px;
}

/* category menu  */

ul.category-menu li {
    position: relative;
}

ul.category-menu li ul.submenu {
    display: none;
}

ul.category-menu li a {
    display: inline-block;
    padding: 12px 10px;
    border-bottom: 1px solid #cdcdcd;
    width: 100%;
}

.category-menu .clk_btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 12px 10px;
    cursor: pointer;
    color: #000;
}

ul.category-menu li ul.submenu li a , ul.category-menu li ul.submenu li ul.submenu li a {
    padding: 10px 10px;
    font-size: .9rem;
    background: #f3f3f3;
    color: #202020;
}

ul.category-menu li.active-item a , ul.category-menu li ul.submenu li.active-item a {
    background: #000;
    color: white;
}

.clk_btn.navactives {
    color: white;
}



/* inner pages  */

.inner-header {
    height: auto;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: top;
    padding: 120px 0;
    background-color: #f2f2f2;
    background-position: 100%;
}

.inner-img img {
    width: 80%;
    margin-top: 40px;
}


.inner-content h2 {
    font-size: 3rem;
	color: var(--primary);
}

.inner-content ul {
    display: flex;
    gap: 10px;
}

.inner-content ul li a,
.inner-content ul span {
    color: var(--primary);
}


.block-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.block-img {
    position: relative;
    overflow: hidden;
    transition: .4s ease;
    border: 1px solid #000;
    border-right: 0;
}

.block-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    background: #0000002e;
    transform: scale(0);
    transition: .4s ease;
}

.block-img:hover:before {
    transform: scale(1);
}

.story-icon img {
    width: 60px;
}

.story-cont h3 {
    font-size: 34px;
    margin-bottom: 20px;
}

.story-cont-sec {
    /* background: url(../img/bg-img-2.jpg); */
    /* padding: 60px 0px; */
    /* margin-bottom: 40px; */
    background-image: url(../img/ab-img.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 509px auto;
/*     margin: 50px 0 0; */
}

.m-img {
    position: relative;
    overflow: hidden;
}

.m-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 20px; */
}

.m-img-2 img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    /* border-radius: 20px; */
}

.m-main {
    position: relative;
}

.m-img-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
}

.mission-box {
	padding: 40px 30px 50px;
    /* display: flex; */
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
    border-radius: 25px;
    transition: all 0.5s ease;
    z-index: 9;
    position: relative;
    border: 1px solid #ebebeb;
    background: var(--primary);
	color: #fff;
}

.mission-box:hover {
    transform: translatey(-30px);
}

.mission-box h4 {
    font-size: 30px;

    margin-right: 25px;
}

.mission-box p {
    /* width: 85%; */
    margin: 0;
}

.mission-2 {
    margin-top: -15px;
    width: 90%;
    margin-left: auto;
    background: #fcfbf7;
}

.mission-3 {
    margin-top: -15px;
    width: 80%;
    margin-left: auto;
    /* background: #000; */
}

.mission-1 h4,
.mission-1 p,
.mission-3 h4,
.mission-3 p {
    color: #fff;
}

.box-1 {
    /* padding: 0 0 15px; */
    border-bottom: 2px solid #cdcdcd;
    margin: 0 0 25px;
}

/* products  */

.sidebar-box {
    /* background: #f7f2ef; */
    padding: 20px;
    width: 90%;
    border: 1px solid #ebebeb;
    position: sticky;
    top: 50px;
}

.accordion-button::after {
    background-size: .9rem;
}

.sidebar-box .accordion-item {
    margin: 0 0 10px;
    border-bottom: 1px solid #ebebeb !important;
}

.filter-btn {
    background-color: var(--primary);
    color: white;
}

.filter-btn:hover {
    background-color: #000;
    color: white;
}

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

/* blog  */

.blog-img {
    overflow: hidden;
    margin: 0 0 15px;
	position: relative;
}

.blog-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

small {
    color: #000;
    font-weight: 500;
    letter-spacing: .5px;
}

.blog-text h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    line-clamp: 1;
    -webkit-box-orient: vertical;
    margin: 8px 0;
	color: var(--primary);
}

.blog-text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 5px;
}

.read-more a {
    display: inline-block;
    padding: 7px 36px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.5s ease;
}

.read-more a:hover {
    background: var(--primary);
	color: #fff;
}

.blog-box:hover img {
    transform: scale(1.1);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.form-control {
    border: 1px solid #ebeeee;
    border-radius: 0;
    margin: 0 0 15px;
}

.recent-blog li img {
    width: 65px;
    height: 60px;
    object-fit: cover;
}

.recent-blog li a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-blog li span {
    opacity: .5;
    font-size: 12px;
}

.recent-blog li {
    border-bottom: 1px solid #cdcdcd;
    padding: 0 0 10px;
}

.blog-subscribe {
    padding: 25px;
    border: 1px solid #ebebeb;
}

.blog-sidebar {
    width: 95%;
    margin-left: auto;
    position: sticky;
    top: 50px;
}

.blog-author {
    border: 1px solid #ebebeb;
    padding: 25px;
    text-align: center;
}

.blog-author img {
    margin: 0 0 15px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.follow-box {
    background: #f3f3f3;
    padding: 25px;
}

/* contact  */

input[type="submit"] {
    width: 100%;
    padding: 10px 45px;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1rem;
}

.contact-right {
    width: 90%;
    margin-left: auto;
}

.contact-box {
    border-bottom: 1px solid #ebebeb;
    padding: 0 0 15px;
}

.contact-left form {
    padding: 25px;
    background: #f9f8f4;
}

/* product detail  */

.accordion-button::after {
    margin-left: auto;
}

.accordion-button {
    font-weight: 500;
}

.product-tags .badge {
    margin-right: 5px;
    padding: 0.4em 0.8em;
    border-radius: 20px;
}

div#productAccordion .accordion-item {
    border-bottom: 1px solid #ebebeb !important;
}


.shop-details .product-images > .row {
    margin: 0 -7.5px;
}

.shop-details .product-images > .row > div {
    padding: 0 7.5px;
}

.shop-details .product-images .content-thumbnail-scroll {
    position: relative;
}

.shop-details .product-images .content-thumbnail-scroll .slick-list {
    padding: 0 !important;
}

.shop-details .product-images .content-thumbnail-scroll .img-item {
    padding-bottom: 15px;
    vertical-align: top;
    /* border: 0; */
    cursor: pointer;
}

.shop-details .product-images .content-thumbnail-scroll .img-item .img-thumbnail-scroll {
    vertical-align: top;
    display: inline-block;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    border: 1px solid hsla(0,0%,67%,.25);
    overflow: hidden;
    /* margin: 1px; */
    width: 100%;
    padding: 5px;
}

.shop-details .product-images .content-thumbnail-scroll .img-item.slick-current .img-thumbnail-scroll {
    border-color: #000;
}

.shop-details .product-images .image-thumbnail .slick-slide.slick-current .img-thumbnail-scroll, .shop-details .product-images .image-thumbnail .slick-slide:hover .img-thumbnail-scroll, .shop-details .product-images .image-thumbnail .slick-slide:hover a, .shop-details .product-images .image-thumbnail .slick-slide a.active {
    border-color: #000;
}

.shop-details .product-images .img-item img {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

span.img-thumbnail-scroll img {
    cursor: pointer;
    width: 100%;
    height: 90px !important;
    border: 2px solid #cdcdcd;
    padding: 5px;
}

.category-pg .cat-img {
    object-position: top;
    border: 1px solid #ebebeb;
    padding: 10px;
}


/* Custom Slide Animation (Optional) */
.offcanvas.offcanvas-start {
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
}

.offcanvas.show {
  transform: translateX(0);
}

/* Backdrop Style (Bootstrap adds this automatically, but we'll enhance it) */
.offcanvas-backdrop {
  background-color: rgba(0, 0, 0, 0.6) !important;
  transition: opacity 0.3s ease;
}

.shop-details .product-images .content-thumbnail-scroll img {}

.detail-img-slider button.slick-prev.slick-arrow {
    left: 30%;
    top: -25px;
}

.detail-img-slider button.slick-next.slick-arrow {
    right: 30%;
    bottom: 0;
    top: auto;
}

.whole-products {
    width: 100%;
    padding: 15px;
    border: 1px solid #ebebeb;
    text-align: center;
}

.whole-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.whole-products h5 {
    font-size: 1rem;
    margin: 15px 0 10px;
}

.get-price , .get-price a {
    color: var(--primary);
}

.img-hover {
    overflow: hidden;
	position: relative;
}

.img-hover:hover img {
    transform: scale(1.1);
}

form br {
    display: none;
}

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

.pagination .page-numbers {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: var(--primary);
    color: white;
    margin: 0 2px;
}

a.prev.page-numbers , a.next.page-numbers {
    width: auto;
    padding: 2px 7px;
}

a.next.page-numbers {}

.pagination .page-numbers.current {
    background: #000;
}

.product-desc-single h3 {
    font-size: 16px;
    font-weight: 600;
}

.accordion-header button {
    font-size: 20px;
    color: var(--primary) !important;
}

#ajaxsearchlite1 .probox, div.asl_w .probox {
    background: #f5f5f5 !important;
}

#ajaxsearchlite1 .probox .proinput input, div.asl_w .probox .proinput input {
    font-family: 'NimbusRomNo9L-Med.woff2' !important;
    font-size: 16px !important;
}

.product-box a.add_to_wishlist span {
    font-size: 0;
}

.yith-wcwl-add-button>a i {
    margin: 0 !important;
}

.product-box a.add_to_wishlist {
    margin: 0 0 5px !IMPORTANT;
}

.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon {
}

.product-box .yith-wcwl-wishlistexistsbrowse a {
    display: inline !important;
    width: auto !important;
    background: transparent !important;
    font-size: 12px !important;
}

.product-box .yith-wcwl-wishlistexistsbrowse {
    position: absolute;
    background: #000;
    color: white;
    padding:  5px 3px;
    margin: 3rem 0 0;
    min-width: 200px;
    transform: translate(10% , -50%);
    left: 0;
    top: 40%;
    font-size: 14px !IMPORTANT;
    text-align: center;
}

.yith-wcwl-add-to-wishlist {
    margin: 0 !IMPORTANT;
}

p.woocommerce-result-count {
    display: inline-block;
    width: 50%;
    margin: 0 0 2rem;
}

form.woocommerce-ordering {
    display: inline-block;
    width: 48%;
}

form.woocommerce-ordering select {
	width: 100%;
    padding: 8px;
    border: 1px solid var(--primary);
    outline: none;
}

#sidebar h2.widget-title {
    font-size: 1.5rem;
}

div#sidebar {
    padding: 20px;
    width: 100%;
    border: 1px solid #ebebeb;
    position: sticky;
    top: 50px;
}

ul.product-categories li {
    position: relative;
}

ul.product-categories li.cat-parent .pro_cat_btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
    color: var(--primary);
}

ul.product-categories li.cat-parent .children {
     display: none; 
    background: #f5f5f5;
    margin: 10px;
}

ul.product-categories li a {
    display: inline-block;
    width: 100%;
    padding: 8px 8px;
    border: 1px solid var(--primary);
    background: transparent;
    margin: 4px 0;
    color: var(--primary);
    transition: all 0.5s ease;
}

ul.product-categories li a:hover{
	background-color: var(--primary);
	color: #fff;
}

ul.product-categories li.cat-parent .children li a {
    font-size: 14px;
}

.main-image img {
    width: 100%;
    height: 500px;
	object-fit: contain;
}

.img-item {
    margin: 0 0 5px;
}

form.variations_form .variations label {margin-right: 10px;}

form select {
    border: 1px solid #cdcdcd;
    padding: 5px 10px;
}

a.reset_variations {
    margin-left: 10px;
    color: var(--primary);
}

.single_variation_wrap {
    display: inline-block;
}

.woocommerce-variation-add-to-cart {
    display: flex;
    margin: 24px 0 0;
    /* align-items: center; */
    /* gap: 13px; */
    justify-content: center !important;
    flex-direction: column;
}

button.single_add_to_cart_button {
	display: inline-block;
    padding: 7px 36px;
    background-color: var(--primary);
    color: #fff;
    border: 1px solid #000;
    transition: all 0.5s ease;
	margin: 20px 10px 0 0;
}

button.single_add_to_cart_button:hover{
	background: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
}

.woocommerce-variation-add-to-cart .quantity input {
    border: 1px solid #cdcdcd;
    padding: 6px 10px;
    width: 100px;
}

.product-tags span a {
    background: #f6f1ee;
    padding: 8px 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

a.buy-now.button {
   display: inline-block;
    padding: 7px 36px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.5s ease;
}

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


#productTab button {
     display: inline-block;
    padding: 7px 36px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.5s ease;
	margin-right: 10px;
}

#productTab button.active {
    background: var(--primary);
    color: #fff;
}

ul#productTab {
    border: 0 !IMPORTANT;
}

.product-detail .yith-wcwl-add-button {
    background: var(--primary);
    color: white;
    display: inline-block !important;
    padding: 6px 10px;
    margin: 15px 0 0;
}

.product-detail .yith-wcwl-add-button a.add_to_wishlist {
    color: white;
    font-size: 14px;
}

#productTabContent h3 , #productTabContent h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

span#reply-title {
    color: var(--primary);
    font-weight: 600;
}

.yith-wcwl-wishlistexistsbrowse {
    background: var(--primary);
    color: white;
    padding: 6px 10px;
    display: inline-block;
    margin: 10px 0 0;
}

.yith-wcwl-wishlistexistsbrowse a {
    color: #ffffff;
}

.product-box .yith-wcwl-wishlistaddedbrowse a {display: none;}

.product-box .yith-wcwl-wishlistaddedbrowse span {
    font-size: 0;
}

.product-box .yith-wcwl-wishlistaddedbrowse span i {
    width: 30px;
    height: 30px;
    place-content: center;
    background: #222;
    color: white;
    margin-right: 0 !important;
    margin: 0 0 5px;
    font-size: 15px !IMPORTANT;
    display: inline-grid;
}

nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
}

nav.woocommerce-pagination ul li span , nav.woocommerce-pagination ul li a {
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    background: var(--primary);
    color: white;
    margin: 0 5px 0 0px;
}

span.page-numbers.current {
    background: #000;
}

form p {
    margin: 0;
}

.banner-img img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
	object-position : top;
}


#review_form_wrapper {
    background: #f8f8f8;
    padding: 25px;
    width: 60%;
}

#review_form_wrapper p.stars a {
    font-size: 1.2rem;
    font-weight: bold;
    color: goldenrod;
}

#review_form_wrapper input , #review_form_wrapper textarea {
    width: 100%;
    border: 1px solid #cdcdcd;
    border-radius: 10px;
    padding: 10px;
    margin: 0 0 15px;
}

#review_form_wrapper textarea {
    height: 100px;
}

input#wp-comment-cookies-consent {
    width: auto;
}

p.comment-form-cookies-consent {
    margin: 7px 0;
}

.wishlist_table tr td, .wishlist_table tr th.product-checkbox, .wishlist_table tr th.wishlist-delete {
    text-align: left !important;
}

tr.woocommerce-cart-form__cart-item.cart_item {}

tr.woocommerce-cart-form__cart-item.cart_item img {
    height: 60px !important;
    object-fit: contain;
    width: auto;
}

tr.woocommerce-cart-form__cart-item.cart_item .woocommerce a.remove {}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
    width: 120px !important;
    padding: 3px !important;
    margin-right: 10px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
    background: var(--primary) !IMPORTANT;
    color: white !important;
    border-radius:  0 !IMPORTANT;
    font-weight: 500 !IMPORTANT;
}

.default-page-section nav.woocommerce-MyAccount-navigation ul {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #cdcdcd;
    border-top: 1px solid #cdcdcd;
    margin: 0 0 3rem;
    flex-wrap: wrap;
}

.default-page-section nav.woocommerce-MyAccount-navigation ul li a {
    display: inline-block;
    background: #f3f3f3;
    color: #000;
    padding: 15px 30px;
    border: 1px solid #cdcdcd;
}

.default-page-section nav.woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.default-page-section .woocommerce-Address {
    padding: 35px 25px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

a.edit {
    background: #ca2f23;
    color: white;
    padding: 2px 15px;
    margin: 0 0 10px;
    display: inline-block;
}

.default-page-section input, .default-page-section textarea , .default-page-section select {
    padding: 9px 10px;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
}



/* RESPONSIVE QUERY______ */


@media only screen and (max-width: 1280px) {

}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 991px) {
	
ul#menu-primary-menu {
    display: none;
}

.banner-text {
    width: 60%;
    top: 15%;
}
	
	.banner-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
	
}

.banner-sec ul.slick-dots {
    left: 42%;
    bottom: 15px;
}

.add-box {
    height: auto;
}

.add-box img {
    width: 45%;
}

.add-box.add-box-2 {
    display: none;
}

.women-product {
    text-align: center;
    margin: 0 0 2rem !important;
}
	
.banner-text h2 {
    font-size: 2.7rem;
    margin: 10px 0;
}
	
.footer-box form input[type="email"] {
}

.footer-box form {
}

.subscribe-form .wpcf7-spinner {
    display: none !important;
}

footer .socials a {
    margin: 7px 5px;
    display: inline-block;
}

footer h4 {
    margin: 15px 0;
}

footer {
    padding: 40px 0 20px;
}

p.copytext {
    margin: 0;
}
	
a.cat-toggle {
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    font-size: 1.5rem;
	line-height: 0;
text-align: center;
}	

.inner-header {
    padding: 60px 0;
    background-size: cover;
    background-position: 70%;
}

.inner-content h2 {
    font-size: 2rem;
}

.story-cont-sec {
    margin: 0;
}
	
.block-img img {
    height: auto;
}	
	
.whole-img img {
    height: auto;
}
	
.blog-img img {
    height: auto;
}

.blog-sidebar {
    width: 100%;
}

.blog-search input.form-control {
    margin: 0;
}

.blog-author img {
    height: auto;
}
	
.contact-right {
    width: 100%;
    margin: 2rem 0 0;
}
	
	
	

}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {
	
.banner-text h2 {
    width: 100%;
    font-size: 2.4rem;
}

.cat-img img {
    height: 330px;
}

html {
    font-size: 15px;
}

.sec-padding {
    padding: 2rem 0;
}

.title {
    font-size: 1.7rem;
}

.new-arrival-sec .col-md-6 {
    width: 50%;
}

.pr-img img {
    height: 330px;
}

.add-text {
    padding: 20px;
}

.num {
    font-size: 2rem;
}

.nav-btn a {
    padding: 6px 20px;
}

.women-sec-2 .col-md-6 {
    width: 50%;
}

.visit-sec .col-md-6 {
    width: 50%;
}

.visit-box {
    width: 100%;
}

/* .show-img img {
    height: 250px;
} */

.insta-img img {
    height: 200px;
}

.icon-box img {
    width: 45px;
    height: 45px;
}
	
.icon-flex {
    flex-wrap: wrap;
    gap: 10px !important;
    padding: 0 5px;
    text-align: center;
}
	
	
	

}

@media only screen and (max-width: 767px) {

}

@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 575px) {
	
button.slick-next.slick-arrow {
    right: 0;
}

button.slick-prev.slick-arrow {
    left: 0;
}

.logo img {
    width: 125px;
}

.logo-text {
    font-size: 12px;
}

.scroll-text {
    font-size: 12px;
}

.banner-text p {
    display: none;
}

.banner-img img {
    height: 360px;
}

.banner-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #e4caaf, transparent);
}
	
.side-menu a {
    font-size: 15px;
    margin: 0 3px;
}
	
.sec-padding.block-banners {
    padding: 0;
}

.mission-2 {
    width: 100%;
    margin: 0;
}

.mission-3 {
    margin: 0;
    width: 100%;
}
	
.mission-box {
    padding: 30px;
}

.mission-box h4 {
    font-size: 23px;
}
	
.title {
  font-size: 1.5rem;
}	
	
.mb-4 {
    margin-bottom: 1rem !important;
}	
	
.product-sec .col-sm-6 {
    width: 50%;
}
	
#review_form_wrapper {
    width: 100%;
}	
	
.default-page-section nav.woocommerce-MyAccount-navigation ul li a {
    padding: 7px 10px;
    font-size: 14px;
}	
	
	

}

@media only screen and (max-width: 480px) {
	
	.logo-text {
    display: none;
}

.top-offer-text {
    padding: 2px 0 !important;
}

.banner-text h5 {
    font-size: 1rem;
}

.banner-text h2 {
    font-size: 2rem;
}

.banner-img img {
    height: 350px;
    object-position: right;
}

.cat-img img {
    height: auto;
}

.new-arrival-sec .col-md-6 {
    width: 100%;
}

.pr-img img {
    height: auto;
}

.add-text {
    padding: 0;
}

.women-sec-2 .col-md-6 {
    width: 100%;
}

.instgrame-sec .col-sm-6 {
    width: 50%;
}	
    .product-sec .col-sm-6 {
        width: 100%;
    }	
	
.inner-content h2 {
   font-size: 1.5rem;
}
	
.detail-img-slider .col-2 {
    width: 100%;
    order: 2;
}

.detail-img-slider .col-10 {
    width: 100%;
}

.img-item {
    width: 100%;
}	
	
span.img-thumbnail-scroll img {
    height: auto !important; 
}
	
#productTab button {
    font-size: 14px;
    margin: 0 5px 5px 0;
}	
	
.side-menu a span {
    font-size: 8px;
    padding: 3px 0 0;
}
	
.offcanvas-body {
    padding: 0;
}	
	
.mt-5 {
    margin-top: 1.5rem !important;
}
	
.map iframe {
    height: 200px;
}	
	
	

}



@media only screen and (max-width: 414px) {

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}

/* 01.04.2026 */
.cat-menu img {
    width: 100%;
    height: auto;
}

.nav-btn {
    position: relative;
	margin-left: 100px;
}

.btn-outside-line {
    position: absolute;
    height: 2px;
    background: var(--primary);
    width: 150px;
    top: 50%;
    left: -102%;
}

.banner-text p {
    letter-spacing: 0;
    width: 85%;
}

.btn-outside-line-two{
    position: absolute;
    height: 2px;
    background: var(--primary);
    width: 100px;
    top: 50%;
    left: -23%;
}

.new-essential-box:hover img {
    transform: scale(1.1);
}

.new-essential-content .new-essential-box img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.new-essential-content .new-essential-box {
    padding: 4px;
    background: #e9f3ff;
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.new-essential-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: skewX(-25deg);
}

/* Hover pe Shine Move */
.new-essential-box:hover::after {
    left: 125%;
    transition: left 0.7s ease;
}

section.brain-style-new-arrival-sec .brain-new-img{
	overflow: hidden;
	width: 100%;
	position: relative;
}

section.brain-style-new-arrival-sec .brain-new-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
	transition: all 0.5s ease;
}

/* Shine Effect */
.shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: skewX(-25deg);
}

/* Hover Effects */
.shine:hover::after {
    left: 125%;
    transition: left 0.7s ease;
}

/* Optional Zoom Effect */
.shine:hover img {
    transform: scale(1.1);
}


section.brain-style-new-arrival-sec .brain-new-arrival-text {
    padding: 70px 0 0 0;
}

.brain-new-arrival-btn {
    position: relative;
	margin-right: 110px;
}

.brain-new-arrival-btn a {
    display: inline-block;
    padding: 7px 36px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.5s ease;
}

.new-arrival-brain-line {
    position: absolute;
    height: 2px;
    background: var(--primary);
    width: 100px;
    top: 50%;
    right: -20%;
}

.brain-new-arrival-btn a:hover{
	background: var(--primary);
	color: #fff;
}

.brain-subtitle{
	font-size: 16px;
    display: inline-block;
    padding: 0 0 3px;
    color: #000;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Nimbus-Regular' !important;
}

.brain-title{
	font-size: 42px;
    letter-spacing: 1px;
    color: var(--primary);
}


.brain-choose-us-sec{
	background-image: url('https://webtestinglink.co.uk/beta/brainy-style/wp-content/uploads/2026/04/why-choose-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	position: relative;
	height: auto;
}

section.brain-choose-us-sec .brain-choose-left-box {
    padding: 100px 0;
}

section.brain-choose-us-sec .brain-choose-btm-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.brain-choose-us-sec .brain-choose-btm-box{
	transition: all 0.5s ease;
}

section.brain-choose-us-sec .brain-choose-btm-box:hover{
	transform: scale(1.1);
}

section.brain-choose-us-sec .brain-choose-btm-box:hover p{
	color: var(--primary);
}

section.brain-choose-us-sec .brain-choose-btm-box p {
    width: 100%;
	margin-top: 10px;
	font-size: 15px !important;
	transition: all 0.5s ease;
}

section.brain-blog-sec .brain-blog-img {
    position: relative;
    overflow: hidden;
}

section.brain-blog-sec .brain-blog-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

section.brain-blog-sec.sec-padding .brain-blog-box p {
    margin: 6px 0;
}

section.brain-blog-sec.sec-padding .brain-blog-box h4 a{
	color: var(--primary);
	font-size: 24px;
	transition: all 0.5s ease;
	font-family: 'Nimbus-Medium' !important;
}

section.brain-blog-sec.sec-padding .brain-blog-box h4 a:hover{
	color: #000;
}

section.brain-blog-sec .brain-blog-btn{
	position: relative;
	margin-left: 30px;
}

section.brain-blog-sec .brain-blog-btn a{
	    display: inline-block;
    padding: 7px 36px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.5s ease;
}

section.brain-blog-sec .brain-blog-btn a:hover{
	background: var(--primary);
	color: #fff;
}

.brain-blog-line{
	position: absolute;
    height: 2px;
    background: var(--primary);
    width: 30px;
    top: 50%;
    left: -30px;
}


.footer-new-brain-logo img {
    width: auto;
    height: auto;
}

.footer-new-brain-logo p {
    color: #fff !important;
    margin-top: 10px;
	font-size: 15px;
}

.footer-brain-margin {
    margin-left: 55px;
}


.contact-flex a {
    color: #fff;
	transition: all 0.5s ease;
}

/*  */
.footer-box {
  background: #e9bf21;
  padding: 12px 20px;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
	margin-bottom: 30px;
}

/* Left side */
.footer-box .left-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-box .left-content i {
  font-size: 22px;
	color: var(--primary);
}

/* Right side */
.footer-box .right-content {
  display: flex;
  align-items: center;
/*   background: #f3e3a3; */
  padding: 3px;
}

/* Input */
.footer-box .right-content input {
  border: none;
  padding: 6px 10px;
  outline: none;
  background: transparent;
  width: 400px;
}

/* Button */
.footer-box .right-content button {
  border: none;
  background: transparent;
  padding: 6px 10px;
	    position: absolute;
}

.footer-box .right-content button i {
  font-size: 18px;
  color: #0b2c4d;
}

.footer-box .left-content h5 {
    font-size: 24px;
	margin-bottom: 0;
}

.footer-links ul li::before {
    content: "\f285";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: #f4c430;
    font-size: 14px;
}

.socials {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Left line */
.socials::before,
.socials::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e9bf21;
}

/* Space between line & icons */
.socials::before {
  margin-right: 15px;
}

.socials::after {
  margin-left: 15px;
}


.blog-de-img.mb-3 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.box-1-img {
    position: relative;
    overflow: hidden;
}

.box-1-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

section.brainy-flexible-sec .brainy-flexible-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    border-radius: 20px;
	flex-direction: column;
	transition: all 0.5s ease;
}

section.brainy-flexible-sec .brainy-flexible-box:hover{
	background: var(--primary);
	transform: translateY(-10px)
}

section.brainy-flexible-sec .brainy-flexible-icon i {
    width: 35px;
    height: 35px;
    background: var(--primary);
    font-size: 30px;
    padding: 12px;
    color: #fff;
    border-radius: 6px;
	transition: all 0.5s ease;
}

section.brainy-flexible-sec .brainy-flexible-box:hover .brainy-flexible-icon i{
	background-color: #fff;
	color: var(--primary);
}

section.brainy-flexible-sec .brainy-flexible-text h5 {
    margin-bottom: 0;
    color: var(--primary);
    font-size: 20px;
	transition: all 0.5s ease;
}

section.brainy-flexible-sec .brainy-flexible-box:hover .brainy-flexible-text h5{
	color: #fff;
}

section.brainy-flexible-sec .brainy-flexible-text p{
	margin-bottom: 0;
	transition: all 0.5s ease;
}

section.brainy-flexible-sec .brainy-flexible-box:hover .brainy-flexible-text p{
	color: #fff;
}

.price del {
    font-size: 14px;
    color: #888;
}

.price ins {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    opacity: 1;
}


/* 06.04.2026 */
/* Parent item */
.menus li {
    position: relative;
}

/* Submenu hidden by default */
.menus .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    display: none;
    padding: 10px 0;
    border-radius: 6px;
	z-index: 9;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Submenu items */
.menus .sub-menu li {
    padding: 8px;
    width: 100%;
}

/* Hover effect (desktop) */
.menus li:hover > .sub-menu {
    display: block;
}

/* Links */
/* .menus a {
    text-decoration: none;
    color: #333;
    display: block;
} */

.menus .sub-menu li a {
    padding: 10px 15px;
    background: transparent;
    color: #333;
    width: 100%;
    transition: all 0.3s ease;
}

/* Hover effect */
.menus .sub-menu li a:hover {
    background: var(--primary);
    color: #fff;
    padding-left: 20px;
}

.menu-item-has-children > a {
    position: relative;
    padding-right: 18px;
}

/* Bootstrap icon arrow */
.menu-item-has-children > a::after {
    content: "\f282"; /* Bootstrap chevron-down */
    font-family: "bootstrap-icons";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: 0.3s ease;
}

.menus li:hover > a::after {
    transform: translateY(-50%) rotate(180deg);
}


.wc-block-components-button__text {
    display: inline-block;
    padding: 7px 36px;
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    transition: all 0.5s ease;
    width: 100%;
}

.wc-block-components-button__text:hover{
	background: var(--primary);
	color: #fff;
}

.quantity input {
    padding: 6px;
}


/* 08.04.2026 */
.price > .woocommerce-Price-amount:first-of-type {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.price > span[aria-hidden="true"] + .woocommerce-Price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

/* Table wrapper */
.variations {
    width: 40%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

/* Each row = card style */
.variations tr {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Label (left side) */
.variations th.label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    padding: 12px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 30%;
}

/* Dropdown container */
.variations td.value {
    padding: 18px 15px 0px;
}

/* Select box styling */
.variations select {
    width: 100%;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hover + focus */
.variations select:hover,
.variations select:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* Selected variation text */
.woo-selected-variation-item-name {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* Reset button */
.reset_variations {
    font-size: 12px;
    color: #000;
    margin-left: 10px;
    text-decoration: underline;
    cursor: pointer;
}



@media (min-width: 992px) and (max-width: 1199px) {
ul.menus li a {
    padding: 10px;
}

.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart, .wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist {
    text-align: start !important;
    margin-bottom: 25px !important;
}

.brain-choose-us-sec{
background-position: 55%;
}

ul.menus {
    gap: 10px;
}

.menu-item-has-children > a::after {
    right: -5px;
}

.inner-header {
    background-position: 80%;
}

.pr-text {
    flex-wrap: wrap;
}

}



@media (max-width: 768px) {

p.comment-form-cookies-consent {
    display: flex;
    gap: 10px;
}

.footer-box {
    width: fit-content;
}

  .offcanvas-body .menus {
    display: block !important;
    padding: 0;
    margin: 0;
  }

  .offcanvas-body .menus li {
    display: block !important;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .offcanvas-body .menus li a {
    display: block;
    padding: 12px 10px;
    width: 100%;
  }

  /* SUB MENU FIX */
  .offcanvas-body .sub-menu {
    display: none;
    padding-left: 15px;
  }

  .offcanvas-body .menu-item-has-children.active > .sub-menu {
    display: block;
  }

a.cat-toggle{
order: 2;
}

.add-box img {
        width: auto;
    }

section.brain-style-new-arrival-sec .brain-new-arrival-text {
    text-align: center !important;
}

.new-arrival-brain-line,
.about-btn-line,
.brain-blog-line,
.btn-outside-line{
	display: none;
}

.brain-blog-box {
    margin-bottom: 20px;
}

section.brain-blog-sec .brain-blog-btn,
.brain-new-arrival-btn,
.footer-brain-margin,
.nav-btn{
margin: 0;
}

.footer-box{
display: block;
}

section.brain-choose-us-sec .brain-choose-left-box {
    text-align: center;
}

    p.copytext {
        padding-left: 10px;
    }

  h1 {
    font-size: 30px !important;
    line-height: 1.2;
  }

  h2 {
    font-size: 26px !important;
  }

  h3 {
    font-size: 22px !important;
  }

  h4 {
    font-size: 20px !important;
  }

  h5 {
    font-size: 18px !important;
  }

  h6 {
    font-size: 16px !important;
  }

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

    footer {
        padding: 40px 0 0px;
    }

.wishlist_table.mobile li .additional-info-wrapper .product-add-to-cart, .wishlist_table.mobile li .additional-info-wrapper .move-to-another-wishlist {
    text-align: start !important;
    margin-bottom: 25px !important;
}


.yith-wcwl-wishlistaddedbrowse {
    padding-top: 20px;
    align-items: flex-start !important;
}

    .mission-box {
        padding: 30px;
        margin-bottom: 30px;
    }

    .banner-text {
        width: 60%;
        top: 15%;
        left: 20%;
    }

    .cat-img img {
        height: 200px;
    }

.brain-choose-left-box {
    padding: 10px 0 !important;
}

.brain-choose-us-sec {
    background-color: #deebf4;
    margin-top: 20px;
    background-position: 115px;
}

    .offset-md-1 {
        margin-left: 0;
    }

    .inner-header {
        background-position: 90%;
}

section.brain-style-new-arrival-sec .brain-new-img {
    display: none;
}

    .banner-img img {
        height: 300px;
    }

.new-essential-content .new-essential-box img {
    width: 100%;
    height: 270px;
    transition: transform 0.5s ease;
    object-fit: contain;
}



}


.footer-box{
	padding: 20px;
}

.footer-box form{
	margin: 0;
}

.side-menu{
    padding-right: 15px;
}

input#wp-comment-cookies-consent {
    margin: 0;
}



.yith-wcwl-add-to-wishlist.exists svg.yith-wcwl-icon-svg {
    color: #ff0000 !important;
}


  #offcanvasExample .sub-menu {
  display: none;
  padding-left: 15px;
}

#offcanvasExample .menu-item-has-children.active > .sub-menu {
  display: block;
}


.wc-block-components-checkout-place-order-button {
    padding: 0 !important;
    border: none;
    background: none;
}

.wc-block-components-button__text {
    width: fit-content;
}


.contact-flex {
    align-items: center;
}


.inner-content h2 {
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}