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

html {
	scroll-behavior: smooth;
}

body {
	font-family: Inter,sans-serif;
	color: #171717;
}

a {
	text-decoration: none;
}

.container {
	width: 100%;
	margin: auto;
	max-width:1600px;
}


.hero,.slide {
	min-height: 780px;
}




/* ===================================
   HEADER
=================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.3s ease;
}

.header-section {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.logo img {
    max-width: 160px;
    height: auto;
    display: block;
}


/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
	color: #fff;
    transition: 0.3s ease;
	letter-spacing: 2px;
	text-transform: uppercase;
	
}
.sticky-header .nav a{
	color: #000;
}
.nav a:hover,
.nav a.active {
    color:#a51c38;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #a51c38;
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}
.nav ul {
    display: flex;
    justify-content: space-around;
    gap: 45px;
  
}
ul{
  margin: 0;
    padding: 0;
}
 ul li {
    list-style: none;
}
/* ACTIONS */

.actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.actions button,
.cart-btn {
    position: relative;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    background: transparent;

    color: #222;

    cursor: pointer;

    text-decoration: none;

    font-size: 17px;

    transition: 0.3s ease;
}

.actions button:hover,
.cart-btn:hover {
    color: #b08d57;
}


/* CART COUNT */

.cart-btn .count {
    position: absolute;

    top: -2px;
    right: -2px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    border-radius: 50%;

    background: #b08d57;
    color: #fff;

    font-size: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* MOBILE TOGGLE */

.toggle {
    display: none !important;

    flex-direction: column;
    gap: 5px;
}

.toggle span {
    width: 22px;
    height: 2px;

    background: #222;

    display: block;

    transition: 0.3s ease;
}



.site-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.10);
    z-index: 99999;
}
/* ===================================
   SEARCH BOX
=================================== */

.search-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.search-box.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.search-inner {
    display: flex;
    align-items: center;

    max-width: 900px;

    margin: auto;

    border-bottom: 1px solid #222;
}

.search-inner input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    padding: 15px 5px;

    font-size: 18px;

    color: #222;
}

.search-inner input::placeholder {
    color: #999;
}

#closeSearch {
    width: 45px;
    height: 45px;

    border: 0;
    background: transparent;

    cursor: pointer;

    font-size: 18px;

    color: #222;
}

#closeSearch:hover {
    color: #b08d57;
}

.header-section {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    align-items: center;
}
.header-section a.logo img {
    max-width: 80px;
}
.sticky-header .header-section a.logo img {
    max-width: 60px;
}
header {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100%;
}

.nav {
	display: flex;
	gap: 28px;
}



.actions {
	display: flex;
	align-items: center;
}

.actions button,.actions a {
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	position: relative;
}
.sticky-header .actions button, .sticky-header .actions a {
	color:#000;
}
.count {
	position: absolute;
	right: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #c99b62;
	font-size: 10px;
	display: grid;
	place-items: center;
}

.toggle {
	display: none;
}

.toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: #fff;
	margin: 4px;
}
/* ===================================
   MOBILE
=================================== */

@media (max-width: 991px) {

    .header-section {
        min-height: 75px;
    }

    .nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        background: #fff;

        padding: 15px 25px;

        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        width: 100%;

        padding: 13px 0;

        border-bottom: 1px solid #eee;
    }

    .nav a::after {
        display: none;
    }

    .toggle {
        display: flex !important;
    }

    .logo img {
        max-width: 135px;
    }

}


/* =========================================
   FULL SCREEN SEARCH POPUP
========================================= */

.search-box {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background: rgba(15, 15, 15, 0.97);

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}


/* OPEN */
.search-box.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
	overflow: hidden;
}


/* =========================================
   SEARCH CONTENT
========================================= */

.search-box .container {
    width: 100%;
    max-width: 1100px;
    padding: 0 30px;
	
}

.search-inner {
    width: 100%;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Small heading */

.search-inner::before {
    content: "SEARCH OUR GALLERY";

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 4px;

    margin-bottom: 25px;
}


/* =========================================
   INPUT
========================================= */

.search-inner input {
    width: 100%;
    height: 85px;

    background: transparent;

    border: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);

    outline: none;

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 42px;
    font-weight: 400;

    text-align: center;

    padding: 0 70px 10px;

    transition: border-color 0.3s ease;
}

.search-inner input:focus {
    border-bottom-color: #fff;
}


/* Placeholder */

.search-inner input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    opacity: 1;
}


/* =========================================
   CLOSE BUTTON
========================================= */

#closeSearch {
    position: absolute;

    top: -180px;
    right: 0;

    width: 55px;
    height: 55px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: transparent;

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 20px;

    transition: all 0.3s ease;
}

#closeSearch:hover {
    background: #fff;
    color: #111;

    transform: rotate(90deg);
}


/* =========================================
   SEARCH ICON
========================================= */


/* =========================================
   SEARCH BUTTON
========================================= */

#searchBtn {
    position: relative;
    z-index: 10;

    cursor: pointer;
}


/* =========================================
   BODY LOCK WHEN SEARCH OPEN
========================================= */

body.search-open {
    overflow: hidden;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .search-box .container {
        padding: 0 20px;
    }

    .search-inner::before {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .search-inner input {
        height: 65px;

        font-size: 26px;

        padding: 0 45px 10px;
    }

    .search-inner::after {
        right: 10px;
        bottom: 18px;
        font-size: 18px;
    }

    #closeSearch {
        top: -130px;
        right: 0;

        width: 45px;
        height: 45px;

        font-size: 16px;
    }
}

.hero {
	background: #111;
	overflow: hidden;
}

.slide {
	position: relative;
}

.slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,rgba(0,0,0,.5),rgba(0,0,0,.5),rgba(0,0,0,.1));
}

.content {
	position: relative;
	z-index: 2;
	min-height: 780px;
	display: flex;
	align-items: center;
	color: #fff;
}
.copy {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.badge {
	display: inline-flex;
	gap: 8px;
	padding: 9px 15px;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 30px;
	font-size: 12px;
	margin-bottom: 22px;
}

.badge i {
	color: #d5a86d;
}

.copy h1 {
	font-family: "Finger Paint", sans-serif;
	margin-bottom: 22px;
	font-size:45px;
}

.copy h1 span {
	display:inline-block;
	color:#fbc7d0;
	font-style: italic;
}

.copy p {
	max-width: 620px;
	line-height: 1.8;
	color: #ddd;
	margin-bottom: 30px;
}


.btn {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	padding: 14px 22px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
}

.primary {
	background: #c99b62;
	color: #fff;
}

.outline {
	border: 1px solid rgba(255,255,255,.5);
	color: #fff;
}

.stats {
	display: flex;
	gap: 40px;
	margin-top: 38px;
}

.stats strong {
	display: block;
	font: 30px 'Playfair Display',serif;
}

.stats small {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #bbb;
}

.owl-nav button.owl-prev,.owl-nav button.owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px!important;
	border: 1px solid rgba(255,255,255,.5)!important;
	border-radius: 50%!important;
	background: rgba(0,0,0,.25)!important;
	color: #fff!important;
}

.owl-nav button.owl-prev {
	left: 25px;
}

.owl-nav button.owl-next {
	right: 25px;
}

.owl-dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
    width:100%;
}

.owl-theme .owl-dots .owl-dot span {
	width: 28px;
	height: 3px;
	border-radius: 0;
	background: #aaa;
}

.owl-theme .owl-dots .owl-dot.active span {
	width: 45px;
	background: #a51c38;
}
.title {
	text-align: center;
	margin-bottom: 30px;
}
.title span {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #b48650;
	font-weight: 700;
}

.title h2 {
    margin: 10px 0;
    font-family: "Finger Paint", sans-serif;
    font-size:28px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #000;
}

.title p {
    color: #704107;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 17px;
}

.featured {
	background: #f8f5f0;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}

.card {
	position: relative;
	height: 320px;
	overflow: hidden;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}

.card:hover img {
	transform: scale(1.06);
}

.card-info {
    position: absolute;
    inset: auto 0 0;
    padding: 25px;
    color: #fff;
    background: linear-gradient(transparent, rgb(58 52 54));
}

.cat {
	text-align: center;
}

.cat i {
	font-size: 30px;
	color: #c99b62;
	margin-bottom: 15px;
}

.cat h3 {
	font: 22px 'Playfair Display',serif;
}

.cat p {
	font-size: 12px;
	color: #888;
	margin-top: 8px;
}

.gallery {
	background: #f8f5f0;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 15px;
}

.gallery-item {
	height: 300px;
	overflow: hidden;
	position: relative;
}

.gallery-item.large {
	grid-column: span 2;
	grid-row: span 2;
	height: 615px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-item div {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 20px 15px;
	color: #fff;
	background: linear-gradient(transparent,rgba(0,0,0,.8));
	
	transition: .3s;
}


.artists-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 20px;
}

.artist {
	text-align: center;
}

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

.artist h3 {
	font: 22px 'Playfair Display',serif;
	margin-top: 14px;
}

.artist p {
	font-size: 12px;
	color: #888;
	margin-top: 5px;
}

.reviews {
	background: #171717;
	color: #fff;
}

.review {
	text-align: center;
	max-width: 800px;
	margin: auto;
	padding: 30px;
}

.review i {
	color: #c99b62;
	font-size: 32px;
}

.review p {
	font: 26px/1.6 'Playfair Display',serif;
	margin: 20px 0;
}

.review small {
	color: #aaa;
}

.cta {
	text-align: center;
	background: #f8f5f0;
}
.cta-content .heading-section.inspiration-content{
    margin-bottom: 0;
}
.form {
	display: flex;
	max-width: 600px;
	margin: 25px auto 0;
}
.form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    width: 100%;
}

.form button {
	border: 0;
	cursor: pointer;
}

.footer .ftr_sectn {
    padding: 60px 0;
    border-top: solid #b91c38 8px;
    position: relative;
    color: #fff;
    background-size: cover;
    background-position: center, center;
    background-repeat: no-repeat;
}

.footer h3, .footer h4 {
    color: #fff;
    margin-bottom: 10px;
    font-family: "Finger Paint", sans-serif;
    font-weight: 500;
    font-size: 25px;
}

.footer h3 {
	font: 28px 'Playfair Display',serif;
}

.footer ul {
	list-style: none;
}

.footer li a{
	margin: 15px 0;
	font-size: 16px;
    color:#fff;
    display:block;
}
.footer  li a:hover{
    color:#db9da7;
}
.bottom {
	border-top: 1px solid #292929;
	margin-top: 35px;
	padding-top: 20px;
	font-size: 12px;
}

@media(max-width:900px) {
	.nav {
		display: none;
		position: absolute;
		top: 85px;
		left: 0;
		width: 100%;
		background: #111;
		padding: 20px;
		flex-direction: column;
	}

	.nav.open {
		display: flex;
	}

	.toggle {
		display: grid;
	}

	.grid,.artists-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.categories-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.gallery-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2,1fr);
	}
}

@media(max-width:600px) {
	.hero,.slide,.content {
		min-height: 680px;
	}

	.copy h1 {
		font-size: 45px;
	}

	.stats {
		gap: 18px;
	}

	.stats strong {
		font-size: 24px;
	}

	.owl-nav {
		display: none;
	}

	.grid,.categories-grid,.artists-grid,.gallery-grid,.footer-grid {
		grid-template-columns: 1fr;
	}

	.gallery-item.large {
		grid-column: auto;
		grid-row: auto;
		height: 350px;
	}

	.gallery-item {
		height: 350px;
	}

	.form {
		flex-direction: column;
		gap: 8px;
	}

	.nav {
		top: 72px;
	}

	.head {
		height: 72px;
	}
}




.hero .owl-theme .owl-nav{
	margin-top:0;
	display:none;
}
.hero .buttons {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
}
.hero .owl-dots{
	display:none;
}
.hero .buttons a {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight:600;
    background: #fff;
    color: #000;
	font-size:15px;
	border:0;
	padding:18px 20px;
	transition:.3s all ease;
}
.hero .buttons a:hover{
	background-color: #b91c38;
	 color: #fff;
}
.same-pdng{
	padding:70px 0;
}




/******************* Featured Section ****************************/

.featured-carousel {
    position: relative;
}

.featured-carousel .card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

.featured-carousel .card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-carousel .card:hover img {
    transform: scale(1.05);
}

.featured-carousel .card-info h3 {
    margin: 0 0 5px;
    font-size: 22px;
    letter-spacing: 1px;
}

.featured-carousel .card-info p {
    margin: 0;
    color: #fff;
}


.featured-carousel .owl-nav button:hover {
    background: #111;
    color: #fff;
}

/* Dots */
.featured-carousel .owl-dots {
    margin-bottom: -70px;
}

.featured-carousel .owl-dot span {
    width: 8px;
    height: 8px;
}

.featured-carousel .owl-dot.active span {
    width: 25px;
}


/******************* About Section ****************************/

.common_btns a {
    background-color:#a51c38;
    color: #fff;
	font-family: "Finger Paint", sans-serif;
	font-weight:400;
	font-size:18px;
	padding:12px 18px;
	display:inline-block;
	transition:.3s all ease;
}
.common_btns a:hover {
    background-color: #000;
	transition:.3s all ease;
	 color: #fff;
}
.about_wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
	text-align: center;
}

.about_wrap .abt_section{
    background-size: cover;
    background-position: center, center;
	padding:20px;

}



/******************* CAtegory Section ****************************/



.shop-categories {
    padding: 100px 0;
    background: #f7f4ef;
    overflow: hidden;
}

/* Heading */

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading .eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #9b6b4d;
}

.section-heading h2 {
    margin: 0 0 15px;
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    color: #292929;
}

.section-heading p {
    max-width: 600px;
    margin: auto;
    color: #777;
    line-height: 1.8;
    font-size: 16px;
}


/* Grid */

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* Card */

.category-card{
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    color: #222;
    text-decoration: none;
    transition: .5s ease;
    border-radius: 15px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}


/* Image */


.category-card.category-large .category-image {
    height:350px
}
.category-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.06);
}


/* Overlay */

.category-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0,0,0,.25)
    );
    pointer-events: none;
}


/* Content */

.category-content {
    padding: 20px 0;
    position: relative;
    background: #fff;
}
.category-content > span:first-child {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #a77b5c;
}

.category-content h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 500;
}

.category-content p {
    margin: 0 10px 15px 8px;
    color: #000;
    font-size: 15px;
    line-height: 1.7;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Link */

.category-link {
    display: inline-flex !important;
    align-items: center;
    gap:5px;
    font-size: 12px !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000 !important;
    transition: .3s ease;
    background: #f5e1e1;
    padding: 12px;
    font-weight: 500;
}

.category-link i {
    transition: transform .3s ease;
}

.category-card:hover .category-link i {
    transform: translateX(6px);
}


/* Paint decorations */

.paint-mark {
    position: absolute;
    z-index: 2;
    display: block;
    background: #b97955;
    opacity: .8;
    pointer-events: none;
}

.paint-mark-1 {
    width: 100px;
    height: 18px;
    right: 30px;
    top: 30px;
    transform: rotate(-8deg);
    border-radius: 60% 20% 50% 15%;
}

.paint-mark-2 {
    width: 50px;
    height: 8px;
    right: 5px;
    top: 55px;
    transform: rotate(-8deg);
    border-radius: 50%;
    opacity: .5;
}

.paint-mark-3 {
    width: 75px;
    height: 12px;
    left: 25px;
    top: 25px;
    transform: rotate(7deg);
    border-radius: 20% 60% 30% 50%;
}

.paint-mark-4 {
    width: 65px;
    height: 10px;
    right: 25px;
    bottom: 25px;
    transform: rotate(-15deg);
}

.paint-mark-5 {
    width: 12px;
    height: 12px;
    right: 15px;
    bottom: 18px;
    border-radius: 50%;
    opacity: .6;
}


/* View all */

.shop-all {
    text-align: center;
    position: relative;
    z-index: 9;
    width: max-content;
    margin: 40px auto 0;
}

.shop-all a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform-origin: right;
    transition: transform .4s ease;
}

.shop-all a:hover::after {
    transform: scaleX(0);
    transform-origin: left;
}

.shop-all i {
    transition: transform .3s ease;
}

.shop-all a:hover i {
    transform: translateX(5px);
}


/* Tablet */

@media (max-width: 991px) {

    .shop-categories {
        padding: 80px 0;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .category-image,
    .category-card.category-large .category-image {
        height: 350px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .shop-categories {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-image,
    .category-card.category-large .category-image {
        height: 360px;
    }

    .category-content {
        padding: 24px;
    }

    .category-content h3 {
        font-size: 26px;
    }

}



/******************** Category Section **********************/



.category-section {
    background:url('../images/pink-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
	position:relative;
}

.category-section:after{
	content:"";
	background-color: rgba(0,0,0,0.4);
	position: absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	width:100%;
	height:100%;
}
.categories-grid.row {
    position: relative;
    z-index: 99;
}




.new-arrivals-section {
    background: #f8f5f0;
}


/* Heading */

.new-arrivals-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.heading-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.heading-label span {
    width: 35px;
    height: 2px;
    background: #a51c38;
    transform: rotate(-3deg);
}

.heading-label p {
    margin: 0;
    color: #a51c38;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
}

.new-arrivals-heading h2 {
    margin: 0 0 15px;
    font-family: Georgia, serif;
    font-size: 52px;
    font-weight: 500;
    color: #292929;
}

.heading-text {
    max-width: 600px;
    margin: auto;
    color: #777;
    line-height: 1.8;
}


/* Grid */

.new-arrivals-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
}


/* Card */

.arrival-card {
    display: block;
    color: #222;
    text-decoration: none;
}

.arrival-featured {
    grid-row: span 2;
}


/* Image */

.arrival-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #ddd;
}

.arrival-featured .arrival-image {
    height: 630px;
}

.arrival-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.arrival-card:hover .arrival-image img {
    transform: scale(1.06);
}


/* New badge */

.new-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;

    padding: 8px 18px;

    background: #a51c38;
    color: #fff;

    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;

    transform: rotate(-5deg);

    border-radius:
        45% 10% 40% 15%;
}


/* Overlay */

.arrival-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: rgba(45, 15, 20, .45);

    color: #fff;

    opacity: 0;
    transition: .4s ease;
}

.arrival-card:hover .arrival-overlay {
    opacity: 1;
}

.arrival-overlay span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
}

.arrival-overlay i {
    transition: transform .3s ease;
}

.arrival-card:hover .arrival-overlay i {
    transform: translateX(5px);
}


/* Information */

.arrival-info {
    padding: 18px 5px 10px;
}

.arrival-info > span {
    display: block;
    margin-bottom: 7px;

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #a51c38;
}

.arrival-info h3 {
    margin: 0 0 5px;

    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 500;
}

.arrival-info p {
    margin: 0;
    color: #888;
    font-size: 13px;
}


/* Button */

.arrivals-button {
    text-align: center;
    margin-top: 55px;
}

.arrivals-button a {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 25px;

    border: 1px solid #292929;

    color: #292929;
    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;

    transition: .35s ease;
}

.arrivals-button a:hover {
    background: #a51c38;
    border-color: #a51c38;
    color: #fff;
}

.arrivals-button i {
    transition: transform .3s ease;
}

.arrivals-button a:hover i {
    transform: translateX(5px);
}


/* Tablet */

@media (max-width: 991px) {

    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .arrival-featured {
        grid-row: auto;
        grid-column: span 2;
    }

    .arrival-featured .arrival-image {
        height: 500px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .new-arrivals-section {
        padding: 75px 0;
    }

    .new-arrivals-heading h2 {
        font-size: 38px;
    }

    .new-arrivals-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .arrival-featured {
        grid-column: auto;
    }

    .arrival-image,
    .arrival-featured .arrival-image {
        height: 400px;
    }

}

.categories-grid .title h2{
	color:#fff;
}
.category-content h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: "Finger Paint", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:#a51c38;
}

/* Heading */

.new-arrivals-title {
    max-width: 650px;
    margin: 0 auto 55px;
    text-align: center;
}

.new-arrivals-title span {
    display: block;
    margin-bottom: 10px;
    color: #a51c38;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.new-arrivals-title h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 15px;
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 500;
    color: #252525;
}

/* Brush mark underneath heading */

.new-arrivals-title h2::after {
    content: "";
    position: absolute;
    left: -8%;
    bottom: 2px;
    width: 116%;
    height: 11px;
    background: #a51c38;
    opacity: .18;
    z-index: -1;
    transform: rotate(-2deg);
    border-radius: 60% 15% 50% 20%;
}

.new-arrivals-title p {
    margin: 0;
    color: #777;
    font-size: 15px;
}


/* Four blocks */

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* Item */

.arrival-item {
    display: block;
    text-decoration: none;
    color: #222;
}


/* Image */

.arrival-img {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: #ddd;
}

.arrival-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.arrival-item:hover .arrival-img img {
    transform: scale(1.07);
}


/* New badge */

.arrival-tag {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;

    padding: 7px 15px;

    background: #a51c38;
    color: #fff;

    font-family: Georgia, serif;
    font-size: 13px;
    font-style: italic;

    border-radius: 45% 15% 40% 20%;
    transform: rotate(-5deg);
}


/* Hover */

.arrival-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(45, 15, 20, .48);
    color: #fff;
    transition: .4s ease;
}
.new-arrivals .arrival-hover{
    position: static;
    background:transparent;
}
.new-arrivals .arrival-hover:hover .cart_btn{
    background:#000;
}


.arrival-item:hover .arrival-hover {
    opacity: 1;
}

.arrival-hover span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrival-hover i {
    transition: transform .3s ease;
}

.arrival-item:hover .arrival-hover i {
    transform: translateX(5px);
}


/* Details */

.arrival-details {
    padding: 20px;
    background: #fff4f6;
    text-align: center;
}

.arrival-details h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 500;
    font-family: Inter, sans-serif;
    line-height: 1.5;
    color:#a51c38;
    letter-spacing: 1px;
}

.arrival-details p>span {
    color: #000;
    font-size: 17px;
    font-weight: 600;
}

/* View all */

.arrival-view-all {
    margin-top: 45px;
    text-align: center;
}

.arrival-view-all a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #252525;
    padding-bottom: 8px;
    font-weight: 500;
    font-family: "Finger Paint", sans-serif;
}
.arrival-view-all a:hover{
    color:#a51c38;
     border-bottom: 1px solid #a51c38;
}
.arrival-view-all i {
    transition: transform .3s ease;
}

.arrival-view-all a:hover i {
    transform: translateX(6px);
}


/* Tablet */

@media (max-width: 1100px) {

    .new-arrivals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .arrival-img {
        height: 420px;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .new-arrivals {
        padding: 70px 0;
    }

    .new-arrivals-title h2 {
        font-size: 38px;
    }

    .new-arrivals-grid {
        grid-template-columns: 1fr;
    }

    .arrival-img {
        height: 430px;
    }

}





.section-inspiration {
    background: #faf7f2;
    overflow: hidden;
}



/* =========================================
   IMAGE COLLAGE
========================================= */

.inspiration-images {
    position: relative;
    height: 600px;
    width: 100%;
}


/* Common image */

/* =========================================
   COLLAGE
========================================= */

.inspiration-collage {
    position: relative;
    width: 90%;
    height: 520px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}


/* Common */

.collage-item {
    position: absolute;
    overflow: hidden;

    background: #eee;

    box-shadow: 0 18px 40px rgba(0,0,0,.16);

    transition:
        transform .5s ease,
        box-shadow .5s ease;
}

.collage-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .7s ease;
}

.collage-item:hover {
    z-index: 20;
    box-shadow: 0 25px 55px rgba(0,0,0,.22);
}

.collage-item:hover img {
    transform: scale(1.08);
}


/* =========================================
   IMAGE 1
========================================= */

.collage-one {
    width: 30%;
    height: 210px;

    top: 35px;
    left: 3%;

    z-index: 2;

    transform: rotate(-7deg);
}


/* =========================================
   IMAGE 2
========================================= */

.collage-two {
    width: 28%;
    height: 230px;

    top: 10px;
    right: 2%;

    z-index: 3;

    transform: rotate(6deg);
}


/* =========================================
   IMAGE 3
========================================= */

.collage-three {
    width: 30%;
    height: 220px;

    bottom: 20px;
    left: 2%;

    z-index: 4;

    transform: rotate(5deg);
}


/* =========================================
   MAIN IMAGE
========================================= */

.collage-main {
    width: 42%;
    height: 350px;

    top: 80px;
    left: 29%;

    z-index: 8;

    transform: rotate(-1deg);
}


/* =========================================
   IMAGE 5
========================================= */

.collage-five {
    width: 29%;
    height: 230px;

    bottom: 10px;
    right: 3%;

    z-index: 6;

    transform: rotate(-6deg);
}

/* =========================================
   ARTISTIC PAINT SHAPES
========================================= */

.collage-brush {
    position: absolute;
    z-index: 1;
    display: block;
    background: #a51c38;
    opacity: .65;
}


/* Large brush */

.brush-one {
    width: 240px;
    height: 45px;

    left: -30px;
    top: 270px;

    border-radius: 60% 20% 50% 15%;

    transform: rotate(-18deg);
}


/* Small brush */

.brush-two {
    width: 150px;
    height: 25px;

    right: -20px;
    bottom: 100px;

    border-radius: 20% 60% 20% 50%;

    transform: rotate(12deg);

    background: #c98b69;
}


/* =========================================
   CONTENT
========================================= */

.inspiration-content {
   margin-bottom:35px;
}




/* Small brush underneath */

.before-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 55px;
    height: 5px;
    background: #a51c38;
    border-radius: 60% 20% 50% 20%;
    transform: rotate(-3deg);
}

.inspiration-content h2 {
    position: relative;
    margin: 10px 0;
    font-family: "Finger Paint", sans-serif;
    font-size:23px;
    line-height: 1.12;
    font-weight: 600;
    color: #252525;
    text-transform: uppercase;
    letter-spacing:2px;
}
.inspiration-content h2 span {
    display: inline-block;
    color: #a51c38;
    line-height: 1.7;
}

.after-title {
    margin-bottom: 18px;
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #555;
}


.description {
    margin-bottom: 30px;

    color: #777;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================
   BUTTON
========================================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #a51c38;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: .35s ease;
    font-size: 16px;
    font-family: "Finger Paint", sans-serif;
}

.about-btn:hover {
    background: #741328;

    color: #fff;
}

.about-btn i {
    transition: transform .3s ease;
}

.about-btn:hover i {
    transform: translateX(6px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .inspiration-row {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .inspiration-images {
        max-width: 700px;

        margin: auto;

        height: 550px;
    }

    .inspiration-content {
        max-width: 700px;

        margin: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .section-inspiration {
        padding: 70px 0;
    }

    .inspiration-images {
        height: 420px;
    }

    .collage-one {
        width: 47%;
        height: 190px;
    }

    .collage-two {
        width: 48%;
        height: 220px;
    }

    .collage-three {
        width: 48%;
        height: 200px;
    }

    .collage-four {
        width: 45%;
        height: 180px;
    }

    .inspiration-content h2 {
        font-size: 38px;
    }

    .after-title {
        font-size: 18px;
    }

}





.inspiration-collage .collage-item {
    position: absolute;
    overflow: hidden;

    background: #fff;

    /* White border */
    border: 8px solid #fff;

    box-sizing: border-box;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

    transition: all 0.5s ease;
}

.inspiration-collage .collage-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition: transform 0.7s ease;
}

.inspiration-collage .collage-item:hover {
    z-index: 20;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.inspiration-collage .collage-item:hover img {
    transform: scale(1.05);
}


section.cta__bg {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 9;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    padding: 50px 30px;
    border-radius: 20px;
}


section.cta__bg:after {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
footer .ftr-bottom {
    padding: 12px 0;
    background:#fbc7d0;
    text-align: center;
}
footer .ftr-bottom p {
    margin-bottom: 0;
    line-height: normal;
}

.ftr_logo {
    text-align: center;
}

.ftr_sectn .ftr_logo p {
    color: #fff;
    font-size: 18px;
    max-width: 350px;
    text-align: center;
    margin: 0 auto 0;
    line-height: 1.7;
}
.ftr_sectn .ftr_logo a {
    justify-content: center;
    margin-bottom: 20px;
}
.footer .ftr_sectn:after {
    content:"";
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    width:100%;
    height:100%;
    top:0;
    right:0;
    bottom:0;
    left:0;
}
.footer .ftr_sectn .ftr-inner {
    position: relative;
    z-index: 99;
}

.ftr_sectn .before-title::after{
    background: #db9da7;
}

.ftr_sectn .ftr-inner ul li.footer__widget--info_list {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ftr_sectn .ftr-inner ul li.footer__widget--info_list a{
    margin:10px 0;
}
footer .ftr_sectn .form button {
    border: 0;
    cursor: pointer;
    background: #b91c38;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: auto;
}
footer .ftr_sectn .form input:focus{
    outline:0;
}


/* =========================================
   Blog Section
========================================= */

.wpo-blog-section {
    position: relative;
    z-index: 1;
}
.wpo-blog-section .wpo-blog-item {
    padding: 15px;
    background: #fff4f6;
    border: 1px solid #c2233a;
    border-radius: 5px;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-img {
    overflow: hidden;
    position: relative;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-content {
    padding-top: 20px;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-content ul {
    list-style: none;
    display: flex;
    margin-bottom: 15px;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-content ul li:first-child {
    padding-right: 30px;
    position: relative;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-content ul li:first-child:before {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    content: "";
    background: #9b6531;
    border-radius: 50%;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-img img{
    width:100%;
}
.wpo-blog-section .wpo-blog-content h2 a {
    font-size: 20px;
    color: #b91c38;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    font-weight: 500;
    line-height: 1.4;
    font-family: "Finger Paint", sans-serif;
    letter-spacing: 1px;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-content ul li a{
    color:#b91c38;
}

.wpo-blog-section .wpo-blog-item .wpo-blog-img{
    overflow: hidden;
}
.wpo-blog-section .wpo-blog-item .wpo-blog-img img{
    width: 100%;
    height: 100%;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.wpo-blog-section .wpo-blog-item:hover .wpo-blog-img img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}


.wpo-blog-section .wpo-blog-item .wpo-blog-content .common_btns a {
    font-size: 15px;
    padding: 10px 13px;
}










/* =========================================
   3 COLUMN LAYOUT
========================================= */

.inspiration-row {
    display: grid;
    grid-template-columns: 0.8fr 1.7fr 0.9fr;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}


/* =========================================
   LEFT CONTENT
========================================= */

.inspiration-content {
    position: relative;
}

.inspiration-left {
    padding-left: 15px;
}

.before-title {
    position: relative;
    display: inline-block;
    margin-bottom: 22px;
    color: #a51c38;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}





/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .inspiration-row {
        grid-template-columns: .8fr 1.5fr;
        gap: 30px;
    }

    .inspiration-side {
        display: none;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 767px) {

    .section-inspiration {
        padding: 70px 0;
    }

    .inspiration-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .inspiration-left {
        padding-left: 0;

        text-align: center;
    }

    .before-title::after {
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
    }

    .inspiration-content h2 {
        font-size: 38px;
    }

.inspiration-collage {
    position: relative;
    width: 90%;
    height: 520px;
    min-width: 0;
}

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .inspiration-collage {
        height: 390px;
    }

    .collage-one {
        width: 32%;
        height: 130px;
    }

    .collage-two {
        width: 31%;
        height: 145px;
    }

    .collage-three {
        width: 33%;
        height: 135px;
    }

    .collage-main {
        width: 44%;
        height: 265px;

        top: 65px;
        left: 28%;
    }

    .collage-five {
        width: 31%;
        height: 140px;
    }

    .collage-item {
        border-width: 5px;
    }

}

.inspiration-side p {
    font-size:18px;
    line-height: 1.5;
    margin-bottom: 0;
}
.new-arrivals .inspiration-content p {
    font-size: 18px;
    text-transform: capitalize;
}

.cart_btn {
    padding: 14px 22px;
    background: #a51c38;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: .35s ease;
    font-family: "Finger Paint", sans-serif;
    border-radius: 10px;
    line-height: normal;
}
.cart_btn span {
    font-size: 13px;
}

.gallery .heading-section{
    max-width:950px;
    margin:0 auto;
    padding-bottom:20px;
}

.gallery .gallery-item a>h3{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 1px 1px 1px #000;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 1px;
}

.gallery-item p {
    font-size: 15px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
}

.featured-carousel .card-info h3 {
    margin: 0 0 5px;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 1px 1px 1px #000;
}
.featured-carousel .card-info p>span {
    background: #efefef;
    color: #000;
    padding: 8px;
    margin: 3px 0;
    display: inline-block;
    line-height: normal;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
}
.about-block .inspiration-content {
    margin-bottom: 0;
}
.about-block .about_wrap .before-title{
    margin-bottom: 0;
}


.main-menu,
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.main-menu li {
    position: relative;
}

.main-menu > li > a {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 20px 0;

    color: #222;
    text-decoration: none;

    font-size: 14px;
}


/* =================================
   FIRST DROPDOWN
================================= */

.main-menu .submenu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 220px;

    padding: 10px 0;

    background: #fff;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all .3s ease;

    z-index: 100;
}


/* Dropdown links */

.main-menu .submenu li {
    width: 100%;
}

.main-menu .submenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 18px;

    color: #333;
    text-decoration: none;

    font-size: 13px;

    transition: all .25s ease;
}

.main-menu .submenu li a:hover {
    background: #f8f2ef;
    color: #a51c38;
}


/* Show first dropdown */

.main-menu > li.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =================================
   SECOND LEVEL SUBMENU
================================= */

.main-menu .submenu .submenu-right {
    top: 0;
    left: 100%;

    margin-left: 5px;

    transform: translateX(10px);
}


/* Show second submenu */

.main-menu .submenu li.has-submenu:hover > .submenu-right {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* Icons */

.main-menu .fa-chevron-down {
    font-size: 9px;
}

.main-menu .fa-chevron-right {
    font-size: 9px;
}


/* ================================
   MAIN NAVIGATION
================================ */


.nav ul li {
    position: relative;
    list-style: none;
}



/* ================================
   FIRST LEVEL SUBMENU
================================ */

.nav li > .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    margin: 0;
    padding: 10px 0;
    background: #fff;
    list-style: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
    z-index: 999;
    margin-top:12px;
}


/* Dropdown links */

.nav .submenu li {
    width: 100%;
}

.nav .submenu li a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 12px 18px;

    box-sizing: border-box;

    color: #333;

    text-decoration: none;

    font-size: 13px;

    transition: all .25s ease;
}

.nav .submenu li a:hover {
    background: #f8f3ef;
    color: #a51c38;
}


/* ================================
   SHOW FIRST SUBMENU
================================ */

.nav > ul > li:hover > .submenu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}
.nav > ul > li > .submenu {
    display:block;
}


/* ================================
   SECOND LEVEL SUBMENU
================================ */

.nav .submenu li > ul {
    position: absolute;

    top: 0;
    left: 100%;
    width: 350px;
    margin: 0;
    padding: 10px 0;
    background: #fff;
    list-style: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
    z-index: 1000;
    display:block;
}


/* ================================
   SHOW SECOND SUBMENU
================================ */

.nav .submenu li:hover > ul {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* ================================
   ACTIVE / HOVER
================================ */

.nav .submenu li:hover > a {
    color: #a51c38;
    background: #f8f3ef;
}


/* ================================
   CATALOG ARROW
================================ */

.sticky-header .nav ul li.has-submenu a svg {
    fill:#000;
}
.sticky-header .nav ul li.has-submenu a:hover svg {
    fill:#b91c38;
}
.nav ul li.has-submenu a svg {
    width: 12px;
    fill:#fff;
}
.nav ul li.has-submenu a svg {
    width: 12px;
}
.nav ul li.has-submenu a:hover svg {
    fill:#b91c38;
}
.nav > ul > li > .submenu li a svg.submenu-arrow {
    width: 20px;
    height:20px;
    flex-shrink: 0;
    display: block;
}





/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonials-section {
    position: relative;
    background: #f8f4ee;
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.testimonial-heading {
    max-width: 650px;

    margin: 0 auto 60px;

    text-align: center;
}

.testimonial-heading > span {
    display: block;

    margin-bottom: 12px;

    color: #a51c38;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 4px;
}

.testimonial-heading h2 {
    position: relative;

    display: inline-block;

    margin: 0 0 18px;

    font-family: Georgia, serif;

    color: #252525;

    font-size: 46px;
    font-weight: 500;
}

.testimonial-heading h2::after {
    content: "";

    position: absolute;

    width: 110%;
    height: 10px;

    left: -5%;
    bottom: 2px;

    background: #a51c38;

    opacity: .15;

    border-radius: 60% 20% 50% 15%;

    transform: rotate(-2deg);

    z-index: 0;
}

.testimonial-heading h2 {
    z-index: 1;
}

.testimonial-heading p {
    margin: 0;

    color: #777;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   TESTIMONIAL ITEM
========================================= */

.testimonial-item {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 55px 70px 50px;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .06);
    text-align: center;
    border-radius: 10px;
    border: solid #fde0e5 1px;
}

/* =========================================
   QUOTE
========================================= */

.quote-mark {
    position: absolute;

    top: 10px;
    left: 35px;

    font-family: Georgia, serif;

    font-size: 110px;

    line-height: 1;

    color: #a51c38;

    opacity: .12;
}


/* =========================================
   TEXT
========================================= */

.testimonial-content > p {
    max-width: 680px;
    margin: 0 auto 35px;
    color: #000;
    font-size:18px;
    line-height: 1.7;
    font-style: italic;
     overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =========================================
   AUTHOR
========================================= */

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author h4 {
    margin: 0 0 4px;
    color:#a51c38;
    font-size: 17px;
    font-weight: 500;
}

.testimonial-author span {
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* =========================================
   PAINT LINE
========================================= */

.paint-line {
    position: absolute;
    width: 100px;
    height: 7px;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) rotate(-2deg);
    background: #a51c38;
    opacity: .3;
    border-radius: 60% 15% 50% 20%;
}


/* =========================================
   OWL NAVIGATION
========================================= */

.testimonial-slider {
    position: relative;
}


/* Navigation buttons */

.testimonial-slider .owl-nav button.owl-prev,
.testimonial-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    margin: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #a51c38 !important;
    border-radius: 50%;
    transition: all .3s ease;
}
/* 
.testimonial-slider .owl-nav button.owl-prev {
    left: -25px;
}

.testimonial-slider .owl-nav button.owl-next {
    right: -25px;
} */

.testimonial-slider .owl-nav button:hover {
    background: #a51c38 !important;
    color: #fff !important;
    border-color: #a51c38 !important;
}


/* =========================================
   DOTS
========================================= */

.testimonial-slider .owl-dots {
    margin-top: 35px;

    text-align: center;
}

.testimonial-slider .owl-dot {
    margin: 0 4px;
}

.testimonial-slider .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 0 !important;
    background: #d4c6c0 !important;
    transition: all .3s ease;
}

.testimonial-slider .owl-dot.active span {
    width: 25px !important;
    background: #a51c38 !important;
    border-radius: 10px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .testimonials-section {
        padding: 75px 0;
    }

    .testimonial-heading {
        margin-bottom: 40px;
    }

    .testimonial-heading h2 {
        font-size: 36px;
    }

    .testimonial-item {
        padding: 50px 25px 45px;
    }

    .testimonial-content > p {
        font-size: 17px;
        line-height: 1.7;
    }

    .quote-mark {
        left: 15px;
        font-size: 80px;
    }

    .testimonial-slider .owl-nav {
        display: none;
    }

}



.actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.actions button,
.actions a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    text-decoration: none;
    font-size: 17px;
    cursor: pointer;
    transition: all .3s ease;
}

.actions button:hover,
.actions a:hover {
    color: #fbc7d0;
}


/* User icon */

.user-btn i {
    font-size: 17px;
}


/* Cart count */

.cart-btn .count {
    position: absolute;
    top: -3px;
    right: -4px;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #a51c38;
    color: #fff;
    font-size: 9px;
    line-height: 1;
}




/* =========================================
   TOP HEADER
========================================= */

.top-header {
    position: relative;
    width: 100%;

    background: #a51c38;
    color: #fff;

    border-bottom: 1px solid rgba(255,255,255,.15);
}


/* Container */

.top-header .container-fluid {
    width: 100%;
    padding: 0 45px;
}


/* Top bar */

.top-bar {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   CONTACT INFO
========================================= */

.top-info {
    display: flex;
    align-items: center;

    gap: 28px;
}

.top-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;

    white-space: nowrap;

    transition: all .3s ease;
}

.top-info a:hover {
    color: #f5d8df;
}


/* SVG icons */

.top-info a svg {
    width: 13px;
    height: 13px;

    flex-shrink: 0;

    color: #fff;

    transition: all .3s ease;
}

.top-info a:hover svg {
    transform: translateY(-2px);
}


/* =========================================
   SOCIAL ICONS
========================================= */

.top-socials {
    display: flex;
    align-items: center;

    gap: 8px;
}

.top-socials a {
    width:32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    text-decoration: none;

    transition: all .3s ease;
}

.top-socials a svg {
    width: 14px;
    height: 14px;
}

.top-socials a:hover {
    background: #fff;
    color: #a51c38;

    border-color: #fff;

    transform: translateY(-2px);
}


/* =========================================
   MAIN HEADER
========================================= */

.site-header .header-section {
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo img {
    max-width: 170px;
    height: auto;
    display: block;
}


/* =========================================
   STICKY HEADER
========================================= */

.site-header.sticky-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    background: #fff;

    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}



/* =========================================
   ACTIONS
========================================= */

.actions {
    display: flex;
    align-items: center;

    gap: 8px;
}


/* =========================================
   CART COUNT
========================================= */

.cart-btn {
    position: relative;
}

.cart-btn .count {
    position: absolute;

    top: 2px;
    right: 0;

    width: 15px;
    height: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #a51c38;

    color: #fff;

    border-radius: 50%;

    font-size: 8px;
    line-height: 1;
}


/* =========================================
   SEARCH BOX
========================================= */

.search-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s ease;
    z-index: 999;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-inner {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.search-inner input {
    width: 100%;

    padding: 15px 0;

    border: 0;
    outline: 0;

    background: transparent;

    font-size: 18px;
}

.search-inner button {
    width: 40px;
    height: 40px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.search-inner button svg {
    width: 16px;
}


/* =========================================
   MOBILE TOP BAR
========================================= */

@media (max-width: 991px) {

    .top-header .container-fluid {
        padding: 0 20px;
    }

    .top-bar {
        justify-content: center;
    }

    .top-info {
        gap: 15px;
    }

    .top-info a {
        font-size: 11px;
    }

    .top-info a:first-child {
        display: none;
    }

    .top-socials {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .top-header {
        display: none;
    }

    .site-header .header-section {
        min-height: 75px;
    }

}


.sticky-header .actions button:hover, .sticky-header .actions a:hover {
    color: #a51c38;
}



.about-block  .about_wrap .layout-images img{
    width:100%;
}

a.btn.outline.hero_btn {
    background: #a51c38;
    color:#fff;
}


.about_wrap .row {
    display: flex;
    align-items: stretch;
}

.about_wrap .abt_section,
.about_wrap .layout-images {
    display: flex;
    flex-direction: column;
}





/* Right image section */
.about_wrap .layout-images {
    padding: 0;
}

.about_wrap .layout-images > div {
    width: 100%;
    height: 100%;
}

.about_wrap .layout-images .img-main {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
}
.about_main .about_wrap{
    max-width:100%;
}
section.dog-block{
    background: #f2f2f2;
}
section.dog-block .feature_wrap.row {
    align-items: center;
    text-align: center;
}




/*************************** Brea CSS *******************************/
/* =========================================
   INNER BANNER / BREADCRUMB
========================================= */

.breadcumb-section {
    width: 100%;
    position: relative;
}

.breadcumb-wrapper {
    position: relative;

    width: 100%;
    min-height: 380px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* Dark overlay */

.breadcumb-wrapper::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(25, 18, 16, .72),
            rgba(25, 18, 16, .35),
            rgba(25, 18, 16, .60)
        );

    z-index: 1;
}


/* Subtle color overlay */

.breadcumb-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(165, 28, 56, .18),
        transparent 55%
    );

    z-index: 1;
}


/* Content */

.breadcumb-wrapper .container {
    position: relative;
    z-index: 2;
}

.breadcumb-content {
    text-align: center;

    max-width: 800px;

    margin: 0 auto;
}


/* =========================================
   TITLE
========================================= */

.breadcumb-title {
    position: relative;

    display: inline-block;

    margin: 0 0 20px;

    color: #fff;

    font-family:"Finger Paint", sans-serif;

    font-size:35px;
    font-weight: 500;

    line-height: 1.2;

    letter-spacing: .5px;
}


/* Decorative brush line */

.breadcumb-title::after {
    content: "";

    position: absolute;

    width: 95px;
    height: 7px;

    left: 50%;
    bottom: -13px;

    transform: translateX(-50%) rotate(-2deg);

    background: #a51c38;

    border-radius: 70% 20% 60% 15%;

    opacity: .9;
}


/* =========================================
   BREADCRUMB
========================================= */

.breadcumb-menu {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.breadcumb-menu li {
    color: rgba(255,255,255,.8);

    font-size: 13px;

    line-height: 1.5;
}

.breadcumb-menu li a {
    color: #fff;

    text-decoration: none;

    transition: color .3s ease;
}

.breadcumb-menu li a:hover {
    color: #e2a2b1;
}

.breadcumb-menu .active {
    color: #e2a2b1;
}


/* =========================================
   BACKGROUND ZOOM
========================================= */

.breadcumb-wrapper {
    animation: bannerZoom 12s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
    from {
        background-size: 100%;
    }

    to {
        background-size: 108%;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .breadcumb-wrapper {
        min-height: 320px;
    }

    .breadcumb-title {
        font-size: 44px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .breadcumb-wrapper {
        min-height: 260px;

        background-position: center;
    }

    .breadcumb-title {
        font-size: 36px;
    }

    .breadcumb-menu {
        gap: 8px;
    }

    .breadcumb-menu li {
        font-size: 12px;
    }

}





/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    position: relative;

    padding: 100px 0;

    background: #f8f4ef;

    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.contact-heading {
    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;
}

.contact-heading .before-title {
    display: block;

    margin-bottom: 12px;

    color: #a51c38;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 4px;

    text-transform: uppercase;
}

.contact-heading h1 {
    position: relative;

    display: inline-block;

    margin: 0 0 20px;

    color:;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 54px;

    font-weight: 500;

    line-height: 1.15;
}

.contact-heading h1 span {
    color: #a51c38;
    font-style: italic;
}

.contact-heading p {
    max-width: 600px;

    margin: auto;

    color: #777;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================
   MAIN CONTACT WRAPPER
========================================= */

.contact-wrap {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 70px;

    max-width: 1200px;

    margin: auto;
}


/* =========================================
   LEFT CONTACT INFO
========================================= */

.contact-info {
    position: relative;
    padding: 55px 45px;
    background: #74323e;
    color: #fff;
    overflow: hidden;
}

/* Decorative circle */

.contact-info::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -130px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 50%;
}

.contact-info::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 20px;

    left: -40px;
    bottom: 100px;

    background: #a51c38;

    opacity: .35;

    transform: rotate(-8deg);

    border-radius: 50%;
}


/* Intro */

.contact-intro {
    position: relative;

    z-index: 2;

    margin-bottom: 40px;
}

.contact-intro .small-title {
    display: block;

    margin-bottom: 15px;

    color: #dca0ad;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 3px;
}

.contact-intro h2 {
    margin: 0 0 15px;

    color: #fff;

    font-family: Georgia, serif;

    font-size: 36px;

    font-weight: 400;

    line-height: 1.2;
}

.contact-intro h2 span {
    color: #dca0ad;

    font-style: italic;
}

.contact-intro p {
    margin: 0;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.contact-info-item {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    color: #dca0ad;
}

.contact-icon svg {
    width: 19px;
    height: 19px;
}

.contact-info-item > div:last-child {
    padding-top: 2px;
}

.contact-info-item span {
    display: block;
    margin-bottom: 7px;
    color:rgb(255 199 208);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    color: #fff;
    font-size:15px;
    line-height: 1.7;
    text-decoration: none;
}

.contact-info-item a {
    transition: color .3s ease;
}

.contact-info-item a:hover {
    color: #dca0ad;
}


/* =========================================
   HOURS
========================================= */

.contact-hours {
    position: relative;

    z-index: 2;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.contact-hours span {
    display: block;
    margin-bottom: 8px;
    color:rgb(255 199 208);
    font-size:12px;
    text-transform: uppercase;

    letter-spacing: 2px;
}

.contact-hours strong {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}


/* =========================================
   SOCIAL
========================================= */

.contact-social {
    position: relative;
    z-index: 2;
    margin-top: 20px;
}
.contact-social > span {
    display: block;
    margin-bottom: 13px;
    color: rgb(255 199 208);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.social-links {
    display: flex;

    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.2);

    border-radius: 50%;

    color: #fff;

    font-size: 20px;

    text-decoration: none;

    transition: all .3s ease;
}

.social-links a:hover {
    background: #a51c38;

    border-color: #a51c38;

    transform: translateY(-3px);
}

.social-links a svg {
    width: 19px;
}
/* =========================================
   FORM AREA
========================================= */

.contact-form-wrap {
    padding: 55px 55px 50px;

    background: #fff;

    box-shadow: 0 20px 60px rgba(40,25,20,.08);
}


/* Form heading */

.form-top {
    margin-bottom: 35px;
}

.form-top > span {
    display: block;

    margin-bottom: 10px;

    color: #a51c38;

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 3px;
}

.form-top h2 {
    margin: 0;

    color: #282321;

    font-family: Georgia, serif;

    font-size: 34px;

    font-weight: 400;

    line-height: 1.25;
}

.form-top h2 em {
    color: #a51c38;

    font-weight: 400;
}


/* =========================================
   FORM ROW
========================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    color: #403a37;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* Inputs */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 0;

    border: 0;

    border-bottom: 1px solid #d8d1cd;

    outline: none;

    background: transparent;

    color: #292321;

    font-family: inherit;

    font-size: 14px;

    border-radius: 0;

    transition: border-color .3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a51c38;
}

.form-group textarea {
    min-height: 130px;

    resize: vertical;

    line-height: 1.7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-width: 180px;
    padding: 15px 22px;
    border: 0;
    background: #a51c38;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .35s ease;
}

.contact-submit span {
    font-size: 18px;

    transition: transform .3s ease;
}

.contact-submit:hover {
    background: #29211f;

    padding-left: 27px;
}

.contact-submit:hover span {
    transform: translateX(6px);
}


/* =========================================
   LOCATION SECTION
========================================= */

.contact-location {
    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 300px;

    margin-top: 70px;

    overflow: hidden;

    background: #29211f;
}


/* Location text */

.location-content {
    position: relative;

    z-index: 2;

    padding: 55px;
}

.location-content > span {
    display: block;

    margin-bottom: 10px;

    color: #dca0ad;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 3px;
}

.location-content h2 {
    margin: 0 0 12px;

    color: #fff;

    font-family: Georgia, serif;

    font-size: 40px;

    font-weight: 400;
}

.location-content h2 strong {
    color: #dca0ad;

    font-weight: 400;

    font-style: italic;
}

.location-content p {
    max-width: 400px;

    margin: 0 0 25px;

    color: rgba(255,255,255,.6);

    font-size: 14px;

    line-height: 1.7;
}

.location-btn {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    color: #fff;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    text-decoration: none;
}

.location-btn span {
    color: #dca0ad;

    font-size: 18px;

    transition: transform .3s ease;
}

.location-btn:hover span {
    transform: translateX(5px);
}
section.map-section{
    line-height: 0;
}
section.map-section iframe {
    width: 100%;
}
/* =========================================
   ARTISTIC LOCATION AREA
========================================= */

.location-art {
    position: relative;

    min-height: 300px;

    background:
        linear-gradient(
            135deg,
            rgba(165,28,56,.5),
            rgba(41,33,31,.2)
        ),
        url("assets/images/inner-banner.jpg");

    background-size: cover;

    background-position: center;
}


/* Paint circle */

.paint-circle {
    position: absolute;

    width: 230px;
    height: 230px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) rotate(-8deg);

    border: 2px solid rgba(255,255,255,.4);

    border-radius: 48% 52% 45% 55%;
}


/* Location label */

.location-label {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 125px;
    height: 125px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.95);

    border-radius: 50%;

    text-align: center;

    box-shadow: 0 10px 40px rgba(0,0,0,.2);
}

.location-label span {
    margin-bottom: 4px;

    color: #a51c38;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.location-label strong {
    color: #292321;

    font-family: Georgia, serif;

    font-size: 17px;

    font-weight: 500;
}










/* =========================================
   BLOG HERO
========================================= */

.blog-hero {
    position: relative;
    padding: 85px 0 95px;
    background:
        linear-gradient(
            135deg,
            #071b2b 0%,
            #0b344e 55%,
            #123f59 100%
        );
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border: 70px solid rgba(255,255,255,.04);
    border-radius: 50%;
    right: -150px;
    top: -180px;
}

.blog-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(220, 42, 45, .12);
    left: -100px;
    bottom: -120px;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    margin-bottom: 30px;
}

.blog-breadcrumb a {
    transition: .3s ease;
}

.blog-breadcrumb a:hover {
    color: #fff;
}

.blog-category {
    display: inline-flex;
    padding: 8px 16px;
    background: #dc2a2d;
    color: #fff;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blog-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 35px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    color: rgba(255,255,255,.8);
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #dc2a2d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.author strong,
.author span {
    display: block;
}

.author strong {
    color: #fff;
    font-size: 14px;
}

.author span {
    font-size: 12px;
    opacity: .7;
}

.meta-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.meta-item i {
    color: #dc2a2d;
}


/* =========================================
   BLOG SECTION
========================================= */

.blog-details-section {
    padding: 90px 0;
    background: #f7f8fa;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 55px;
    align-items: start;
}


/* =========================================
   MAIN BLOG
========================================= */

.blog-content {
    min-width: 0;
}

.featured-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 24px;
    background: #ddd;
    margin-bottom: 40px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.featured-image:hover img {
    transform: scale(1.04);
}

.article-body {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
}

.article-body p {
    color: #626a72;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.article-body .intro {
    color: #343a40;
    font-size: 19px;
    line-height: 1.8;
    font-weight: 500;
}

.article-body h2 {
    color: #17212b;
    font-size: 30px;
    line-height: 1.3;
    margin: 38px 0 18px;
}

.highlight-box {
    display: flex;
    gap: 18px;
    margin: 35px 0;
    padding: 25px;
    background: #f5f7f9;
    border-left: 4px solid #dc2a2d;
    border-radius: 12px;
}

.highlight-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #dc2a2d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-box h3 {
    font-size: 18px;
    color: #17212b;
    margin-bottom: 5px;
}

.highlight-box p {
    margin: 0;
    font-size: 14px;
}

.check-list {
    list-style: none;
    padding: 5px 0 10px;
}

.check-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #505860;
    margin-bottom: 13px;
    font-size: 15px;
}

.check-list i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(220,42,45,.1);
    color: #dc2a2d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.article-body blockquote {
    position: relative;
    margin: 35px 0;
    padding: 30px 35px;
    background: #092338;
    border-radius: 15px;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.6;
}

.article-body blockquote::before {
    content: "“";
    position: absolute;
    top: -15px;
    left: 20px;
    color: #dc2a2d;
    font-size: 70px;
    line-height: 1;
}


/* =========================================
   ARTICLE FOOTER
========================================= */

.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    margin-top: 35px;
    border-top: 1px solid #e7e9ec;
}

.article-tags,
.share-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.article-tags span,
.share-buttons span {
    color: #202831;
    font-size: 14px;
    font-weight: 700;
    margin-right: 5px;
}

.article-tags a {
    padding: 7px 12px;
    background: #f1f3f5;
    border-radius: 5px;
    color: #626a72;
    font-size: 12px;
    transition: .3s;
}

.article-tags a:hover {
    background: #dc2a2d;
    color: #fff;
}

.share-buttons a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f3f5;
    color: #28323c;
    font-size: 13px;
    transition: .3s;
}

.share-buttons a:hover {
    background: #dc2a2d;
    color: #fff;
    transform: translateY(-3px);
}


/* =========================================
   AUTHOR BOX
========================================= */

.author-box {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    padding: 35px;
    background: #fff;
    border-radius: 24px;
}

.author-large {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #092338;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 700;
}

.author-info > span {
    color: #dc2a2d;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.author-info h3 {
    color: #17212b;
    font-size: 22px;
    margin: 3px 0 8px;
}

.author-info p {
    color: #626a72;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.author-link {
    color: #dc2a2d;
    font-size: 13px;
    font-weight: 700;
}

.author-link i {
    margin-left: 5px;
}


/* =========================================
   POST NAVIGATION
========================================= */

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.post-nav {
    display: block;
    padding: 25px;
    background: #fff;
    border-radius: 18px;
    transition: .3s ease;
}

.post-nav:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.post-nav.next {
    text-align: right;
}

.post-nav span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #dc2a2d;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.post-nav strong {
    color: #1d2832;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================
   SIDEBAR
========================================= */

.blog-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    position: relative;
    color: #17212b;
    font-size: 20px;
    margin-bottom: 22px;
    padding-bottom: 14px;
}

.sidebar-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    border-radius: 5px;
    background: #dc2a2d;
}


/* Search */

.blog-search {
    position: relative;
}

.blog-search input {
    width: 100%;
    height: 52px;
    padding: 0 55px 0 16px;
    border: 1px solid #e1e5e8;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    transition: .3s;
}

.blog-search input:focus {
    border-color: #dc2a2d;
}

.blog-search button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #dc2a2d;
    color: #fff;
    cursor: pointer;
}


/* Categories */

.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid #edf0f2;
}

.category-list li:last-child {
    border-bottom: 0;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
    color: #626a72;
    font-size: 14px;
    transition: .3s;
}

.category-list a:hover {
    color: #dc2a2d;
    padding-left: 5px;
}

.category-list span {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f3f5;
    color: #626a72;
    font-size: 11px;
}


/* Recent Posts */

.recent-post {
    display: flex;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid #edf0f2;
}

.recent-post:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.recent-post img {
    flex: 0 0 75px;
    width: 75px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-post span {
    display: block;
    color: #dc2a2d;
    font-size: 10px;
    margin-bottom: 3px;
}

.recent-post a {
    display: block;
    color: #202a33;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    transition: .3s;
}

.recent-post a:hover {
    color: #dc2a2d;
}


/* =========================================
   SIDEBAR CTA
========================================= */

.sidebar-cta {
    position: relative;
    padding: 35px 28px;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            #092338,
            #0e405d
        );
    color: #fff;
}

.sidebar-cta::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border: 35px solid rgba(255,255,255,.04);
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
}

.cta-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc2a2d;
    border-radius: 12px;
}

.sidebar-cta h3 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.sidebar-cta p {
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 7px;
    background: #fff;
    color: #092338;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.cta-btn:hover {
    background: #dc2a2d;
    color: #fff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .sidebar-widget,
    .sidebar-cta {
        margin-bottom: 0;
    }

    .search-widget {
        grid-column: span 2;
    }

    .featured-image {
        height: 450px;
    }
}


@media (max-width: 767px) {

    .container {
        width: min(100% - 30px, 1200px);
    }

    .blog-hero {
        padding: 60px 0 65px;
    }

    .blog-hero h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .blog-meta {
        gap: 15px;
    }

    .meta-divider {
        display: none;
    }

    .blog-details-section {
        padding: 55px 0;
    }

    .featured-image {
        height: 350px;
        border-radius: 18px;
        margin-bottom: 25px;
    }

    .article-body {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .article-body h2 {
        font-size: 25px;
    }

    .article-body .intro {
        font-size: 17px;
    }

    .article-body blockquote {
        padding: 25px;
        font-size: 18px;
    }

    .author-box {
        padding: 25px;
        border-radius: 18px;
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    .post-nav.next {
        text-align: left;
    }

    .blog-sidebar {
        display: block;
    }

    .sidebar-widget,
    .sidebar-cta {
        margin-bottom: 20px;
    }

    .search-widget {
        margin-bottom: 20px;
    }
}


@media (max-width: 480px) {

    .blog-hero h1 {
        font-size: 31px;
    }

    .blog-breadcrumb {
        font-size: 12px;
    }

    .blog-category {
        font-size: 10px;
    }

    .featured-image {
        height: 260px;
    }

    .article-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .author-box {
        flex-direction: column;
    }

    .author-large {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
    }
}

.nav a:hover, .nav a.active {
    color: #fbc7d0;
}
.nav a::after {
    background:#fbc7d0;
}
.sticky-header .nav a:hover, .sticky-header .nav a.active{
    color:#a51c38;
}
.sticky-header .nav a::after {
    background:#a51c38;
}

footer .ftr-inner .social-links {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}



/* ================================
   CATEGORIES
================================ */

.categories-section {
    padding: 80px 0;
    overflow: hidden;
}

.categories-section .title {
    text-align: center;
    margin-bottom: 45px;
}

.categories-section .title h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 0;
    color: #222;
}


/* ================================
   OWL SLIDER
================================ */

.categories-carousel {
    position: relative;
}

.category-slide {
    padding: 0 12px;
}


/* ================================
   CARD
================================ */

.category-card {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}


/* ================================
   IMAGE
================================ */

.category-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.07);
}


/* ================================
   PAINT MARKS
================================ */

.paint-mark {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.paint-mark-1 {
    width: 75px;
    height: 35px;
    right: 20px;
    bottom: 20px;
    background: rgba(210, 40, 40, .75);
    transform: rotate(-25deg);
    filter: blur(.2px);
}

.paint-mark-2 {
    width: 45px;
    height: 22px;
    right: 70px;
    bottom: 55px;
    background: rgba(245, 160, 50, .75);
    transform: rotate(20deg);
}


/* ================================
   CONTENT
================================ */

.category-content {
    padding: 30px;
}



.category-card:hover .category-link i {
    transform: translateX(6px);
}


/* ================================
   OWL NAVIGATION
================================ */

.categories-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.categories-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    border: 0 !important;
    border-radius: 50%;
    background: #fff !important;
    color:#a51c38!important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all .3s ease;
}

.categories-carousel .owl-nav button:hover {
    background:#a51c38!important;
    color: #fff !important;
}

.categories-carousel .owl-nav button span {
    font-size: 30px;
    line-height: 1;
}
.categories-carousel .owl-nav button.owl-prev{
    left:0
}
.categories-carousel .owl-nav button.owl-next{
    right:0
}

/* ================================
   DOTS
================================ */

.categories-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.categories-carousel .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 5px;
    background: #d7d7d7;
    display: block;
    border-radius: 50%;
    transition: all .3s ease;
}

.categories-carousel .owl-dots .owl-dot.active span {
    width: 28px;
    border-radius: 10px;
    background: #a51c38;
}


/* ================================
   VIEW ALL
================================ */

.shop-all {
    text-align: center;
    margin-top: 40px;
}

.shop-all a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-bottom:2px solid #ed8b9b;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-all i {
    color: #c9282d;
    transition: transform .3s ease;
}

.shop-all a:hover i {
    transform: translateX(5px);
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .category-image {
        height: 280px;
    }

    .categories-carousel .owl-nav {
        width: calc(100% + 30px);
        left: -15px;
    }

}


@media (max-width: 767px) {

    .categories-section {
        padding: 60px 0;
    }

    .categories-section .title h2 {
        font-size: 32px;
    }

    .category-slide {
        padding: 0 8px;
    }

    .category-image {
        height: 300px;
    }

    .category-content {
        padding: 25px;
    }

    .categories-carousel .owl-nav {
        display: none;
    }

}


@media (max-width: 480px) {

    .categories-section .title h2 {
        font-size: 28px;
    }

    .category-image {
        height: 270px;
    }

}
.category-section .title{
    position: relative;
    z-index:9;
}

.category-section .title h2{
    color:#fff;
}
.copy {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

/*************************** Responsive CSS *******************************/

@media (min-width: 1200px) and (max-width:1400px) {
    .form{
        flex-wrap:nowrap;
        flex-direction: column;
    }
    .copy h1{
        font-size: 40px;
    }
    .hero .buttons a {
        font-size: 13px;
        padding: 15px 18px;
       transition: .3s all ease;
    }
    .arrival-details{
        padding: 12px 10px;
    }
    .arrival-details h3{
        font-size: 14px;
    }
    .cart_btn {
        padding: 12px 15px;
    }
    .cart_btn span {
        font-size: 12px;
    }
    .arrival-details p>span {
        font-size: 14px;
    }
    .new-arrivals .new-arrivals-grid .arrival-item .arrival-img{
        height:auto;
    }
    .inspiration-content h2{
            font-size: 20px;
    }
    .about-btn {
        gap: 5px;
        padding: 12px;
        font-size: 12px;
    }
    .inspiration-side p {
        font-size: 16px;
    }
    .footer h3, .footer h4 {
        font-size:20px;
    }
    .ftr_sectn p{
        font-size:14px;
    }
    .footer li a{
        font-size: 14px;
    }
    .ftr_sectn .ftr_logo p{
        font-size: 14px;
    }
    .wpo-blog-section .wpo-blog-content h2 a{
         font-size: 18px;
    }
    .wpo-blog-section .wpo-blog-item .wpo-blog-content p{
         font-size: 15px;
    }
    .wpo-blog-section .wpo-blog-item .wpo-blog-content .common_btns a {
        font-size: 13px;
    }
    footer .ftr-bottom p {
        font-size: 14px;
    }
}

@media (min-width:1025px) and (max-width:1199px) {
    .nav a{
        font-size: 14px;
    }
    .nav ul {
         gap: 28px;
    }
    .header-section a.logo img {
        max-width: 70px;
    }
    .form{
        flex-wrap:nowrap;
        flex-direction: column;
    }
    .copy h1{
        font-size: 40px;
    }
    .hero .buttons a {
        font-size: 13px;
        padding: 15px 18px;
       transition: .3s all ease;
    }
    .arrival-details{
        padding: 12px 10px;
    }
    .arrival-details h3{
        font-size: 18px;
    }
    .cart_btn {
        padding: 12px 15px;
    }
    .cart_btn span {
        font-size: 12px;
    }
    .arrival-details p>span {
        font-size: 14px;
    }
    .new-arrivals .new-arrivals-grid .arrival-item .arrival-img{
        height:auto;
    }
    
    .inspiration-content h2{
            font-size: 18px;
    }
    .featured-carousel .card-info h3 {
        font-size: 16px;
    }
    .about-btn {
        gap: 5px;
        padding: 12px;
        font-size: 12px;
    }
    .inspiration-side p {
        font-size: 16px;
    }
    .footer h3, .footer h4 {
        font-size:18px;
    }
    .ftr_sectn p{
        font-size:14px;
    }
    .footer li a{
        font-size: 14px;
    }
    .ftr_sectn .ftr_logo p{
        font-size: 14px;
    }
    .wpo-blog-section .wpo-blog-content h2 a{
         font-size: 18px;
    }
    .wpo-blog-section .wpo-blog-item .wpo-blog-content p{
         font-size: 15px;
    }
    .wpo-blog-section .wpo-blog-item .wpo-blog-content .common_btns a {
        font-size: 13px;
    }
    footer .ftr-bottom p {
        font-size: 14px;
    }
    .category-content h3{
        font-size: 15px;
    }
    .gallery .gallery-item a>h3{
        font-size: 15px;
    }
    .testimonial-content > p{
        font-size: 16px;
    }
    .title h2{
        font-size: 22px;
    }
}


@media (max-width: 991px) {
    .nav{
        background:#000;
    }
    .nav ul{
        display:block;
    }
    .sticky-header button#toggle {
    background: #000;
    width: 35px;
    height: 35px;
}

.toggle span{
    margin:0;
}
 .nav a {
    color: #fff;
    display: block;
}
.nav ul {
        display: block;
        width: 100%;
    }
}















