/*
Theme Name: Styles WooCommerce
Theme URI: https://example.com/styles
Author: Diana Faria
Description: Premium leather accessories WooCommerce theme converted from the supplied Styles HTML design.
Version: 1.9.5
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: styles
Woo: 8.0+
*/

:root {
	--ink: #1f1b18;
	--muted: #746b64;
	--paper: #fbfaf8;
	--sand: #eee8e1;
	--tan: #b8825e;
	--brown: #6f3b29;
	--line: #ddd5cd;
	--white: #fff;
	--shadow: 0 18px 45px rgba(42, 30, 20, .10)
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, Arial, sans-serif;
	line-height: 1.55;
 
    overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none
}

img {
	display: block;
	max-width: 100%
}

.container {
	width: min(1180px, 92%);
	margin: auto
}

.topbar {
	font-size: 12px;
	text-align: center;
	padding: 8px;
	background: #211a16;
	color: #fff;
	letter-spacing: .12em
}

.header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(251, 250, 248, .96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line)
}

.nav {
	height: 76px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center
}

.navlinks,
.icons {
	display: flex;
	gap: 24px;
	align-items: center
}

.icons {
	justify-content: flex-end
}

.logo {
	font-family: Georgia, serif;
	font-size: 25px;
	letter-spacing: .28em
}

.iconbtn {
	border: 0;
	background: none;
	font-size: 20px;
	cursor: pointer
}

.hero {
	min-height: 650px;
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	background: linear-gradient(120deg, #e8dfd5, #f6f2ed)
}

.hero-copy {
	padding: 110px max(5vw, 45px);
	display: flex;
	flex-direction: column;
	justify-content: center
}

.eyebrow {
	letter-spacing: .18em;
	text-transform: uppercase;
	font-size: 12px;
	color: var(--brown);
	font-weight: 700
}

.hero h1 {
	font-family: Georgia, serif;
	font-size: clamp(48px, 6vw, 84px);
	line-height: .98;
	margin: 18px 0 24px;
	font-weight: 500
}

.hero p {
	max-width: 540px;
	color: var(--muted);
	font-size: 18px
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 25px;
	border: 1px solid var(--ink);
	font-size: 13px;
	letter-spacing: .1em;
	text-transform: uppercase;
	transition: .25s;
	cursor: pointer
}

.btn.dark {
	background: var(--ink);
	color: #fff
}

.btn:hover {
	box-shadow: var(--shadow)
}

.hero-art {
	display: grid;
	place-items: center;
	padding: 40px
}

.hero-art img {
	width: min(620px, 90%);
	filter: drop-shadow(0 25px 35px rgba(50, 30, 20, .25))
}

.section {
	padding: 90px 0
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 36px
}

.section-head h2 {
	font-family: Georgia, serif;
	font-size: 42px;
	margin: 0;
	font-weight: 500
}

.section-head p {
	color: var(--muted);
	max-width: 520px
}

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

.product-card {
	position: relative
}

 

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

.product-card:hover img {
	transform: scale(1.035)
}

.badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #fff;
	padding: 6px 10px;
	font-size: 11px;
	letter-spacing: .08em
}

.product-info {
	padding: 15px 2px
}

.product-info h3 {
	font-size: 15px;
	margin: 0 0 5px
}

.price {
	font-weight: 700
}

.old {
	color: #999;
	text-decoration: line-through;
	margin-right: 8px;
	font-weight: 400
}

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

.cat {
	position: relative;
	 height: 330px;
	overflow: hidden;
	background: #ddd
}

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

.cat:hover img {
	transform: scale(1.04)
}

.cat span {
	position: absolute;
	left: 24px;
	bottom: 24px;
	background: #fff;
	padding: 12px 18px;
	font-family: Georgia, serif;
	font-size: 22px
}

.story {
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #2d211b;
	color: #fff
}

.story-art {
	min-height: 480px;
	background: linear-gradient(145deg, #9c6a4c, #4a2d20);
	display: grid;
	place-items: center
}

.story-art img {
	width: 70%
}

.story-copy {
	padding: 75px;
	display: flex;
	flex-direction: column;
	justify-content: center
}

.story-copy h2 {
	font: 500 46px/1.1 Georgia, serif;
	margin: 14px 0
}

.story-copy p {
	color: #d8cec7
}

.footer {
	padding: 65px 0 25px;
	background: #191411;
	color: #eee
}

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

.footer h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .12em
}

.footer a,
.footer p {
	display: block;
	color: #bdb3ac;
	margin: 8px 0
}

.copyright {
	border-top: 1px solid #3a302b;
	margin-top: 35px;
	padding-top: 20px;
	color: #8f8580;
	font-size: 12px
}

.page-hero {
	padding: 75px 0 45px
}

.page-hero h1 {
	font: 500 54px Georgia, serif;
	margin: 0 0 10px
}

.breadcrumbs {
	font-size: 13px;
	color: var(--muted)
}

.shop-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 40px
}

.filter h4 {
	margin: 24px 0 10px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .1em
}

.filter label {
	display: block;
	color: var(--muted);
	margin: 8px 0;
	font-size: 14px
}

.toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 22px
}

.select {
	padding: 10px 34px 10px 12px;
	border: 1px solid var(--line);
	background: #fff
}

.product-page {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 58px;
	padding: 55px 0 95px
}

.gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px
}

.gallery img {
	background: #eee;
	width: 100%
}

.details {
	position: sticky;
	top: 110px;
	align-self: start
}

.details h1 {
	font: 500 46px Georgia, serif;
	margin: 5px 0 14px
}

.rating {
	font-size: 13px;
	color: var(--muted)
}

.details .pricebig {
	font-size: 24px;
	font-weight: 700;
	margin: 20px 0
}

.swatches {
	display: flex;
	gap: 10px
}

.swatch {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid white;
	outline: 1px solid #aaa
}

.qtyrow {
	display: flex;
	gap: 10px;
	margin: 25px 0
}

.qty {
	display: flex;
	border: 1px solid var(--line)
}

.qty button,
.qty input {
	width: 44px;
	border: 0;
	background: #fff;
	text-align: center
}

.accordion {
	border-top: 1px solid var(--line);
	margin-top: 28px
}

.accordion details {
	border-bottom: 1px solid var(--line);
	padding: 15px 0
}

.accordion summary {
	cursor: pointer;
	font-weight: 600
}

.checkout {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 55px;
	padding-bottom: 90px
}

.form-card,
.summary {
	background: #fff;
	border: 1px solid var(--line);
	padding: 28px
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px
}

.field {
	display: flex;
	flex-direction: column;
	gap: 7px
}

.field.full {
	grid-column: 1/-1
}

.field label {
	font-size: 13px
}

.field input,
.field select,
.field textarea {
	padding: 13px;
	border: 1px solid var(--line);
	background: #fff
}

.summary {
	height: max-content;
	position: sticky;
	top: 110px
}

.sumrow {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--line)
}

.sumprod {
	display: grid;
	grid-template-columns: 70px 1fr auto;
	gap: 12px;
	align-items: center
}

.sumprod img {
	background: #eee
}

.drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .38);
	opacity: 0;
	pointer-events: none;
	transition: .3s;
	z-index: 60
}

.drawer {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: min(430px, 92vw);
	background: #fff;
	z-index: 999;
	transform: translateX(100%);
	transition: .35s;
	padding: 26px;
	display: flex;
	flex-direction: column
}

.drawer.open {
	transform: none
}

.drawer-overlay.open {
	opacity: 1;
	pointer-events: auto
}

.drawer-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--line);
	padding-bottom: 18px
}

.cart-item {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	gap: 14px;
	padding: 22px 0;
	border-bottom: 1px solid var(--line)
}

.cart-item img {
	background: #eee
}

.drawer-bottom {
	margin-top: auto
}

.mobile-toggle {
	display: none
}

.notice {
	background: #f0e8df;
	padding: 13px;
	text-align: center;
	font-size: 13px
}

.lookbook {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 18px
}

.lookbook img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #eee
}

.lookbook img:first-child {
	grid-row: span 2
}
ul#menu-help-menu {
    padding: 0px;
    list-style: none;
}

.header {
	position: relative;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header .nav {
	position: relative;
	min-height: 84px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
}

.navlinks {
	justify-self: start;
}

.navlinks ul {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navlinks a {
	color: #191919;
	font-size: 16px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.navlinks a:hover {
	opacity: 0.55;
}

.logo {
	justify-self: center;
	color: #17120f;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 8px;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.header-logo-image {
	display: block;
	width: auto;
	max-width: 190px;
	max-height: 48px;
	object-fit: contain;
}

.icons {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 8px;
}

.iconbtn,
.cart-link {
	color: #171717;
	background: transparent;
	border: 0;
	text-decoration: none;
}

.iconbtn {
	width: 42px;
	height: 42px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.iconbtn:hover {
	background: #f3f0ec;
	transform: translateY(-1px);
}

.iconbtn svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cart-link {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 5px 12px 5px 8px;
	border-radius: 30px;
	transition: background-color 0.2s ease;
}

.cart-link:hover {
	background: #f3f0ec;
}

.cart-icon-wrap {
	position: relative;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cart-icon-wrap svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cart-count {
	position: absolute;
	top: -4px;
	right: -6px;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #24150f;
	border: 2px solid #fff;
	border-radius: 20px;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
}

.cart-label {
	font-size: 16px;
	white-space: nowrap;
}

.mobile-toggle {
	display: none;
}

.mobile-panel,
.search-panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	display: none;
	background: #fff;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.mobile-panel.is-open,
.search-panel.is-open {
	display: block;
}

.search-panel {
	padding: 22px;
}

.search-panel form {
	max-width: 700px;
	margin: 0 auto;
	display: flex;
}

.search-panel input[type="search"] {
	width: 100%;
	min-height: 50px;
	padding: 10px 18px;
	border: 1px solid #d8d2cc;
	border-radius: 30px 0 0 30px;
	outline: none;
}

.search-panel input[type="submit"] {
	min-height: 50px;
	padding: 10px 24px;
	color: #fff;
	background: #24150f;
	border: 0;
	border-radius: 0 30px 30px 0;
	cursor: pointer;
}
.admin-bar .header {
  
    height: 100px;
}

.header .nav {
    min-height: unset !important;
    height: 100%;
}
@media (max-width: 768px) {

	img.header-logo-image.istyles24-brand-logo {
    max-width: 215px;
    max-height: unset;
}
	.header .nav {
		min-height: 70px;
		grid-template-columns: 44px 1fr auto;
		gap: 10px;
	}

	.navlinks {
		display: none;
	}

	.mobile-toggle {
		display: inline-flex;
		justify-self: start;
	}

	.logo {
		justify-self: center;
		font-size: 21px;
		letter-spacing: 5px;
	}

	.header-logo-image {
		max-width: 135px;
		max-height: 38px;
	}

	.icons {
		gap: 0;
	}

	.account-link {
		display: none;
	}

	.iconbtn {
		width: 38px;
		height: 38px;
	}

	.cart-link {
		min-height: 40px;
		padding: 3px;
	}

	.cart-label {
		display: none;
	}

	.cart-icon-wrap {
		width: 36px;
		height: 36px;
	}

	.mobile-panel {
		padding: 20px;
	}

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

	.mobile-panel li + li {
		border-top: 1px solid #eee;
	}

	.mobile-panel a {
		display: block;
		padding: 14px 4px;
		color: #171717;
		text-decoration: none;
	}
}
@media(max-width:900px) {
	.navlinks {
		display: none
	}

	.mobile-toggle {
		display: block
	}

	.hero {
		grid-template-columns: 1fr
	}

	.hero-copy {
		padding: 75px 7%
	}

	.hero-art {
		padding-top: 0
	}

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

	.category-grid,
	.story,
	.product-page,
	.checkout,
	.shop-layout {
		grid-template-columns: 1fr
	}

	.filter {
		display: none
	}

	.story-copy {
		padding: 50px 7%
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr
	}

	.details,
	.summary {
		position: static
	}

	.gallery {
		grid-template-columns: 1fr 1fr
	}

	.lookbook {
		grid-template-columns: 1fr 1fr
	}

	.lookbook img:first-child {
		grid-row: auto;
		grid-column: 1/-1
	}
}

@media(max-width:560px) {
	.nav {
		grid-template-columns: auto 1fr auto
	}

	.logo {
		text-align: center;
		font-size: 19px
	}

	.icons {
		gap: 10px
	}

	.hero h1 {
		font-size: 48px
	}

	.section {
		padding: 65px 0
	}

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

	.section-head {
		display: block
	}

	.section-head h2 {
		font-size: 34px
	}

	.category-grid {
		grid-template-columns: 1fr
	}

	.cat {
		min-height: 320px
	}

	.gallery {
		grid-template-columns: 1fr
	}

	.form-grid {
		grid-template-columns: 1fr
	}

	.field.full {
		grid-column: auto
	}

	.footer-grid {
		grid-template-columns: 1fr
	}

	.product-page {
		gap: 30px
	}

	.details h1 {
		font-size: 38px
	}
}

/* Glossy luxury refresh */
:root {
	--ink: #120d0b;
	--muted: #6e625c;
	--paper: #faf7f4;
	--sand: #e9ded6;
	--tan: #c78f64;
	--brown: #5d2c20;
	--line: rgba(84, 56, 42, .16);
	--gold: #c99a5f;
	--shadow: 0 24px 70px rgba(51, 24, 12, .16)
}

body {
	background: radial-gradient(circle at 15% 0%, #fff 0, #faf7f4 35%, #f3ece7 100%);
	font-family: Inter, Arial, sans-serif
}

.topbar {
	background: linear-gradient(90deg, #170d09, #3c1e13, #170d09);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset
}

.header {
	background: rgba(255, 252, 249, .82);
	backdrop-filter: blur(18px) saturate(150%);
	box-shadow: 0 10px 35px rgba(49, 28, 18, .06)
}

.logo {
    font-weight: 600;
    text-shadow: 0 1px 0 #fff;
    font-family: Georgia, serif;
    font-size: 25px;
    letter-spacing: .28em;
    text-transform: uppercase;
}
.hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(125deg, #f7eee8 0%, #ead8ca 45%, #cda98f 100%)
}

.hero:before {
	content: "";
	position: absolute;
	inset: -20%;
	background: radial-gradient(circle at 74% 25%, rgba(255, 255, 255, .72), transparent 28%), linear-gradient(115deg, transparent 45%, rgba(255, 255, 255, .28) 52%, transparent 60%);
	pointer-events: none
}

.hero-copy,
.hero-art {
	position: relative;
	z-index: 1
}

.hero-art {
	padding: 55px
}

.hero-art img {
	height: 560px;
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
	box-shadow: 0 35px 90px rgba(49, 22, 10, .28), inset 0 1px 0 rgba(255, 255, 255, .7);
	filter: saturate(.92) contrast(1.04)
}

.hero h1 {
	letter-spacing: -.035em;
	text-shadow: 0 2px 0 rgba(255, 255, 255, .45)
}

.btn {
	border-radius: 999px
}

.btn.dark {
	background: linear-gradient(135deg, #180f0b, #4d291b);
	border-color: transparent;
	box-shadow: 0 14px 32px rgba(56, 26, 13, .25)
}

.product-card {
	border-radius: 22px;
	transition: .35s
}

.product-card:hover {
	transform: translateY(-8px)
}

 

 

.product-card:hover .product-img:after {
	transform: translateX(120%)
}

.product-img img {
	filter: saturate(.92) contrast(1.04)
}

.product-info {
	padding: 18px 6px 8px
}

.product-info h3 {
	font-size: 16px
}

.price {
	color: #472418
}

.cat {
	border-radius: 26px;
	box-shadow: 0 24px 60px rgba(49, 26, 15, .16)
}

.cat:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20, 10, 5, .38), transparent 55%)
}

.cat span {
	z-index: 2;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(28, 15, 9, .18);
	backdrop-filter: blur(8px)
}

.story {
	margin: 30px auto;
	width: min(1380px, 96%);
	border-radius: 34px;
	overflow: hidden;
	box-shadow: 0 35px 90px rgba(38, 18, 10, .25);
	background: linear-gradient(135deg, #1c100c, #4f281b)
}

.story-art img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.form-card,
.summary,
.drawer {
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(16px);
	box-shadow: var(--shadow)
}

.form-card,
.summary {
	border-radius: 24px
}

.field input,
.field select,
.field textarea,
.select {
	border-radius: 12px;
	background: rgba(255, 255, 255, .86)
}

.gallery img {
	border-radius: 20px;
	box-shadow: 0 18px 45px rgba(50, 28, 18, .12);
	aspect-ratio: 1/1.12;
	object-fit: cover
}

.drawer {
	box-shadow: -28px 0 80px rgba(20, 10, 5, .24)
}

.cart-item img,
.sumprod img {
	width: 90px;
	height: 105px;
	object-fit: cover;
	border-radius: 14px
}

.footer {
	background: linear-gradient(135deg, #130b08, #2f1810)
}

@media(max-width:900px) {
	.hero-art img {
		height: 460px
	}

	.story {
		width: 94%
	}
}

/* WordPress + WooCommerce integration */
.admin-bar .header {
	top: 32px
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0
}

.custom-logo {
	max-height: 54px;
	width: auto
}

.site-main {
	min-height: 55vh
}

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

.navlinks li {
	margin: 0
}

.navlinks .current-menu-item>a,
.navlinks .current_page_item>a {
	color: var(--brown)
}

.mobile-panel {
	display: none
}

.mobile-panel.open {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	padding: 20px 5%;
	box-shadow: 0 20px 35px rgba(0, 0, 0, .1)
}

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

.mobile-panel li {
	margin: 12px 0
}

.search-panel {
	display: none;
	position: absolute;
	right: 5%;
	top: 100%;
	background: #fff;
	padding: 14px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	z-index: 50
}

.search-panel.open {
	display: block
}

.search-panel input {
	padding: 11px 13px;
	border: 1px solid var(--line);
	min-width: 250px
}

.woocommerce .woocommerce-breadcrumb {
	margin: 0;
	color: var(--muted);
	font-size: 13px
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--muted)
}

.woocommerce-notices-wrapper {
	width: min(1280px, 90%);
	margin: 22px auto 0
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border: 0;
	border-radius: 14px;
	background: #f0e8df;
	padding: 16px 20px 16px 50px
}

.woocommerce-message:before,
.woocommerce-info:before {
	color: var(--brown)
}

.woocommerce-error {
	border-left: 4px solid #b93434
}

.woocommerce-error:before {
	color: #b93434
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border-radius: 999px;
	background: linear-gradient(135deg, #180f0b, #4d291b);
	color: #fff;
	padding: 13px 22px;
	font-weight: 600
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: #180f0b;
	color: #fff
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin: 0 !important
}

.woocommerce ul.products:before,
.woocommerce ul.products:after {
	display: none
}

.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important
}
.woocommerce ul.products li.product a img {
    margin: 0 auto;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 16px;
	padding: 16px 6px 5px
}

.woocommerce ul.products li.product .price {
	padding: 0 6px;
	color: #472418;
	font-size: 15px
}

.woocommerce span.onsale {
	min-width: auto;
	min-height: auto;
	line-height: 1;
	border-radius: 0;
	top: 14px;
	left: 14px;
	right: auto;
	background: #fff;
	color: var(--ink);
	padding: 7px 10px;
	font-size: 11px;
	letter-spacing: .08em
}

.woocommerce-result-count {
	margin: 12px 0
}

.woocommerce-ordering {
	margin: 0
}

.woocommerce-ordering select {
	padding: 10px 34px 10px 12px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 12px
}

.wc-pagination {
	margin-top: 45px
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	margin: 0 4px
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	padding: 0
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--brown);
	color: #fff
}

.filter .widget {
	margin-bottom: 28px
}

.filter .widget-title {
	margin: 0 0 12px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .1em
}

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

.filter li {
	margin: 8px 0;
	color: var(--muted);
	font-size: 14px
}

.filter a {
	color: var(--muted)
}

.filter .count {
	float: right
}

.shop-products .grid {
	grid-template-columns: repeat(3, 1fr)
}

.product-card .button {
	margin: 5px 6px 0 !important;
	font-size: 12px;
	padding: 10px 16px !important
}

.product-card .added_to_cart {
	font-size: 12px;
	margin-left: 8px
}

.product-gallery-main {
	grid-column: 1/-1
}

.product-gallery-main img {
	width: 100%
}

.woocommerce-product-gallery__image {
	overflow: hidden
}

.details form.cart {
	display: flex;
	gap: 10px;
	margin: 25px 0 !important
}

.details form.cart .quantity {
	margin: 0 !important
}

.details .quantity .qty {
	height: 48px;
	border: 1px solid var(--line);
	border-radius: 999px
}

.details .single_add_to_cart_button {
	flex: 1 !important
}

.details .product_meta {
	font-size: 13px;
	color: var(--muted);
	margin-top: 22px
}

.details .product_meta>span {
	display: block;
	margin: 6px 0
}

.details .woocommerce-product-details__short-description {
	color: var(--muted);
	line-height: 1.7
}

.details .woocommerce-variation-price {
	margin: 15px 0
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: #472418
}

.woocommerce div.product .stock {
	color: #4d6d4d
}

.woocommerce-tabs {
	width: min(1280px, 90%);
	margin: 0 auto 80px
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: 0;
	background: transparent
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before {
	border-bottom-color: var(--line)
}

.related.products {
	width: min(1280px, 90%);
	margin: 0 auto 80px
}

.related.products>h2 {
	font: 500 38px Georgia, serif
}

.woocommerce table.shop_table {
	border: 1px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
	background: #fff
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 16px
}

.woocommerce-cart-form img {
	border-radius: 12px
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: 180px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 999px
}

.cart_totals {
	background: #fff;
	padding: 25px;
	border: 1px solid var(--line);
	border-radius: 22px
}

.cart_totals h2 {
	font: 500 30px Georgia, serif
}

.wc-proceed-to-checkout a.checkout-button {
	font-size: 15px !important
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout-review-order {
	background: #fff;
	border: 1px solid var(--line);
	padding: 28px;
	border-radius: 24px;
	box-shadow: var(--shadow)
}

.woocommerce-checkout .col2-set {
	width: 58%;
	float: left
}

.woocommerce-checkout-review-order {
	width: 38%;
	float: right
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	padding: 13px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	height: auto
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 24px
}

.woocommerce-checkout #payment {
	background: #f0e8df;
	border-radius: 14px
}

.woocommerce-checkout #payment div.payment_box {
	background: #fff
}

.woocommerce-checkout #payment div.payment_box:before {
	border-bottom-color: #fff
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 25%
}

.woocommerce-account .woocommerce-MyAccount-content {
	width: 72%;
	background: #fff;
	border: 1px solid var(--line);
	padding: 25px;
	border-radius: 20px
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 20px;
	overflow: hidden
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 13px 18px;
	border-bottom: 1px solid var(--line)
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	background: #f0e8df
}

.drawer .widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	height: 100%
}

.drawer .woocommerce-mini-cart {
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: auto
}

.drawer .woocommerce-mini-cart-item {
	display: grid; 
	gap: 14px;
	position: relative;
	padding: 18px 22px 18px 0;
	border-bottom: 1px solid var(--line)
}

.drawer .woocommerce-mini-cart-item img {
	width: 76px;
	height: 90px;
	object-fit: cover;
	border-radius: 12px;
	float: none;
	margin: 0
}

.drawer .remove_from_cart_button {
	position: absolute;
	right: 0;
	top: 18px;
	font-size: 22px
}

.drawer .quantity {
	display: block;
	margin-top: 6px;
	color: var(--muted)
}

.drawer .woocommerce-mini-cart__total {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	padding: 18px 0;
	border-top: 1px solid var(--line)
}

.drawer .woocommerce-mini-cart__buttons {
	display: grid;
	gap: 10px
}

.drawer .woocommerce-mini-cart__buttons a {
	text-align: center
}

.drawer .woocommerce-mini-cart__empty-message {
	margin: auto;
	text-align: center
}

.page-content-area {
	width: min(1280px, 90%);
	margin: 60px auto
}

.entry-title {
	font: 500 48px Georgia, serif
}

.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
	max-width: 1280px;
	margin: 40px auto 80px
}

.woocommerce-privacy-policy-text {
	font-size: 13px;
	color: var(--muted)
}

@media(max-width:900px) {
	.admin-bar .header {
		top: 46px
	}

	.woocommerce ul.products,
	.shop-products .grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.woocommerce-checkout .col2-set,
	.woocommerce-checkout-review-order {
		width: 100%;
		float: none;
		margin-bottom: 25px
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
		float: none;
		margin-bottom: 20px
	}
}

@media(max-width:560px) {

	.woocommerce ul.products,
	.shop-products .grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 14px
	}

	.woocommerce table.shop_table_responsive tr td {
		padding: 12px
	}

	.entry-title {
		font-size: 38px
	}

	.search-panel {
		right: 3%
	}
}

/* Home page - Most Loved: 4 products in one row */
.home .section ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px 20px;
    margin: 0;
}

.home .section ul.products::before,
.home .section ul.products::after {
    display: none !important;
}

.home .section ul.products li.product {
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.home .section ul.products li.product:nth-child(2n),
.home .section ul.products li.product:nth-child(3n),
.home .section ul.products li.product:nth-child(4n) {
    margin-right: 0 !important;
}

/* Keep all product images the same size */
.home .section ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .home .section ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Mobile */
@media (max-width: 575px) {

	img.header-logo-image.istyles24-brand-logo {
    max-width: 200px;
    max-height: unset;
}
    .home .section ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px 12px;
    }
}

ul#menu-footer-shop {
    padding: 0px;
    list-style: none;
}
/* Colour variation circles */

.styles-variation-swatches {
	margin: 20px 0;
}

.styles-swatch-heading {
	margin-bottom: 12px;
	color: #241b17;
	font-size: 13px;
}

.styles-swatch-heading strong {
	font-weight: 600;
}

.styles-swatch-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.styles-colour-swatch {
	position: relative;
	width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px;
	background: transparent;
	border: 1px solid #aaa29c;
	border-radius: 50%;
	cursor: pointer;
	transition:
		border-color 0.2s ease,
		transform 0.2s ease,
		opacity 0.2s ease;
}

.styles-colour-swatch:hover {
	border-color: #2d1b14;
	transform: translateY(-1px);
}

.styles-colour-swatch-inner {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.styles-colour-swatch.is-selected {
	border-color: #2d1b14;
	box-shadow:
		0 0 0 2px #fbf9f6,
		0 0 0 3px #2d1b14;
}

.styles-colour-swatch.is-disabled {
	opacity: 0.3;
	cursor: not-allowed;
	transform: none;
}

.styles-colour-swatch.is-disabled::after {
	content: "";
	position: absolute;
	width: 32px;
	height: 1px;
	background: #7e7772;
	transform: rotate(-45deg);
}

/* Hide only the original Colour dropdown.
   Other variation dropdowns such as Size remain visible. */

.variations_form select[name="attribute_pa_colour"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.variations_form label[for="pa_colour"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ==========================================================
   Styles Theme — Single Product Page
   One large image + thumbnails + WooCommerce zoom/lightbox
   ========================================================== */

.single-product-main {
	background: #f5f0eb;
	padding: 18px 0 70px;
}

.single-product-main .container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.product-breadcrumbs {
	margin: 8px 0 26px;
	font-size: 11px;
	color: #8b817b;
}

.product-breadcrumbs .woocommerce-breadcrumb {
	margin: 0;
	font-size: inherit;
	color: inherit;
}

.product-breadcrumbs a {
	color: inherit;
	text-decoration: none;
}

.styles-product-page {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	gap: 44px;
	align-items: start;
}

/* ---------------- Gallery ---------------- */

.styles-product-gallery {
	min-width: 0;
}

.styles-product-gallery .woocommerce-product-gallery {
	position: relative;
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	overflow: visible;
}

/*
 * Do not use display:grid here.
 * WooCommerce FlexSlider needs this wrapper to remain a normal slide track.
 */
.styles-product-gallery .woocommerce-product-gallery__wrapper {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
}

.styles-product-gallery .flex-viewport {
	overflow: hidden !important;
	border-radius: 14px;
	background: #eee8e2;
}

/* Allow FlexSlider to control the moving gallery track. */
.styles-product-gallery .flex-viewport .woocommerce-product-gallery__image {
	display: block !important;
}

.styles-product-gallery .flex-viewport .woocommerce-product-gallery__image img {
	visibility: visible !important;
	opacity: 1 !important;
}

.styles-product-gallery .woocommerce-product-gallery__image {
	/* FlexSlider controls the slide width and float. */
	margin: 0 !important;
	overflow: hidden;
	border-radius: 14px;
	background: #eee8e2;
}

.styles-product-gallery .woocommerce-product-gallery__image a {
	display: block;
	width: 100%;
	cursor: zoom-in;
}

.styles-product-gallery .woocommerce-product-gallery__image img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1 / 1.08;
	margin: 0 !important;
	object-fit: contain;
	border-radius: 14px;background: #fff;
}

/* Thumbnails below the main image */
.styles-product-gallery .flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
	margin: 12px 0 0 !important;
	padding: 0 !important;
	list-style: none;
	clear: both;
}

.styles-product-gallery .flex-control-thumbs li {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.styles-product-gallery .flex-control-thumbs img {
	display: block;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 1 / 1;
	margin: 0 !important;
	padding: 0;
	object-fit: cover;
	border: 1px solid transparent;
	border-radius: 9px;
	opacity: .62;
	cursor: pointer;
	transition:
		opacity .2s ease,
		border-color .2s ease,
		transform .2s ease;
}

.styles-product-gallery .flex-control-thumbs img:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.styles-product-gallery .flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: #24150f;
}

/* WooCommerce zoom/lightbox trigger */
.styles-product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	top: 12px !important;
	right: 12px !important;
	z-index: 20;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 38px !important;
	height: 38px !important;
	border-radius: 50%;
	background: rgba(255, 255, 255, .94) !important;
	box-shadow: 0 5px 18px rgba(0, 0, 0, .13);
	font-size: 0;
	text-decoration: none;
}

.styles-product-gallery .woocommerce-product-gallery__trigger::before {
	content: "";
	position: absolute;
	width: 13px;
	height: 13px;
	border: 2px solid #24150f;
	border-radius: 50%;
}

.styles-product-gallery .woocommerce-product-gallery__trigger::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 2px;
	background: #24150f;
	transform: translate(8px, 8px) rotate(45deg);
}

/* Hide default FlexSlider arrows; thumbnails control the main image */
.styles-product-gallery .flex-direction-nav {
	display: none !important;
}

.styles-product-gallery .onsale {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 22;
}

/* ---------------- Summary ---------------- */

.styles-product-summary {
	position: sticky;
	top: 110px;
	min-width: 0;
	align-self: start;
}

.admin-bar .styles-product-summary {
	top: 142px;
}

.styles-product-summary-inner {
	width: 100%;
	max-width: 470px;
}

.product-collection-label {
	margin-bottom: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #6b5145;
}

.product-collection-label a {
	color: inherit;
	text-decoration: none;
}

h1.product-title {
    font-family: Georgia, serif;
    margin: 16px 0 22px;
    font-size: clamp(50px, 5.2vw, 72px);
    line-height: .99;
    letter-spacing: -.04em;
    color: #21130f;
    text-shadow: none;
    font-size: 45px;font-weight: 500;
}
.styles-product-summary .belt-top-description p, .styles-product-summary .belt-bottom-description p {
    margin-top: 0;
    margin-bottom: 10px;
    /* max-width: 510px; */
    margin-bottom: 8px;
    color: #624033;
    font-size: 16px;
    line-height: 1.75;
}
.product-rating-row {
	min-height: 20px;
	margin-bottom: 16px;
}

.product-rating-row .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0 !important;
	font-size: 11px;
}

.product-rating-row .star-rating {
	font-size: 12px;
	color: #24150f;
}

.product-rating-row .woocommerce-review-link {
	color: #7f746d;
	text-decoration: none;
}

.product-price {
	margin-bottom: 18px;
}

.product-price .price,
.product-price p.price {
	margin: 0 !important;
	font-size: 21px !important;
	font-weight: 700;
	color: #23130e !important;
}

.product-short-description {
	margin-bottom: 18px;
	font-size: 13px;
	line-height: 1.65;
	color: #514944;
}

.product-short-description p:last-child {
	margin-bottom: 0;
}

/* ---------------- Variations ---------------- */

.product-cart-area form.cart {
	margin: 0 !important;
}

.product-cart-area table.variations {
	width: 100%;
	margin: 0 0 14px !important;
	border: 0;
	border-collapse: collapse;
}

.product-cart-area table.variations tbody,
.product-cart-area table.variations tr,
.product-cart-area table.variations th,
.product-cart-area table.variations td {
	display: block;
	width: 100%;
}

.product-cart-area table.variations tr {
	margin-bottom: 12px;
}

.product-cart-area table.variations th,
.product-cart-area table.variations td {
	padding: 0 !important;
	border: 0;
	text-align: left;
}

.product-cart-area table.variations th.label {
	margin-bottom: 6px;
}

.product-cart-area table.variations th.label label {
	font-size: 12px;
	font-weight: 700;
	color: #2a1a14;
}

.styles-colour-swatches {
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px !important;
	margin: 4px 0 0 !important;
}

.styles-selected-colour-name {
	order: -1;
	flex-basis: 100%;
	min-height: auto !important;
	margin-bottom: 3px;
	font-size: 12px !important;
	font-weight: 500 !important;
	color: #5d514a !important;
}

.styles-colour-swatch {
	width: 27px !important;
	height: 27px !important;
	border-width: 1px !important;
	box-shadow: inset 0 0 0 3px #f5f0eb !important;
}

.styles-colour-swatch.is-selected {
	border-color: #1e100b !important;
	box-shadow:
		inset 0 0 0 3px #f5f0eb,
		0 0 0 1px #1e100b !important;
}

.product-cart-area .reset_variations {
	margin: 5px 0 0 !important;
	font-size: 11px;
	color: #746760;
	text-decoration: underline;
}

/* ---------------- Quantity and button ---------------- */

.product-cart-area .single_variation_wrap {
	margin-top: 4px;
}

.product-cart-area .woocommerce-variation {
	margin-bottom: 10px;
}

.product-cart-area .woocommerce-variation-price .price {
	font-size: 16px;
	font-weight: 700;
	color: #271611;
}

.product-cart-area .woocommerce-variation-add-to-cart,
.product-cart-area form.cart:not(.variations_form) {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 10px;
	align-items: stretch;
}

.product-cart-area .quantity {
	width: 72px;
	margin: 0 !important;
}

.product-cart-area .quantity .qty {
	width: 100% !important;
	height: 44px;
	padding: 0 10px;
	border: 1px solid #d8cec7;
	border-radius: 0;
	background: #fff;
	text-align: center;
	font-size: 13px;
}

.product-cart-area .single_add_to_cart_button {
	width: 100%;
	min-height: 44px;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #382016 !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: .02em;
	text-transform: uppercase;
	box-shadow: none !important;
	transition: opacity .2s ease, transform .2s ease;
}

.product-cart-area .single_add_to_cart_button:hover {
	opacity: .9;
	transform: translateY(-1px);
}

.product-cart-area .single_add_to_cart_button.disabled {
	opacity: .45 !important;
	cursor: not-allowed;
}

.product-notice {
	margin: 12px 0 19px;
	padding: 11px 13px;
	border: 1px solid #e0d7d0;
	background: rgba(255, 255, 255, .35);
	font-size: 10px;
	line-height: 1.45;
	text-align: center;
	color: #6d625c;
}

/* ---------------- Accordions ---------------- */

.product-accordions {
	border-top: 1px solid #d9cfc8;
}

.product-accordion {
	border-bottom: 1px solid #d9cfc8;
}

.product-accordion summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 51px;
	padding: 0 28px 0 0;
	list-style: none;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	color: #25150f;
}

.product-accordion summary::-webkit-details-marker {
	display: none;
}

.product-accordion summary::before {
	content: "+";
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 17px;
	font-weight: 400;
	color: #3c2820;
}

.product-accordion[open] summary::before {
	content: "−";
}

.product-accordion-content {
	padding: 0 26px 17px 0;
	font-size: 11px;
	line-height: 1.65;
	color: #5e554f;
}

.product-accordion-content p {
	margin: 0;
}

/* ---------------- Related products ---------------- */

.single-product .related.products,
.single-product .upsells.products {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 58px 0 20px;
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	margin: 0 0 30px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 400;
	color: #23140f;
}

.single-product .related.products ul.products,
.single-product .upsells.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px;
	margin: 0 !important;
}

.single-product .related.products ul.products::before,
.single-product .related.products ul.products::after,
.single-product .upsells.products ul.products::before,
.single-product .upsells.products ul.products::after {
	display: none;
}

.single-product .related.products ul.products li.product,
.single-product .upsells.products ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
}

.single-product .related.products ul.products li.product img,
.single-product .upsells.products ul.products li.product img {
	 
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 11px;
}

.single-product .related.products ul.products li.product .button,
.single-product .upsells.products ul.products li.product .button {
	display: none;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 991px) {
	.styles-product-page {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.styles-product-summary,
	.admin-bar .styles-product-summary {
		position: static;
		top: auto;
	}

	.styles-product-summary-inner {
		max-width: none;
	}
}

@media (max-width: 700px) {
	.single-product-main {
		padding-top: 8px;
	}

	.single-product-main .container,
	.single-product .related.products,
	.single-product .upsells.products {
		width: min(100% - 24px, 1180px);
	}

	.styles-product-gallery .flex-control-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.styles-product-gallery .woocommerce-product-gallery__image img {
		border-radius: 10px;
	}

	.styles-product-gallery .flex-viewport {
		border-radius: 10px;
	}

	.product-title {
		font-size: 38px;
	}

	.single-product .related.products ul.products,
	.single-product .upsells.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 14px;
	}

	.product-cart-area .woocommerce-variation-add-to-cart,
	.product-cart-area form.cart:not(.variations_form) {
		grid-template-columns: 64px minmax(0, 1fr);
	}
}

footer .logo {
    font-weight: 600;
    /* text-shadow: 0 1px 0 #fff; */
    font-family: Georgia, serif;
    font-size: 25px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #fff;
    justify-self: self-start;
}
/* ==========================================================
   AJAX mini-cart drawer
   ========================================================== */
body.styles-cart-open {
	overflow: hidden;
}

.drawer-overlay {
	visibility: hidden;
}

.drawer-overlay.open {
	visibility: visible;
}

.drawer {
	visibility: hidden;
}

.drawer.open {
	visibility: visible;
}

.drawer .widget_shopping_cart_content {
	min-height: 0;
}

.drawer .woocommerce-mini-cart {
	flex: 1 1 auto;
}

.styles-add-to-cart-error {
	grid-column: 1 / -1;
	margin: 10px 0 0;
	color: #a12622;
	font-size: 12px;
}

.product-cart-area .single_add_to_cart_button.loading {
	position: relative;
	color: transparent !important;
	pointer-events: none;
}

.product-cart-area .single_add_to_cart_button.loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	margin: -8px 0 0 -8px;
	border: 2px solid rgba(255, 255, 255, .45);
	border-top-color: #fff;
	border-radius: 50%;
	animation: styles-cart-spin .7s linear infinite;
}

@keyframes styles-cart-spin {
	to { transform: rotate(360deg); }
}

/* ==========================================================
   WOOCOMMERCE BLOCK CHECKOUT — FINAL FIXED LAYOUT
   ========================================================== */

body.woocommerce-checkout {
	background: #f7f3ef;
}

/* Remove width restrictions inherited from the page template. */
body.woocommerce-checkout .page-content-area,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
	width: 100% !important;
	max-width: none !important;
}

/* Centre the actual checkout block. */
body.woocommerce-checkout .wp-block-woocommerce-checkout {
	width: min(1120px, calc(100% - 40px)) !important;
	max-width: 1120px !important;
	margin: 38px auto 85px !important;
	padding: 0 !important;
}

/*
 * WooCommerce Checkout Block is natively a flex layout.
 * Using flex here is more reliable than replacing it with CSS Grid.
 */
body.woocommerce-checkout .wc-block-checkout {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	justify-content: center !important;
	column-gap: 28px !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Left form card */
body.woocommerce-checkout .wc-block-checkout__main {
	display: block !important;
	flex: 1 1 64% !important;
	flex-basis: 64% !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 30px !important;
	border: 1px solid #ded5ce;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 20px 55px rgba(60, 36, 24, .10);
}

/* Right order summary card */
body.woocommerce-checkout .wc-block-checkout__sidebar {
	position: sticky !important;
	top: 110px !important;
	display: block !important;
	flex: 0 0 36% !important;
	flex-basis: 36% !important;
	width: auto !important;
	max-width: none !important;
	min-width: 340px !important;
	margin: 0 !important;
	padding: 26px !important;
	border: 1px solid #ded5ce;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 20px 55px rgba(60, 36, 24, .10);
}

body.admin-bar.woocommerce-checkout .wc-block-checkout__sidebar {
	top: 142px !important;
}

/* Prevent inner wrappers from becoming narrow. */
body.woocommerce-checkout .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-checkout__contact-fields,
body.woocommerce-checkout .wc-block-checkout__billing-fields,
body.woocommerce-checkout .wc-block-checkout__shipping-fields,
body.woocommerce-checkout .wc-block-checkout__payment-method,
body.woocommerce-checkout .wc-block-components-address-form,
body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-components-totals-wrapper {
	width: 100% !important;
	max-width: none !important;
}

/* Checkout heading */
body.woocommerce-checkout .entry-header,
body.woocommerce-checkout .page-header {
	width: min(1120px, calc(100% - 40px));
	margin: 32px auto 20px;
}

body.woocommerce-checkout .entry-title,
body.woocommerce-checkout h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 5vw, 58px);
	font-weight: 400;
	line-height: 1.05;
	color: #21130f;
}

/* Section titles */
body.woocommerce-checkout .wc-block-components-checkout-step__heading {
	margin-bottom: 15px !important;
}

body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-title {
	font-family: Inter, Arial, sans-serif;
	font-size: 17px !important;
	font-weight: 700 !important;
	line-height: 1.3;
	color: #211713;
}

body.woocommerce-checkout .wc-block-components-checkout-step {
	margin: 0 0 28px !important;
	padding: 0 !important;
}

/* Address layout */
body.woocommerce-checkout .wc-block-components-address-form {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px 10px !important;
}

body.woocommerce-checkout
.wc-block-components-address-form
.wc-block-components-text-input,
body.woocommerce-checkout
.wc-block-components-address-form
.wc-block-components-combobox {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

body.woocommerce-checkout
.wc-block-components-address-form__country,
body.woocommerce-checkout
.wc-block-components-address-form__address_1,
body.woocommerce-checkout
.wc-block-components-address-form__address_2 {
	grid-column: 1 / -1 !important;
}

/* Inputs */
body.woocommerce-checkout .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-combobox,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox-control,
body.woocommerce-checkout .wc-block-components-combobox-control input {
	width: 100% !important;
	max-width: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout
.wc-block-components-combobox
.wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-address-form select {
	min-height: 48px !important;
	padding: 18px 13px 7px !important;
	border: 1px solid #d8cec7 !important;
	border-radius: 9px !important;
	background: #fff !important;
	color: #211713 !important;
	font-size: 13px !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout
.wc-block-components-combobox
.wc-block-components-combobox-control input:focus {
	border-color: #452418 !important;
	box-shadow: 0 0 0 2px rgba(69, 36, 24, .10) !important;
	outline: none !important;
}

/* Payment area */
body.woocommerce-checkout .wc-block-components-radio-control {
	padding: 14px 15px !important;
	border: 0 !important;
	background: #eee5dc;
}

body.woocommerce-checkout .wc-block-components-radio-control__option {
	min-height: 34px;
	padding: 7px 4px !important;
}

/* Order summary */
body.woocommerce-checkout
.wc-block-checkout__sidebar
.wc-block-components-title {
	margin: 0 0 18px !important;
	font-size: 18px !important;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item {
	display: grid !important;
	grid-template-columns: 62px minmax(0, 1fr) auto !important;
	gap: 12px !important;
	padding: 12px 0 !important;
	border-bottom: 1px solid #e2dad3;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__image {
	width: 62px !important;
	margin: 0 !important;
}

body.woocommerce-checkout
.wc-block-components-order-summary-item__image img {
	width: 62px !important;
	height: 72px !important;
	object-fit: cover;
	border-radius: 9px;
}

body.woocommerce-checkout .wc-block-components-product-name {
	font-size: 13px !important;
	font-weight: 700 !important;
	line-height: 1.35;
}

body.woocommerce-checkout .wc-block-components-totals-wrapper {
	padding: 12px 0 !important;
	border-bottom: 1px solid #e2dad3;
}

/* Place order button */
body.woocommerce-checkout
.wc-block-components-checkout-place-order-button {
	width: 100% !important;
	min-height: 50px !important;
	margin-top: 18px !important;
	padding: 0 24px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #3a1d12 !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: .04em;
	text-transform: uppercase;
	box-shadow: 0 12px 25px rgba(58, 29, 18, .16);
}

body.woocommerce-checkout
.wc-block-components-checkout-place-order-button:hover {
	background: #281109 !important;
	color: #fff !important;
}

/* Tablet */
@media (max-width: 900px) {
	body.woocommerce-checkout .wp-block-woocommerce-checkout {
		width: min(700px, calc(100% - 28px)) !important;
	}

	body.woocommerce-checkout .wc-block-checkout {
		flex-direction: column !important;
		row-gap: 25px !important;
	}

	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-checkout__sidebar {
		flex: 0 0 auto !important;
		width: 100% !important;
		min-width: 0 !important;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar {
		position: static !important;
		top: auto !important;
	}
}

/* Mobile */
@media (max-width: 600px) {
	body.woocommerce-checkout .wp-block-woocommerce-checkout {
		width: calc(100% - 20px) !important;
		margin-top: 25px !important;
	}

	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-checkout__sidebar {
		padding: 20px 16px !important;
		border-radius: 13px;
	}

	body.woocommerce-checkout .wc-block-components-address-form {
		grid-template-columns: 1fr !important;
	}

	body.woocommerce-checkout
	.wc-block-components-address-form > * {
		grid-column: 1 / -1 !important;
	}

	body.woocommerce-checkout
	.wc-block-components-order-summary-item {
		grid-template-columns: 54px minmax(0, 1fr) auto !important;
		gap: 9px !important;
	}

	body.woocommerce-checkout
	.wc-block-components-order-summary-item__image,
	body.woocommerce-checkout
	.wc-block-components-order-summary-item__image img {
		width: 54px !important;
		height: 64px !important;
	}
}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    float: left;
    margin-right: 4px;
    /* width: 32px; */
    height: 100px;
    box-shadow: none;
    width: 90px;
    height: 105px;
    object-fit: cover;
    border-radius: 14px;
}

/* ==========================================================
   FINAL MINI-CART DRAWER PRODUCT LAYOUT
   Image | title | price/quantity | remove
   Keep this block at the very end of style.css.
   ========================================================== */

.drawer {
	width: min(440px, 100vw) !important;
	padding: 0 !important;
	background: #fff !important;
	overflow: hidden !important;z-index: 9999;
}

.drawer-head {
	flex: 0 0 auto;
	padding: 26px 26px 22px !important;
	border-bottom: 1px solid #e2dad4 !important;
}

.drawer .widget_shopping_cart_content {
	display: flex !important;
	flex-direction: column !important;
	height: calc(100vh - 82px) !important;
	min-height: 0 !important;
	padding: 0 26px 26px !important;
}

.drawer .woocommerce-mini-cart {
	flex: 1 1 auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	list-style: none !important;
	scrollbar-width: thin;
}

/* One product row */
.drawer .woocommerce-mini-cart-item {
	position: relative !important;
	display: grid !important;
	grid-template-columns: 92px minmax(0, 1fr) auto !important;
	grid-template-rows: auto auto !important;
	column-gap: 14px !important;
	row-gap: 7px !important;
	min-height: 150px !important;
	margin: 0 !important;
	padding: 22px 34px 22px 0 !important;
	border-bottom: 1px solid #e2dad4 !important;
}

/*
 * WooCommerce puts the product image and title in the same link.
 * display:contents lets the image and title participate in the row grid.
 */
.drawer .woocommerce-mini-cart-item > a:not(.remove_from_cart_button) {
	display: contents !important;
	color: #18120f !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	text-decoration: none !important;
}

/* Product image */
.drawer .woocommerce-mini-cart-item img,
.drawer .woocommerce-mini-cart-item > a:not(.remove_from_cart_button) img,
.woocommerce .drawer ul.cart_list li img,
.woocommerce .drawer ul.product_list_widget li img {
	grid-column: 1 !important;
	grid-row: 1 / span 2 !important;
	width: 92px !important;
	height: 112px !important;
	max-width: none !important;
	margin: 0 !important;
	float: none !important;
	object-fit: cover !important;
	border-radius: 13px !important;
	background: #f1ece7 !important;
	box-shadow: none !important;
}

/* Variation details such as colour and size */
.drawer .woocommerce-mini-cart-item dl.variation {
	grid-column: 2 !important;
	grid-row: 2 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	font-size: 13px !important;
	line-height: 1.5 !important;
	color: #4c443f !important;
}

.drawer .woocommerce-mini-cart-item dl.variation dt,
.drawer .woocommerce-mini-cart-item dl.variation dd {
	display: inline !important;
	float: none !important;
	margin: 0 3px 0 0 !important;
	padding: 0 !important;
}

.drawer .woocommerce-mini-cart-item dl.variation dd p {
	display: inline !important;
	margin: 0 !important;
}

/* Quantity and line price */
.drawer .woocommerce-mini-cart-item .quantity {
	grid-column: 2 / 4 !important;
	grid-row: 2 !important;
	align-self: end !important;
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #3c342f !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
}

/* Remove cross */
.drawer .woocommerce-mini-cart-item .remove_from_cart_button {
	position: absolute !important;
	top: 21px !important;
	right: 0 !important;
	z-index: 3 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 26px !important;
	height: 26px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: #17110e !important;
	font-size: 23px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-decoration: none !important;
}

.drawer .woocommerce-mini-cart-item .remove_from_cart_button:hover {
	background: #3a1d12 !important;
	color: #fff !important;
}

/* Bottom area */
.drawer .woocommerce-mini-cart__total {
	flex: 0 0 auto !important;
	margin: 0 !important;
	padding: 23px 0 18px !important;
	border-top: 0 !important;
	border-bottom: 1px solid #e2dad4 !important;
	font-size: 16px !important;
}

.drawer .woocommerce-mini-cart__total strong,
.drawer .woocommerce-mini-cart__total .woocommerce-Price-amount {
	font-size: 17px !important;
	font-weight: 700 !important;
	color: #17110e !important;
}

.drawer .mini-cart-shipping-note {
	flex: 0 0 auto !important;
	margin: 13px 0 17px !important;
	font-size: 13px !important;
	color: #736963 !important;
}

.drawer .woocommerce-mini-cart__buttons {
	flex: 0 0 auto !important;
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 0 !important;
}

.drawer .woocommerce-mini-cart__buttons a {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 52px !important;
	margin: 0 !important;
	padding: 0 20px !important;
	border: 1px solid #3a1d12 !important;
	border-radius: 999px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: .045em !important;
	text-align: center !important;
	text-transform: uppercase !important;
}

/* View cart */
.drawer .woocommerce-mini-cart__buttons .wc-forward:not(.checkout) {
	display: flex !important;
	background: #fff !important;
	color: #3a1d12 !important;
}

/* Proceed to checkout */
.drawer .woocommerce-mini-cart__buttons .checkout {
	background: #3a1d12 !important;
	color: #fff !important;
	box-shadow: 0 10px 22px rgba(58, 29, 18, .14) !important;
}

.drawer .woocommerce-mini-cart__buttons .checkout:hover {
	background: #271109 !important;
	color: #fff !important;
}

/* Mobile */
@media (max-width: 480px) {
	.drawer-head {
		padding: 22px 20px 18px !important;
	}

	.drawer .widget_shopping_cart_content {
		padding: 0 20px 22px !important;
	}

	.drawer .woocommerce-mini-cart-item {
		grid-template-columns: 80px minmax(0, 1fr) auto !important;
		min-height: 132px !important;
		padding: 20px 32px 20px 0 !important;
		column-gap: 12px !important;
	}

	.drawer .woocommerce-mini-cart-item img,
	.drawer .woocommerce-mini-cart-item > a:not(.remove_from_cart_button) img,
	.woocommerce .drawer ul.cart_list li img,
	.woocommerce .drawer ul.product_list_widget li img {
		width: 80px !important;
		height: 98px !important;
	}

	.drawer .woocommerce-mini-cart-item > a:not(.remove_from_cart_button) {
		font-size: 15px !important;
	}

		img.header-logo-image.istyles24-brand-logo {
    max-width: 200px;
    max-height: unset;
}
}

/* ==========================================================
   FINAL MINI-CART ITEM LAYOUT
   Image | Product name | Quantity + price | Remove
   Add at the VERY END of style.css
   ========================================================== */

.drawer .woocommerce-mini-cart-item {
	position: relative !important;
	display: grid !important;
	grid-template-columns:
		92px
		minmax(0, 1fr)
		auto
		26px !important;
	grid-template-rows: auto !important;
	column-gap: 14px !important;
	align-items: start !important;
	min-height: 135px !important;
	margin: 0 !important;
	padding: 22px 0 !important;
	border-bottom: 1px solid #e2dad4 !important;
}

/*
 * The image and product name are inside the same link.
 * Turn that link into its own two-column grid.
 */
.drawer
.woocommerce-mini-cart-item
> a:not(.remove_from_cart_button) {
	grid-column: 1 / 3 !important;
	grid-row: 1 !important;

	display: grid !important;
	grid-template-columns: 92px minmax(0, 1fr) !important;
	column-gap: 14px !important;
	align-items: start !important;

	width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;

	color: #18120f !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	text-decoration: none !important;
}

/* Product image */
.drawer
.woocommerce-mini-cart-item
> a:not(.remove_from_cart_button)
img,
.woocommerce
.drawer
ul.cart_list
li
img,
.woocommerce
.drawer
ul.product_list_widget
li
img {
	grid-column: 1 !important;
	grid-row: 1 !important;

	width: 92px !important;
	height: 110px !important;
	max-width: none !important;
	margin: 0 !important;
	float: none !important;

	object-fit: cover !important;
	border-radius: 13px !important;
	background: #f1ece7 !important;
	box-shadow: none !important;
}

/*
 * Quantity and amount on the same top row,
 * immediately after the product name.
 */
.drawer .woocommerce-mini-cart-item .quantity {
	grid-column: 3 !important;
	grid-row: 1 !important;
	align-self: start !important;

	display: block !important;
	margin: 1px 0 0 !important;
	padding: 0 !important;

	color: #3c342f !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	white-space: nowrap !important;
}

/* Price amount */
.drawer
.woocommerce-mini-cart-item
.quantity
.woocommerce-Price-amount {
	color: #18120f !important;
	font-weight: 700 !important;
}

/* Remove cross */
.drawer
.woocommerce-mini-cart-item
.remove_from_cart_button {
	position: static !important;
	grid-column: 4 !important;
	grid-row: 1 !important;
	align-self: start !important;

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

	width: 26px !important;
	height: 26px !important;
	margin: -4px 0 0 !important;
	padding: 0 !important;

	border: 0 !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: #17110e !important;

	font-size: 22px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-decoration: none !important;
}

.drawer
.woocommerce-mini-cart-item
.remove_from_cart_button:hover {
	background: #3a1d12 !important;
	color: #fff !important;
}

/* Stop product names from breaking unnecessarily */
.drawer
.woocommerce-mini-cart-item
> a:not(.remove_from_cart_button) {
	overflow-wrap: normal !important;
	word-break: normal !important;
}

/* Mobile */
@media (max-width: 480px) {

	.drawer .woocommerce-mini-cart-item {
		grid-template-columns:
			76px
			minmax(0, 1fr)
			auto
			24px !important;
		column-gap: 10px !important;
		min-height: 115px !important;
		padding: 18px 0 !important;
	}

	.drawer
	.woocommerce-mini-cart-item
	> a:not(.remove_from_cart_button) {
		grid-template-columns: 76px minmax(0, 1fr) !important;
		column-gap: 10px !important;
		font-size: 14px !important;
	}

	.drawer
	.woocommerce-mini-cart-item
	> a:not(.remove_from_cart_button)
	img,
	.woocommerce
	.drawer
	ul.cart_list
	li
	img,
	.woocommerce
	.drawer
	ul.product_list_widget
	li
	img {
		width: 76px !important;
		height: 92px !important;
	}

	.drawer .woocommerce-mini-cart-item .quantity {
		font-size: 13px !important;
	}
}

.wc-block-components-radio-control__option-layout {
  
    padding-left: 45px;
}.logo {
    font-weight: 600;
    text-shadow: 0 1px 0 #fff;
    font-family: Georgia, serif;
    font-size: 25px;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.logo span {
    letter-spacing: 0;
    margin-left: -0.15em; /* adjust until it sits perfectly */
    display: inline-block;
}

/* ==========================================================
   iStyles24 brand integration
   Keeps the original brown luxury palette while using the
   supplied iStyles24 red / pink / purple colours as accents.
   ========================================================== */
:root {
	--istyles-red: #ef1c24;
	--istyles-pink: #d70b67;
	--istyles-purple: #672a91;
	--istyles-gradient: linear-gradient(90deg, var(--istyles-red) 0%, var(--istyles-pink) 52%, var(--istyles-purple) 100%);
}

/* Supplied logo */
.header .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0;
	text-shadow: none;
}

.header-logo-image,
.header .custom-logo {
	display: block;
	width: auto;
	max-width: 245px;
	max-height: 76px;
	object-fit: contain;
}

.header .nav {
	min-height: 94px;
}

/* Fine brand-colour line without changing the brown theme */
.header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: var(--istyles-gradient);
	opacity: .34;
	pointer-events: none;
}

/* Navigation stays brown/neutral; the active/hover detail carries the logo colours */
.navlinks a {
	position: relative;
}

.navlinks a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 2px;
	border-radius: 999px;
	background: var(--istyles-gradient);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .22s ease;
}

.navlinks a:hover::after,
.navlinks .current-menu-item > a::after,
.navlinks .current_page_item > a::after {
	transform: scaleX(1);
}

.navlinks .current-menu-item > a,
.navlinks .current_page_item > a {
	color: var(--brown);
}

/* Eyebrows / title prefixes */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--istyles-pink);
}

.eyebrow::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 3px;
	border-radius: 999px;
	background: var(--istyles-gradient);
	flex: 0 0 auto;
}

.story .eyebrow {
	color: #ff86b6 !important;
}

.story .eyebrow::before {
	box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}

/* Elegant logo-colour signature below major section titles */
.section-head h2 {
	position: relative;
	padding-bottom: 12px;
}

.section-head h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 54px;
	height: 3px;
	border-radius: 999px;
	background: var(--istyles-gradient);
}

/* Small commerce accents only; primary buttons remain brown */
.badge,
.woocommerce span.onsale {
	background: var(--istyles-gradient);
	color: #fff;
	border: 0;
}

.cart-count {
	background: var(--istyles-pink);
	color: #fff;
}

.woocommerce .star-rating span::before,
.woocommerce p.stars a {
	color: var(--istyles-purple);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.btn.dark:hover {
	box-shadow: 0 14px 34px rgba(215, 11, 103, .15), var(--shadow);
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.search-panel input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: rgba(215, 11, 103, .58);
	box-shadow: 0 0 0 3px rgba(215, 11, 103, .08);
}

@media (max-width: 900px) {
	.header .nav {
		min-height: 82px;
	}

	.header-logo-image,
	.header .custom-logo {
		max-width: 190px;
		max-height: 62px;
	}

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

@media (max-width: 480px) {
	.header-logo-image,
	.header .custom-logo {
		max-width: 160px;
		max-height: 54px;
	}
}

/* ==========================================================
   iStyles24 — Brand polish v2
   Refines the existing brown luxury theme and uses the
   iStyles24 red / pink / purple palette only as accents.
   ========================================================== */

:root {
    --istyles-red: #ef1c24;
    --istyles-pink: #d70b67;
    --istyles-purple: #672a91;
    --istyles-gradient: linear-gradient(90deg, #ef1c24 0%, #d70b67 52%, #672a91 100%);

    --ink: #1b120f;
    --muted: #736863;
    --paper: #fbf8f5;
    --sand: #efe5de;
    --tan: #bb8567;
    --brown: #4b2419;
    --brown-deep: #24120d;
    --brown-soft: #6b3828;
    --line: rgba(75, 36, 25, .13);
    --shadow: 0 22px 60px rgba(54, 28, 18, .11);
}

/* ---------- Overall page ---------- */
body {
    background: #fbf8f5;
    color: var(--ink);
}

.container {
    width: min(1240px, 92%);
}

.section {
    padding: 82px 0;
}

/* ---------- Top strip ---------- */
.topbar {
    padding: 7px 12px;
    background: linear-gradient(90deg, #21110d 0%, #49261c 50%, #21110d 100%);
    font-size: 11px;
    letter-spacing: .17em;
    box-shadow: none;
}

/* ---------- Header / logo ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 251, .95);
    border-bottom: 1px solid rgba(75, 36, 25, .10);
    box-shadow: 0 8px 28px rgba(58, 29, 20, .055);
    backdrop-filter: blur(14px) saturate(140%);
}

.admin-bar .header {
    top: 32px;
}

.header .nav {
    min-height: 88px;
}

.header-logo-image,
.header .custom-logo {
    max-width: 225px;
    max-height: 66px;
}

.header::after {
    height: 1px;
    opacity: .32;
}

.navlinks ul {
    gap: 31px;
}

.navlinks a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .01em;
    color: #2c211d;
}

.navlinks a:hover {
    opacity: 1;
    color: var(--brown);
}

.navlinks a::after {
    bottom: -11px;
    height: 2px;
}

.iconbtn,
.cart-link {
    color: #2a1d18;
}

.iconbtn:hover,
.cart-link:hover {
    background: #f5efeb;
}

.cart-count {
    background: var(--istyles-pink);
    border-color: #fff;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 590px;
    grid-template-columns: .95fr 1.05fr;
    background:
        radial-gradient(circle at 10% 15%, rgba(215, 11, 103, .055), transparent 29%),
        radial-gradient(circle at 88% 10%, rgba(103, 42, 145, .05), transparent 30%),
        linear-gradient(120deg, #f7eee8 0%, #ead9cf 56%, #e4cbbb 100%);
}

.hero:before {
    inset: 0;
    background: linear-gradient(115deg, rgba(255,255,255,.24), transparent 42%, rgba(255,255,255,.13) 60%, transparent 78%);
}

.hero-copy {
    padding: 78px clamp(42px, 5.2vw, 92px);
}

.hero .eyebrow {
    margin-bottom: 2px;
}

.hero h1 {
    max-width: 600px;
    margin: 16px 0 22px;
    font-size: clamp(50px, 5.2vw, 72px);
    line-height: .99;
    letter-spacing: -.04em;
    color: #21130f;
    text-shadow: none;
}

.hero p {
    max-width: 510px;
    margin-bottom: 8px;
    color: #75665f;
    font-size: 16px;
    line-height: 1.75;
}

.hero-art {
    padding: 30px 42px 30px 0;
}

.hero-art img {
    width: 100%;
    max-width: 610px;
    height: 520px;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 28px 65px rgba(57, 29, 19, .19);
    filter: saturate(.96) contrast(1.025);
}

/* Keep the main CTA brown; use the brand colours as a tiny detail */
.btn.dark,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2a160f, #4c271b);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(53, 26, 17, .14);
}

.btn.dark::before,
.woocommerce a.button::before,
.woocommerce button.button::before,
.woocommerce input.button::before {
    content: "";
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0;
    height: 5px;
    background: var(--istyles-gradient);
    opacity: 0;
    transition: opacity .25s ease;
}

.btn.dark:hover::before,
.woocommerce a.button:hover::before,
.woocommerce button.button:hover::before,
.woocommerce input.button:hover::before {
    opacity: .95;
}

.btn.dark:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: linear-gradient(135deg, #321910, #5b2e20);
    box-shadow: 0 15px 34px rgba(64, 31, 20, .18);
}

/* ---------- Brand accents / section headings ---------- */
.eyebrow {
    gap: 9px;
    color: #b90b5a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .20em;
}

.eyebrow::before {
    width: 27px;
    height: 2px;
    background: var(--istyles-gradient);
}

/* Avoid the double-pink-line effect under headings */
.section-head h2 {
    padding-bottom: 0;
    color: #241510;
    font-size: clamp(34px, 3vw, 43px);
    letter-spacing: -.02em;
}

.section-head h2::after {
    display: none;
}

.section-head {
    margin-bottom: 32px;
    gap: 42px;
}

.section-head p {
    color: #756a64;
    font-size: 14px;
    line-height: 1.7;
}

/* ---------- Products ---------- */
.product-card,
.woocommerce ul.products li.product {
    transition: transform .3s ease;
}

.product-card:hover,
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
}

.product-img, .woocommerce ul.products li.product a img {
    border-radius: 18px;
    background: #fff;
    text-align: center !important;
}
 
.product-info {
    padding: 14px 5px 7px;
}

.product-info h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #281813;
    font-weight: 600;
}

.price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #624033;
}

.badge,
.woocommerce span.onsale {
    background: rgba(255,255,255,.94);
    color: #8d145a;
    border: 1px solid rgba(215, 11, 103, .16);
    box-shadow: 0 6px 18px rgba(55, 26, 18, .08);
    backdrop-filter: blur(8px);
}

.home .section ul.products {
    gap: 32px 22px;
}

.home .section ul.products li.product img {
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(54, 28, 18, .08);
}

.home .section ul.products li.product .button {
    min-height: 38px;
    padding: 9px 16px !important;
    font-size: 15px;
    letter-spacing: .01em;
}

/* ---------- Categories ---------- */
.category-grid {
    gap: 22px;
}

.cat {
    height: 300px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(49, 26, 15, .12);
}

.cat:after {
    background: linear-gradient(to top, rgba(31, 15, 10, .34), transparent 58%);
}

.cat span {
    left: 20px;
    bottom: 20px;
    padding: 10px 17px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 999px;
    font-size: 18px;
    box-shadow: 0 8px 22px rgba(29, 15, 10, .15);
}

/* ---------- Craft / story panel ---------- */
.story {
    width: min(1280px, 96%);
    margin: 22px auto;
    background:
        radial-gradient(circle at 88% 12%, rgba(215,11,103,.11), transparent 25%),
        linear-gradient(135deg, #25120d 0%, #54291d 70%, #402017 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(46, 22, 14, .20);
}

.story-art {
    min-height: 440px;
}

.story-copy {
    padding: 62px;
}

.story-copy h2 {
    margin: 14px 0 18px;
    font-size: clamp(36px, 3.2vw, 48px);
}

.story-copy p {
    max-width: 520px;
    color: #e4d8d2;
    line-height: 1.75;
}

.story .eyebrow {
    color: #ff8cbb !important;
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    padding-top: 58px;
    background: linear-gradient(135deg, #180c09 0%, #32170f 100%);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--istyles-gradient);
    opacity: .72;
}

.footer h4 {
    color: #f7efeb;
}

.footer a {
    transition: color .2s ease;
}

.footer a:hover {
    color: #f18bb7;
}

/* ---------- Form focus ---------- */
.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.search-panel input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(215, 11, 103, .36);
    box-shadow: 0 0 0 3px rgba(215, 11, 103, .055);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .admin-bar .header {
        top: 46px;
    }

    .header .nav {
        min-height: 78px;
    }

    .header-logo-image,
    .header .custom-logo {
        max-width: 180px;
        max-height: 55px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding: 64px 7% 42px;
    }

    .hero h1 {
        max-width: 700px;
    }

    .hero-art {
        padding: 0 7% 56px;
    }

    .hero-art img {
        max-width: none;
        height: 480px;
    }

    .section {
        padding: 68px 0;
    }

    .story {
        width: 92%;
    }

    .story-copy {
        padding: 48px 7%;
    }
}

@media (max-width: 560px) {
    .topbar {
        padding: 6px 8px;
        font-size: 9px;
        letter-spacing: .10em;
    }

    .header .nav {
        min-height: 70px;
    }

    .header-logo-image,
    .header .custom-logo {
        max-width: 148px;
        max-height: 46px;
    }

    .hero-copy {
        padding: 50px 6% 34px;
    }

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

    .hero p {
        font-size: 15px;
    }

    .hero-art {
        padding: 0 5% 42px;
    }

    .hero-art img {
        height: 370px;
        border-radius: 20px;
    }

    .section {
        padding: 56px 0;
    }

    .section-head {
        gap: 16px;
        margin-bottom: 25px;
    }

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

    .home .section ul.products {
        gap: 23px 12px;
    }

    .cat {
        height: 285px;
    }

    .story {
        width: 94%;
        border-radius: 22px;
    }

    .story-art {
        min-height: 320px;
    }

    .story-copy {
        padding: 42px 7%;
    }
}
/* =========================================================
   ISTYLES24 - PREMIUM SHOP FILTERS
   ========================================================= */

:root {
    --filter-brown: #351910;
    --filter-brown-light: #5d2c20;
    --filter-text: #211814;
    --filter-muted: #776b65;
    --filter-border: #e5ddd8;
    --filter-bg: #fffdfb;
    --filter-soft: #f7f1ed;

    /* Logo accent colours */
    --filter-pink: #d71970;
    --filter-purple: #6a2d91;
}


/* ---------------------------------------------------------
   MAIN FILTER CARD
--------------------------------------------------------- */

.filter {
    background: var(--filter-bg);
    border: 1px solid rgba(73, 42, 29, 0.10);
    border-radius: 18px;
    padding: 26px 22px 28px;
    box-shadow: 0 12px 35px rgba(58, 32, 21, 0.06);
    align-self: start;
}


/* Main Filters title */
.filter .wc-block-product-filters__overlay-content > h2 {
    position: relative;
    margin: 0 0 24px !important;

    color: var(--filter-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
}


/* Small logo-colour accent below Filters */
.filter .wc-block-product-filters__overlay-content > h2::after {
    content: "";
    display: block;

    width: 42px;
    height: 3px;

    margin-top: 10px;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        var(--filter-pink),
        var(--filter-purple)
    );
}


/* ---------------------------------------------------------
   EACH FILTER SECTION
--------------------------------------------------------- */

.filter .wp-block-woocommerce-product-filter-price,
.filter .wp-block-woocommerce-product-filter-attribute,
.filter .wp-block-woocommerce-product-filter-taxonomy,
.filter .wp-block-woocommerce-product-filter-status,
.filter .wp-block-woocommerce-product-filter-rating {

    padding: 0 0 22px;
    margin: 0 0 22px;

    border-bottom: 1px solid var(--filter-border);
}


/* Remove last divider */
.filter .wp-block-woocommerce-product-filter-status:last-child,
.filter .wc-block-product-filters__overlay-content > div:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}


/* Section headings */
.filter .wp-block-woocommerce-product-filter-price > h3,
.filter .wp-block-woocommerce-product-filter-attribute > h3,
.filter .wp-block-woocommerce-product-filter-taxonomy > h3,
.filter .wp-block-woocommerce-product-filter-status > h3,
.filter .wp-block-woocommerce-product-filter-rating > h3 {

    margin: 0 0 15px !important;

    color: var(--filter-text);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   CHECKBOX LISTS
--------------------------------------------------------- */

.filter .wc-block-product-filter-checkbox-list fieldset {
    padding: 0;
    margin: 0;

    border: 0;
}


.filter .wc-block-product-filter-checkbox-list__items {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.filter .wc-block-product-filter-checkbox-list__item {
    margin: 0;
}


/* Entire clickable row */
.filter .wc-block-product-filter-checkbox-list__label {
    display: flex;
    align-items: center;
    gap: 11px;

    min-height: 36px;
    padding: 6px 8px;

    border-radius: 8px;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease;
}


.filter .wc-block-product-filter-checkbox-list__label:hover {
    background: var(--filter-soft);
}


/* Checkbox wrapper */
.filter .wc-block-product-filter-checkbox-list__input-wrapper {
    position: relative;

    width: 18px;
    height: 18px;

    flex: 0 0 18px;

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


/* Custom checkbox */
.filter .wc-block-product-filter-checkbox-list__input {
    appearance: none;
    -webkit-appearance: none;

    width: 18px;
    height: 18px;

    margin: 0;

    background: #fff;

    border: 1px solid #cfc3bc;
    border-radius: 5px;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


/* Checked */
.filter .wc-block-product-filter-checkbox-list__input:checked {
    background: linear-gradient(
        135deg,
        var(--filter-pink),
        var(--filter-purple)
    );

    border-color: transparent;

    box-shadow: 0 4px 12px rgba(174, 30, 111, .18);
}


/* WooCommerce check icon */
.filter .wc-block-product-filter-checkbox-list__mark {
    position: absolute;

    width: 11px;
    height: 9px;

    color: #fff;

    opacity: 0;
    pointer-events: none;

    transition: opacity .15s ease;
}


.filter
.wc-block-product-filter-checkbox-list__input:checked
+ .wc-block-product-filter-checkbox-list__mark {

    opacity: 1;
}


/* Filter label text */
.filter .wc-block-product-filter-checkbox-list__text {
    color: #655a54;

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

    transition: color .2s ease;
}


.filter .wc-block-product-filter-checkbox-list__label:hover
.wc-block-product-filter-checkbox-list__text {

    color: var(--filter-brown);
}


/* Selected label */
.filter .wc-block-product-filter-checkbox-list__input:checked
~ .wc-block-product-filter-checkbox-list__text-wrapper
.wc-block-product-filter-checkbox-list__text {

    color: var(--filter-text);
    font-weight: 600;
}



/* =========================================================
   PRICE RANGE
   ========================================================= */

.filter .wc-block-product-filter-price-slider__content {
    padding-top: 4px;
}


/* Slider area */
.filter .wc-block-product-filter-price-slider__range {
    position: relative;

    width: 100%;
    height: 28px;

    margin: 4px 0 12px;
}


/* Slider line */
.filter .wc-block-product-filter-price-slider__range .range-bar {
    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 4px;

    transform: translateY(-50%);

    border-radius: 10px;

    background:
        linear-gradient(
            to right,

            #e1d8d2 0%,
            #e1d8d2 var(--low),

            var(--filter-brown-light) var(--low),
            var(--filter-brown-light) var(--high),

            #e1d8d2 var(--high),
            #e1d8d2 100%
        );
}


/* Range inputs */
.filter .wc-block-product-filter-price-slider__range input[type="range"] {
    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;
    height: 4px;

    margin: 0;

    transform: translateY(-50%);

    appearance: none;
    -webkit-appearance: none;

    background: transparent;

    pointer-events: none;
}


/* Chrome / Edge / Safari thumb */
.filter
.wc-block-product-filter-price-slider__range
input[type="range"]::-webkit-slider-thumb {

    appearance: none;
    -webkit-appearance: none;

    width: 18px;
    height: 18px;

    background: #fff;

    border: 3px solid var(--filter-brown-light);
    border-radius: 50%;

    box-shadow: 0 3px 10px rgba(56, 28, 18, .18);

    cursor: grab;

    pointer-events: auto;
}


/* Firefox thumb */
.filter
.wc-block-product-filter-price-slider__range
input[type="range"]::-moz-range-thumb {

    width: 13px;
    height: 13px;

    background: #fff;

    border: 3px solid var(--filter-brown-light);
    border-radius: 50%;

    box-shadow: 0 3px 10px rgba(56, 28, 18, .18);

    cursor: grab;

    pointer-events: auto;
}


/* Price input boxes */
.filter .wc-block-product-filter-price-slider__left,
.filter .wc-block-product-filter-price-slider__right {
    width: 48%;
}


.filter .wc-block-product-filter-price-slider__left {
    float: left;
}


.filter .wc-block-product-filter-price-slider__right {
    float: right;
    text-align: right;
}


.filter
.wc-block-product-filter-price-slider__left input,
.filter
.wc-block-product-filter-price-slider__right input {

    width: 100%;

    min-height: 38px;

    padding: 8px 11px;

    color: var(--filter-text);
    background: #fff;

    border: 1px solid var(--filter-border);
    border-radius: 8px;

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

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.filter
.wc-block-product-filter-price-slider__right input {
    text-align: right;
}


/* Price field focus */
.filter
.wc-block-product-filter-price-slider__left input:focus,
.filter
.wc-block-product-filter-price-slider__right input:focus {

    border-color: #b84b7c;

    box-shadow:
        0 0 0 3px rgba(215, 25, 112, .08);
}


/* Clear floats below price */
.filter .wc-block-product-filter-price-slider__content::after {
    content: "";
    display: block;
    clear: both;
}



/* =========================================================
   COLOUR FILTER - COLOUR DOTS
   ========================================================= */

/* Cognac */
.filter
label[for="attribute/colour-cognac-tan"]
.wc-block-product-filter-checkbox-list__text::before {

    background: #a56842;
}


/* Dark brown */
.filter
label[for="attribute/colour-dark-brown"]
.wc-block-product-filter-checkbox-list__text::before {

    background: #4a271b;
}


/* Black */
.filter
label[for="attribute/colour-black"]
.wc-block-product-filter-checkbox-list__text::before {

    background: #171717;
}


/* Colour dot */
.filter
.wp-block-woocommerce-product-filter-attribute
.wc-block-product-filter-checkbox-list__text::before {

    content: "";

    display: inline-block;

    width: 11px;
    height: 11px;

    margin-right: 8px;

    vertical-align: -1px;

    border: 1px solid rgba(0,0,0,.10);
    border-radius: 50%;
}



/* =========================================================
   ACTIVE FILTER CHIPS
   ========================================================= */

.filter .wc-block-product-filter-removable-chips__items {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    padding: 0;
    margin: 0 0 18px;

    list-style: none;
}


.filter .wc-block-product-filter-removable-chips__item {
    border-radius: 50px !important;

    background: #f6ecef !important;
    color: #722249 !important;

    border: 1px solid rgba(215, 25, 112, .13) !important;

    font-size: 11px;
}



/* =========================================================
   SCROLL / GENERAL
   ========================================================= */

.filter * {
    box-sizing: border-box;
}


/* Slightly sticky filters on desktop */
@media (min-width: 901px) {

    .shop-layout > .filter {
        position: sticky;
        top: 110px;
    }

}


/* Mobile */
@media (max-width: 900px) {

    .filter {
        padding: 20px;
        border-radius: 14px;
    }

}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover {
    background: var(--istyles-gradient);
}

a.button.product_type_variable.add_to_cart_button:hover {
    background: var(--istyles-gradient);
}

a.cat span { 
	
	transition: .25s; 
}
a.cat:hover span {
    background: var(--istyles-gradient);
    border: 0px;
	 color:#fff;
	transform: translateY(-2px);
}
a.btn.dark:hover{
	 background: var(--istyles-gradient);
    border: 0px;
	 color:#fff;
	transform: translateY(-2px);
}

.story-copy a.btn:hover{
	 background: var(--istyles-gradient);
    border: 0px;
	 color:#fff;
	transform: translateY(-2px);
}

/* ==============================================================
   Shop mega menu
   ============================================================== */
.header .navlinks .styles-shop-menu-item {
	position: static;
}

.header .navlinks .styles-shop-menu-item > a::after {
	 
	display: inline-block;
	margin-left: 6px;
	font-size: 12px;
	transform: translateY(-1px);
	
    transform: scaleX(0);
}
.header .navlinks .styles-shop-menu-item > a:hover::after {
	 
 
	
    transform: scaleX(1);
}
.navlinks .styles-mega-menu {
	position: absolute;
	z-index: 120;
	left: 0;
	right: 0;
	/* Start the invisible hover bridge just below the Shop link.
	   The 42px transparent padding carries the pointer safely to the panel,
	   while the visible mega-menu still begins at the bottom of the 88px header. */
	top: 46px;
	padding-top: 38px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.navlinks .styles-shop-menu-item:hover > .styles-mega-menu,
.navlinks .styles-shop-menu-item:focus-within > .styles-mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.navlinks .styles-mega-menu__inner {
	width: 100%;
	max-height: min(72vh, 620px);
	overflow-y: auto;
	padding: 26px 30px 30px;
	background: #fff;
	border: 1px solid #eee6e2;
	border-top: 2px solid #e81d5e;
	border-radius: 0 0 18px 18px;
	box-shadow: 0 24px 55px rgba(45, 28, 22, .14);
}

.navlinks .styles-mega-menu__top {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 20px;
	margin-bottom: 22px;
	border-bottom: 1px solid #eee8e5;
}

.navlinks .styles-mega-menu__eyebrow {
	display: block;
	margin-bottom: 5px;
	color: #d80b55;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.navlinks .styles-mega-menu__top strong {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.15;
}

.navlinks .styles-mega-menu__all {
	flex: 0 0 auto;
	color: #d80b55;
	font-size: 13px;
	font-weight: 700;
}

.navlinks .styles-mega-menu__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 34px;
}

.navlinks .styles-mega-column {
	min-width: 0;
}

.navlinks .styles-mega-parent {
	display: inline-block;
	margin-bottom: 10px;
	color: #211512;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.25;
}

/* Override the main-nav flex rules for lists inside the mega menu. */
.navlinks .styles-mega-menu ul,
.navlinks .styles-mega-menu .styles-mega-subcategories {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navlinks .styles-mega-menu li {
	display: block;
	margin: 0;
	padding: 5px;
}

.navlinks .styles-mega-menu .styles-mega-subcategories > li + li {
	margin-top: 7px;
}

.navlinks .styles-mega-menu .styles-mega-subcategories a {
	display: inline-block;
	color: #6d625d;
	font-size: 16px;
	line-height: 1.4;
}

.navlinks .styles-mega-menu .styles-mega-subcategories a:hover,
.navlinks .styles-mega-menu .styles-mega-parent:hover,
.navlinks .styles-mega-menu__all:hover {
	color: #d80b55;
	opacity: 1;
}

.navlinks .styles-mega-menu .styles-mega-subcategories .styles-mega-subcategories {
	margin: 7px 0 0 12px;
	padding-left: 10px;
	border-left: 1px solid #eee6e2;
}

.styles-mega-empty {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--muted);
}

/* ==============================================================
   QR / manual payment
   ============================================================== */
.styles-qr-checkout-box,
.styles-qr-block-content {
	padding: 8px 0 4px;
}

.styles-qr-image-wrap,
.styles-qr-block-image-wrap {
	margin: 16px 0;
}

.styles-qr-image,
.styles-qr-block-image {
	width: min(240px, 100%);
	height: auto;
	padding: 10px;
	background: #fff;
	border: 1px solid #e5dcd6;
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(48, 25, 16, .08);
}

.styles-qr-small-instructions,
.styles-qr-block-instructions {
	color: #685d58;
	font-size: 13px;
}

.styles-qr-missing,
.styles-payment-qr-missing {
	padding: 14px;
	color: #7c4d14;
	background: #fff7e8;
	border: 1px solid #f1d9ad;
	border-radius: 12px;
}

.styles-payment-card {
	margin: 28px 0;
	padding: 28px;
	background: #fff;
	border: 1px solid #eadfd9;
	border-radius: 22px;
	box-shadow: 0 16px 40px rgba(48, 25, 16, .08);
}

.styles-payment-card__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.styles-payment-kicker {
	display: block;
	margin-bottom: 6px;
	color: #d80b55;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.styles-payment-card h2 {
	margin: 0;
	color: #281712;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 500;
	line-height: 1.15;
}

.styles-payment-amount {
	min-width: 135px;
	padding: 12px 15px;
	text-align: right;
	background: #ed121c;
	border: 1px solid #f6d8e3;
	border-radius: 14px;
}

.styles-payment-amount span { 
	margin-bottom: 3px;
	color: #fff;
	font-size: 15px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.styles-payment-amount strong {
	font-size: 18px;
}

.styles-payment-grid {
	display: grid;
	grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
	gap: 30px;
	align-items: center;
}

.styles-payment-qr-frame {
	padding: 14px;
	background: #fff;
	border: 1px solid #eadfd9;
	border-radius: 18px;
}

.styles-payment-qr-frame img {
	width: 100%;
	height: auto;
}

.styles-payment-copy {
	color: #615650;
}

.styles-payment-copy ol {
	margin: 16px 0 0;
	padding-left: 20px;
}

.styles-payment-copy li + li {
	margin-top: 7px;
}

.styles-payment-proof-existing {
	margin-bottom: 20px;
	padding: 15px 17px;
	background: #f7f7f5;
	border-radius: 13px;
}

.styles-payment-proof-existing p {
	margin: 5px 0;
}

.styles-payment-proof-fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
	gap: 16px;
	align-items: end;
}

.styles-payment-proof-fields label > span {
	display: block;
	margin-bottom: 7px;
	color: #34231d;
	font-size: 13px;
	font-weight: 700;
}

.styles-payment-proof-fields input[type="text"],
.styles-payment-proof-fields input[type="file"] {
	width: 100%;
	min-height: 48px;
	padding: 11px 12px;
	background: #fff;
	border: 1px solid #dcd1cb;
	border-radius: 11px;
}

.styles-payment-proof-fields input[type="file"] {
	padding: 9px;
}

.styles-payment-proof-fields small {
	display: block;
	margin-top: 6px;
	color: #81756f;
}

.styles-payment-or {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	color: #9b8f89;
	font-size: 11px;
	font-weight: 800;
}

.styles-payment-proof-submit {
	margin-top: 20px !important;
	padding: 13px 22px !important;
	background: #382018 !important;
	color: #fff !important;
	border-radius: 999px !important;
}

@media (max-width: 1050px) and (min-width: 769px) {
	.navlinks .styles-mega-menu__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.mobile-panel {
		max-height: calc(100vh - 90px);
		overflow-y: auto;
	}

	.mobile-panel .styles-shop-menu-item > a::after {
		content: "";
	}

	.mobile-panel .styles-mega-menu {
		position: static;
		display: block;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		padding: 0 0 12px;
	}

	.mobile-panel .styles-mega-menu__inner {
		padding: 12px 4px 4px 14px;
		background: #fcf8f7;
		border: 0;
		border-left: 2px solid #e81d5e;
		border-radius: 0;
		box-shadow: none;
	}

	.mobile-panel .styles-mega-menu__top {
		display: none;
	}

	.mobile-panel .styles-mega-menu__grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 16px;
	}

	.mobile-panel .styles-mega-menu ul {
		display: block;
	}

	.mobile-panel .styles-mega-column,
	.mobile-panel .styles-mega-menu li {
		border: 0 !important;
		margin: 0;
	}

	.mobile-panel .styles-mega-parent {
		display: block;
		padding: 4px 0 7px;
		font-family: Georgia, "Times New Roman", serif;
		font-size: 16px;
		font-weight: 600;
	}

	.mobile-panel .styles-mega-subcategories a {
		padding: 4px 0;
		color: #71645e;
		font-size: 15px;
	}

	.mobile-panel .styles-mega-subcategories .styles-mega-subcategories {
		margin-left: 8px;
		padding-left: 8px;
		border-left: 1px solid #eadfd9;
	}

	.styles-payment-card {
		padding: 20px;
		border-radius: 17px;
	}

	.styles-payment-card__heading,
	.styles-payment-grid {
		display: block;
	}

	.styles-payment-amount {
		margin-top: 15px;
		text-align: left;
	}

	.styles-payment-qr-frame {
		max-width: 270px;
		margin-bottom: 20px;
	}

	.styles-payment-proof-fields {
		display: block;
	}

	.styles-payment-or {
		min-height: 38px;
	}
}

@media (max-width: 480px) {
	.mobile-panel .styles-mega-menu__grid {
		grid-template-columns: 1fr;
	}
}


/* ==============================================================
   Home hero slider
   ============================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-slider__track {
    position: relative;
}

.hero-slider .hero-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .55s ease, visibility .55s ease;
}

.hero-slider .hero-slide:not(.is-active) {
    position: absolute;
    inset: 0;
}

.hero-slider .hero-slide.is-active {
    position: relative;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-slider .hero-slide .hero-copy,
.hero-slider .hero-slide .hero-art img {
    transition: transform .75s cubic-bezier(.2,.7,.2,1), opacity .55s ease;
}

.hero-slider .hero-slide:not(.is-active) .hero-copy {
    transform: translateX(-18px);
    opacity: .72;
}

.hero-slider .hero-slide:not(.is-active) .hero-art img {
    transform: scale(1.025);
}

.hero-slider__arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(42, 29, 24, .14);
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    color: #2a1d18;
    box-shadow: 0 8px 24px rgba(42, 29, 24, .10);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.hero-slider__arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.hero-slider__arrow--prev {
    left: 18px;
}

.hero-slider__arrow--next {
    right: 18px;
}

.hero-slider__dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .70);
    backdrop-filter: blur(9px);
}

.hero-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(42, 29, 24, .30);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.hero-slider__dot.is-active {
    width: 26px;
    background: var(--istyles-pink, #d70b67);
}

@media (max-width: 768px) {
    .hero-slider__arrow {
        width: 38px;
        height: 38px;
        font-size: 27px;
    }

    .hero-slider__arrow--prev {
        left: 10px;
    }

    .hero-slider__arrow--next {
        right: 10px;
    }

    .hero-slider__dots {
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider .hero-slide,
    .hero-slider .hero-slide .hero-copy,
    .hero-slider .hero-slide .hero-art img,
    .hero-slider__arrow,
    .hero-slider__dot {
        transition: none !important;
    }
}
.styles-qr-block-image-wrap {
    display: none;
}
/* ==========================================================
   iStyles belts — right-side details + selectable size buttons
   ========================================================== */

.styles-product-specs,
.product-short-description .istyles-summary-specs {
	margin: 15px 0 20px;
	padding: 13px 0;
	border-top: 1px solid #dfd6cf;
	border-bottom: 1px solid #dfd6cf;
}

.styles-product-spec-row,
.product-short-description .istyles-summary-specs > div {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr);
	gap: 14px;
	align-items: baseline;
	padding: 4px 0;
	font-size: 13px;
	line-height: 1.45;
}

.styles-product-spec-row span,
.product-short-description .istyles-summary-specs > div > span {
	color: #756961;
}

.styles-product-spec-row strong,
.product-short-description .istyles-summary-specs > div > strong {
	font-weight: 600;
	color: #281711;
}

/* The real select is retained for WooCommerce's variation engine. */
.styles-hidden-size-select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.product-cart-area table.variations tr.styles-size-row {
	margin-bottom: 18px;
}

.product-cart-area table.variations tr.styles-size-row th.label {
	margin-bottom: 11px;
}

.product-cart-area table.variations tr.styles-size-row th.label label {
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
	color: #21140f;
}

.styles-size-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
}

.styles-size-option {
	position: relative;
	min-width: 60px;
	height: 52px;
	padding: 0 14px;
	border: 1px solid #d5cdc7;
	border-radius: 12px;
	background: #fff;
	color: #241711;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: none;
	transition:
		border-color .18s ease,
		background-color .18s ease,
		box-shadow .18s ease,
		transform .18s ease;
}

.styles-size-option:hover:not(:disabled) {
	border-color: #3b2016;
	transform: translateY(-1px);
}

.styles-size-option.is-selected {
	border: 2px solid #3b2016;
	background: #f6efea;
	box-shadow: 0 0 0 1px rgba(59, 32, 22, .06);
}

.styles-size-option.is-unavailable,
.styles-size-option:disabled {
	border-color: #e1dcd8;
	background: #f7f5f3;
	color: #b8b1ac;
	cursor: not-allowed;
	text-decoration: line-through;
	opacity: .85;
	transform: none;
}

/* Price is already shown above the description, so don't repeat it after size selection. */
.product-cart-area .woocommerce-variation-price {
	display: none !important;
}

/* Spreadsheet stock is model-level, not size-level, so avoid implying per-size stock. */
.product-cart-area .woocommerce-variation-availability {
	display: none !important;
}

/* When only Reviews remains, don't leave a large empty-looking tabs area. */
.single-product .woocommerce-tabs {
    margin-top: 60px;
}
@media (max-width: 700px) {
	.styles-size-swatches {
		gap: 8px;
	}

	.styles-size-option {
		min-width: 55px;
		height: 49px;
		padding: 0 11px;
		border-radius: 10px;
		font-size: 14px;
	}

	.product-cart-area table.variations tr.styles-size-row th.label label {
		font-size: 17px;
	}
}


/* Belt description: after size choices, before quantity / Add to Cart. */
.styles-belt-product-description {
	margin: 20px 0 18px;
	padding-top: 18px;
	border-top: 1px solid #dfd6cf;
}

.styles-belt-product-description h3 {
	margin: 0 0 9px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	color: #21140f;
}

.styles-belt-product-description p {
	margin: 0;
	font-size: 13px;
	line-height: 1.65;
	color: #514944;
}
footer .logo img {
    width: 250px;
    margin-bottom: 30px;
}
img.header-logo-image.istyles24-brand-logo {
    max-width: 260px;
    max-height: unset;
}

@media (max-width: 480px) {
    img.header-logo-image.istyles24-brand-logo {
        max-width: 200px;
        max-height: unset;
    }
}

.woocommerce ul.products li.product a img {
    width: auto;
    height: 229px;
    object-fit: contain;
    object-position: center;
}


.footer-social-icons {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 12px;
}

.footer-social-icons a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: all .25s ease;
}

.footer-social-icons a:hover {
	background: #fff;
	color: #111;
	border-color: #fff;
	transform: translateY(-2px);
}

.footer-social-icons svg {
	width: 20px;
	height: 20px;
	display: block;
}
/* ==============================================================
   Shop mega menu - Belts only
   ============================================================== */
@media (min-width: 769px) {
	.header .navlinks .styles-shop-menu-item {
		position: relative;
	}

	.navlinks .styles-mega-menu {
		left: -40px;
		right: auto;
		width: 390px;
		top: 100%;
	}

	.navlinks .styles-mega-menu__inner {
		padding: 24px 28px 28px;
	}

	.navlinks .styles-mega-menu__top {
		align-items: flex-start;
		gap: 14px;
	}

	.navlinks .styles-mega-menu__all {
		font-size: 12px;
		white-space: nowrap;
	}

	.navlinks .styles-mega-menu__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}


/* =========================================================
   v1.4 SHOP QUERY + AMAZON-STYLE HEADER SEARCH
   ========================================================= */

/* Native WooCommerce loop now powers both Shop and category pages. */
.shop-products .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
}

.shop-products .woocommerce-result-count {
    margin: 0 0 18px;
    color: #74665f;
    font-size: 13px;
}

.shop-products .woocommerce-ordering {
    margin: 0 0 18px;
}

.styles-shop-search-summary {
    margin: 8px 0 0;
    color: #75665f;
    font-size: 14px;
}

/* Header search shell */
.search-panel {
    width:100%;
    right: 3%;
    top: calc(100% + 8px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.styles-product-search-form {
    position: relative;
    width: 100%;
}

.styles-product-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 7px 8px 7px 15px;
    background: #fff;
    border: 1px solid #e7ded9;
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(50, 25, 17, .16);
	    width: 100%;
}

.styles-product-search-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: #43251b;
    stroke-width: 1.8;
}

.search-panel .styles-product-search-input {
    min-width: 0;
    width: 100%;
    flex: 1 1 auto;
    padding: 10px 4px;
    border: 0 !important;
    border-radius: 0;
    outline: 0;
    box-shadow: none !important;
    background: transparent;
    color: #251713;
    font-size: 14px;
}

.styles-product-search-submit {
    min-height: 40px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: #3b1d13;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.styles-search-suggestions {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    z-index: 250;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eadfda;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(45, 22, 15, .20);
}

.styles-search-suggestions[hidden] {
    display: none !important;
}

.styles-search-results {
    max-height: 430px;
    overflow-y: auto;
    padding: 6px;
}

.styles-search-result {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    color: #2b1b16;
    text-decoration: none;
}

.styles-search-result:hover,
.styles-search-result:focus {
    background: #faf4f1;
}

.styles-search-result-image {
    display: block;
    width: 62px;
    height: 62px;
    overflow: hidden;
    background: #faf8f7;
    border-radius: 9px;
}

.styles-search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.styles-search-result-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.styles-search-result-copy strong {
    overflow: hidden;
    color: #2b1b16;
    font-size: 13px;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.styles-search-result-brand {
    color: #d40d67;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.styles-search-result-price {
    color: #6e574d;
    font-size: 12px;
}

.styles-search-view-all {
    display: block;
    padding: 13px 16px;
    border-top: 1px solid #eee5e1;
    color: #d40d67;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.styles-search-empty {
    padding: 18px;
    color: #74645d;
    font-size: 13px;
}

@media (max-width: 768px) {
    .search-panel {
        left: 12px;
        right: 12px;
        width: auto;
    }

    .styles-product-search-submit {
        padding: 0 13px;
    }
}

/* ==============================================================
   v1.5 DESKTOP HEADER ALIGNMENT
   Desktop: logo left, navigation + action icons right.
   Mobile layout intentionally remains unchanged.
   ============================================================== */
@media (min-width: 769px) {
    .header .nav {
        display: flex !important;
        align-items: center;
        gap: 0;
    }

    .header .logo {
        order: 1;
        flex: 0 0 auto;
        justify-self: auto;
        margin: 0;
    }

    .header .navlinks {
        order: 2;
        flex: 0 0 auto;
        justify-self: auto;
        margin-left: auto;
    }

    .header .icons {
        order: 3;
        flex: 0 0 auto;
        justify-self: auto;
        margin-left: 18px;
    }

    .header .mobile-toggle {
        order: 0;
    }

    .header .mobile-panel,
    .header .search-panel {
        order: 4;
    }
}

/* ==============================================================
   v1.7 India / Qatar market selector + checkout access choice
   ============================================================== */
.styles-market-switcher {
    position: relative;
    margin: 0;
    color: #24150f;
}

.styles-market-switcher > summary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid #e7ddd8;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    list-style: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: border-color .18s ease, background-color .18s ease;
}

.styles-market-switcher > summary::-webkit-details-marker {
    display: none;
}

.styles-market-switcher > summary:hover,
.styles-market-switcher[open] > summary {
    border-color: #d40d67;
    background: #fff8fb;
}

.styles-market-flag {
    width: 24px;
    height: 16px;
    display: inline-flex;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.styles-market-flag-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.styles-market-chevron {
    width: 10px;
    height: 7px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform .18s ease;
}

.styles-market-switcher[open] .styles-market-chevron {
    transform: rotate(180deg);
}

.styles-market-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1000;
    width: 190px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid #eadfda;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(44, 23, 16, .14);
}

.styles-market-option {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    color: #24150f;
    font-size: 13px;
    text-decoration: none;
}

.styles-market-option:hover,
.styles-market-option.is-active {
    background: #f8f2ef;
}

.styles-market-option.is-active {
    font-weight: 700;
}

.styles-market-currency-code {
    color: #8c7770;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.styles-market-switcher--mobile {
    display: none;
}

/* Checkout guest/login choice. */
.styles-checkout-access {
    margin: 0 0 28px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px 24px;
    border: 1px solid #e5d9d4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(55, 31, 22, .06);
}

.styles-checkout-access-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #d40d67;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.styles-checkout-access h3 {
    margin: 0 0 5px;
    color: #24150f;
    font-size: 21px;
    line-height: 1.25;
}

.styles-checkout-access p {
    margin: 0;
    color: #73615a;
    font-size: 13px;
}

.styles-checkout-access-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.styles-checkout-access .button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 10px 18px !important;
    border: 1px solid #32170f !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

.styles-checkout-access .button.alt,
.styles-checkout-access .styles-guest-checkout-button {
    color: #fff !important;
    background: #32170f !important;
}

.styles-checkout-access .styles-login-toggle {
    color: #32170f !important;
    background: #fff !important;
}

.styles-checkout-login-panel {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid #eee3de;
}

.styles-checkout-login-panel[hidden] {
    display: none !important;
}

.styles-checkout-login-panel .woocommerce-form-login {
    max-width: 620px;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

@media (min-width: 769px) {
    .header .icons {
        gap: 6px;
    }

    .header .styles-market-switcher--desktop {
        margin-right: 5px;
    }
}

@media (max-width: 768px) {
    /* Keep the current mobile header uncluttered; country choice lives inside the hamburger menu. */
    .header .styles-market-switcher--desktop {
        display: none;
    }

    .mobile-panel .styles-market-switcher--mobile {
        display: block;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid #eee;
    }

    .mobile-panel .styles-market-switcher--mobile > summary {
        width: 100%;
        justify-content: flex-start;
        border-radius: 12px;
    }

    .mobile-panel .styles-market-switcher--mobile .styles-market-chevron {
        margin-left: auto;
    }

    .mobile-panel .styles-market-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
    }

    .styles-checkout-access {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .styles-checkout-access-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 430px) {
    .styles-checkout-access-actions {
        grid-template-columns: 1fr;
    }
}
ul.tabs.wc-tabs {
    display: none;
}
/* =========================================================
   v1.3 MY ACCOUNT / CUSTOMER AREA
   ========================================================= */
body.woocommerce-account {
    background: #fbf8f5;
}

.styles-account-page {
    padding: 0 0 82px;
}

.styles-account-hero {
    padding: 52px 0 28px;
    margin: 0;
}

.styles-account-hero .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
    color: #897a73;
    font-size: 12px;
}

.styles-account-hero .eyebrow {
    display: block;
    margin-bottom: 8px;
}

.styles-account-hero h1 {
    margin: 0;
    color: #211611;
    font: 500 clamp(42px, 5vw, 68px)/1 Georgia, serif;
    letter-spacing: -.035em;
}

.styles-account-hero > p {
    max-width: 620px;
    margin: 14px 0 0;
    color: #766760;
    font-size: 15px;
}

/* Logged-out login/register presentation */
.styles-account-auth-layout {
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.35fr);
    min-height: 520px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7ddd7;
    border-radius: 28px;
    box-shadow: 0 28px 75px rgba(55, 28, 19, .10);
}

.styles-account-welcome {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 5vw, 64px);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(215, 25, 112, .23), transparent 32%),
        radial-gradient(circle at 0 100%, rgba(106, 45, 145, .20), transparent 38%),
        linear-gradient(145deg, #2c160f 0%, #4a2418 60%, #2a160f 100%);
}

.styles-account-welcome::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -92px;
    bottom: -92px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(255,255,255,.025), 0 0 0 84px rgba(255,255,255,.02);
}

.styles-account-welcome .eyebrow {
    position: relative;
    z-index: 1;
    color: #f4b4cf;
}

.styles-account-welcome h2 {
    position: relative;
    z-index: 1;
    margin: 14px 0 18px;
    color: #fff;
    font: 500 clamp(38px, 4vw, 58px)/1 Georgia, serif;
}

.styles-account-welcome > p {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 0 0 32px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
}

.styles-account-welcome ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.styles-account-welcome li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.92);
    font-size: 13px;
}

.styles-account-welcome li span {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    flex: 0 0 24px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
}

.styles-account-auth-card {
    display: flex;
    align-items: center;
    padding: clamp(32px, 5vw, 68px);
    background: linear-gradient(180deg, #fff 0%, #fffdfc 100%);
}

.styles-account-auth-card > .woocommerce,
.styles-account-auth-card .woocommerce-notices-wrapper,
.styles-account-auth-card form {
    width: 100%;
}

.styles-account-auth-card .u-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.styles-account-auth-card .u-column1,
.styles-account-auth-card .u-column2 {
    width: auto !important;
    float: none !important;
}

.styles-account-auth-card h2,
.styles-account-auth-card h3,
.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .woocommerce-form-register h2 {
    margin: 0 0 22px;
    color: #261711;
    font: 500 32px/1.1 Georgia, serif;
}

.woocommerce-account form.woocommerce-form-login,
.woocommerce-account form.woocommerce-form-register,
.woocommerce-account form.lost_reset_password,
.styles-account-auth-card .woocommerce-form {
    margin: 0 !important; 
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent;
}

.woocommerce-account form .form-row {
    margin: 0 0 18px;
    padding: 0;
}

.woocommerce-account form .form-row label {
    display: block;
    margin: 0 0 7px;
    color: #34231c;
    font-size: 12px;
    font-weight: 700;
}

.woocommerce-account form .form-row .required {
    color: #d71970;
}

.woocommerce-account form .form-row input.input-text,
.woocommerce-account form .form-row textarea,
.woocommerce-account form .form-row select,
.woocommerce-account .select2-container--default .select2-selection--single {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #ded4cf;
    border-radius: 12px;
    background: #fff;
    color: #241712;
    box-shadow: 0 0 0 0 rgba(215,25,112,0);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.woocommerce-account form .form-row input.input-text:focus,
.woocommerce-account form .form-row textarea:focus,
.woocommerce-account form .form-row select:focus {
    outline: 0;
    border-color: #b74c7c;
    box-shadow: 0 0 0 4px rgba(215,25,112,.07);
}

.woocommerce-account .password-input {
    width: 100%;
}

.woocommerce-account .show-password-input {
    top: 50% !important;
    transform: translateY(-50%);
}

.woocommerce-account .woocommerce-form-login__rememberme {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    margin: 5px 14px 5px 0 !important;
    font-size: 12px;
    font-weight: 500 !important;
}

.woocommerce-account .woocommerce-form-login__rememberme input {
    accent-color: #8f245c;
}

.woocommerce-account .woocommerce-LostPassword {
    margin: 16px 0 0;
    font-size: 12px;
}

.woocommerce-account .woocommerce-LostPassword a,
.woocommerce-account .woocommerce-privacy-policy-link {
    color: #8e245c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.woocommerce-account button.button,
.woocommerce-account a.button,
.woocommerce-account input.button {
    min-height: 44px;
    padding: 11px 21px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #3c1d13 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    box-shadow: 0 9px 22px rgba(60,29,19,.13);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.woocommerce-account button.button:hover,
.woocommerce-account a.button:hover,
.woocommerce-account input.button:hover {
    transform: translateY(-1px);
    background: linear-gradient(90deg, #d71970, #6a2d91) !important;
    box-shadow: 0 12px 28px rgba(106,45,145,.16);
}

/* Logged-in account dashboard + endpoints */
.styles-account-shell > .woocommerce {
    display: flow-root;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    padding-right: 22px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    position: sticky;
    top: 118px;
    margin: 0;
    padding: 10px;
    overflow: visible;
    list-style: none;
    background: #fff;
    border: 1px solid #e8ded8;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(55,28,19,.06);
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li + li {
    border-top: 1px solid #f0e9e5;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    position: relative;
    display: block;
    padding: 14px 14px 14px 18px;
    border: 0;
    border-radius: 11px;
    color: #64554e;
    font-size: 13px;
    font-weight: 600;
    transition: color .2s ease, background .2s ease, padding .2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    color: #2b1912;
    background: #fbf6f3;
    padding-left: 21px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
    color: #2b1912;
    background: linear-gradient(90deg, rgba(215,25,112,.085), rgba(106,45,145,.065));
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    width: 3px;
    height: 20px;
    border-radius: 99px;
    transform: translateY(-50%);
    background: linear-gradient(#d71970, #6a2d91);
}

.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    min-height: 420px;
    padding: clamp(26px, 4vw, 44px);
    background: #fff;
    border: 1px solid #e8ded8;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(55,28,19,.07);
}

.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
    margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
    color: #6d5e57;
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
    color: #8b2459;
    font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title h3 {
    color: #261711;
    font-family: Georgia, serif;
    font-weight: 500;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 38px);
}

.woocommerce-account table.shop_table,
.woocommerce-account .woocommerce-orders-table {
    overflow: hidden;
    margin: 20px 0 0;
    border: 1px solid #e8ded8;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    background: #fff;
}

.woocommerce-account table.shop_table th {
    padding: 13px 15px;
    background: #f8f3f0;
    color: #3d2a22;
    border: 0;
    border-bottom: 1px solid #e8ded8;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.woocommerce-account table.shop_table td {
    padding: 15px;
    border: 0;
    border-bottom: 1px solid #f0e8e4;
    color: #62534c;
    font-size: 13px;
    vertical-align: middle;
}

.woocommerce-account table.shop_table tr:last-child td {
    border-bottom: 0;
}

.woocommerce-account table.shop_table .button {
    min-height: 36px;
    padding: 9px 15px !important;
}

.woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
    width: auto;
    float: none;
    margin: 0;
    padding: 22px;
    border: 1px solid #e8ded8;
    border-radius: 16px;
    background: #fffdfc;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title h3 {
    float: none;
    margin: 0;
    font-size: 23px;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address-title .edit {
    float: none;
    font-size: 12px;
}

.woocommerce-account address {
    color: #74665f;
    font-style: normal;
    line-height: 1.75;
}

.woocommerce-account fieldset {
    margin: 28px 0 0;
    padding: 22px;
    border: 1px solid #e8ded8;
    border-radius: 16px;
}

.woocommerce-account fieldset legend {
    padding: 0 8px;
    color: #3b251d;
    font: 500 20px Georgia, serif;
}

.woocommerce-account .woocommerce-Message,
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
    margin: 0 0 22px !important;
    padding: 16px 18px 16px 48px !important;
    border: 1px solid #eadfda !important;
    border-top: 0 !important;
    border-radius: 13px;
    background: #fffaf8;
    color: #57453e;
    box-shadow: none;
}

.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before {
    color: #9b2c68;
    top: 16px;
}

/* Lost password / reset password pages use the same premium card. */
.woocommerce-account .lost_reset_password {
    max-width: 680px;
    margin: 0 auto 60px !important;
    padding: 32px !important;
    border: 1px solid #e8ded8 !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 20px 50px rgba(55,28,19,.07);
}

/* =========================================================
   v1.3 HOMEPAGE BRANDS + SHOP BRAND FILTER
   ========================================================= */
.styles-home-brands {
    padding-top: 34px;
    padding-bottom: 72px;
    background: #fffdfb;
    border-top: 1px solid #eee5e0;
    border-bottom: 1px solid #eee5e0;
}

.styles-home-brands__head {
    align-items: end;
}

.styles-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.styles-brand-card {
    display: flex;
    min-width: 0;
    min-height: 132px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 14px 13px;
    border: 1px solid #e8dfda;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(50,27,19,.04);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.styles-brand-card:hover,
.styles-brand-card:focus-visible {
    transform: translateY(-3px);
    border-color: #d7bdc9;
    box-shadow: 0 18px 38px rgba(50,27,19,.08);
}

.styles-brand-card__logo {
    display: grid;
    width: 100%; 
    place-items: center;
}

.styles-brand-card__logo img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 225px;
    object-fit: contain;
}

.styles-brand-card__logo strong {
    color: #3a241c;
    font: 600 18px/1.15 Georgia, serif;
    text-align: center;
}

.styles-brand-card__name {
    max-width: 100%;
    overflow: hidden;
    color: #75665f;
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.styles-brand-filter {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--filter-border, #e5ddd8);
}

.styles-brand-filter h3 {
    margin: 0 0 13px;
    color: var(--filter-text, #211814);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.styles-brand-filter__list {
    display: grid;
    gap: 4px;
}

.styles-brand-filter__item {
    display: grid;
    grid-template-columns: 18px 28px minmax(0, 1fr);
    align-items: center;
    min-height: 40px;
    gap: 9px;
    padding: 7px 8px;
    border-radius: 9px;
    color: #655851;
    font-size: 12px;
    transition: color .2s ease, background .2s ease;
}

.styles-brand-filter__item.no-logo {
    grid-template-columns: 18px minmax(0, 1fr);
}

.styles-brand-filter__item:hover {
    color: #32170f;
    background: #f8f2ee;
}

.styles-brand-filter__item img {
    width: 28px;
    height: 24px;
    object-fit: contain;
}

.styles-brand-filter__check {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #d8cdc7;
    border-radius: 4px;
    background: #fff;
}

.styles-brand-filter__item.is-selected .styles-brand-filter__check {
    border-color: #b22b6b;
    background: linear-gradient(135deg, #d71970, #6a2d91);
}

.styles-brand-filter__item.is-selected .styles-brand-filter__check::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.styles-brand-filter__item.is-selected {
    color: #32170f;
    font-weight: 700;
}

.styles-brand-filter__clear {
    display: inline-block;
    margin-top: 12px;
    color: #8e245c;
    font-size: 11px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1024px) {
    .styles-brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .styles-account-auth-layout {
        grid-template-columns: 1fr;
    }

    .styles-account-welcome {
        min-height: 330px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
        float: none;
        padding-right: 0;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin: 0 0 16px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        position: static;
        display: flex;
        overflow-x: auto;
        gap: 6px;
        padding: 7px;
        scrollbar-width: thin;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation li {
        flex: 0 0 auto;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation li + li {
        border: 0;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation li a {
        padding: 10px 13px;
        white-space: nowrap;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation li.is-active a::before {
        display: none;
    }

    .styles-brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .styles-account-page {
        padding-bottom: 50px;
    }

    .styles-account-hero {
        padding: 34px 0 22px;
    }

    .styles-account-hero h1 {
        font-size: 44px;
    }

    .styles-account-auth-layout {
        border-radius: 20px;
    }

    .styles-account-welcome,
    .styles-account-auth-card {
        padding: 28px 22px;
    }

    .styles-account-welcome {
        min-height: 300px;
    }

    .styles-account-auth-card .u-columns {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        min-height: 0;
        padding: 22px 17px;
        border-radius: 18px;
    }

    .woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }

    .woocommerce-account table.shop_table_responsive tr {
        margin-bottom: 12px;
        overflow: hidden;
        border: 1px solid #e8ded8;
        border-radius: 12px;
        background: #fff;
    }

    .woocommerce-account table.shop_table_responsive tr td {
        border-bottom: 1px solid #f0e8e4;
    }

    .woocommerce-account table.shop_table_responsive tr td:last-child {
        border-bottom: 0;
    }

    .styles-brand-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 10px;
    }

    .styles-brand-card {
        min-height: 112px;
        padding: 14px 10px 10px;
    }

    

   
}
section#story {
    margin-top: 70px;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button {
    min-height: 38px;
    padding: 9px 16px !important;
    font-size: 15px;
    letter-spacing: .01em;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2a160f, #4c271b);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(53, 26, 17, .14);
    border-radius: 999px;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button:hover {
    background: var(--istyles-gradient);
}

/* =========================================================
   CHECKOUT - GUEST / LOGIN PANEL
========================================================= */

.styles-checkout-access {
    margin: 0 0 32px;
    padding: 28px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px 35px;

    background: #fff;
    border: 1px solid #e8ddd8;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(52, 29, 20, .06);
}


/* Heading */

.styles-checkout-access-eyebrow {
    display: block;
    margin-bottom: 7px;

    color: #d80b62;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.styles-checkout-access h3 {
    margin: 0 0 7px;

    color: #281811;
    font-family: inherit;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.styles-checkout-access-copy > p {
    margin: 0;

    color: #75625b;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   BUTTONS
========================================================= */

.styles-checkout-access-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.styles-checkout-access .button {
    min-height: 46px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 12px 22px !important;

    border: 1px solid #35180f !important;
    border-radius: 999px !important;

    box-shadow: none !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


/* Continue as guest */

.styles-checkout-access .styles-guest-checkout-button {
    min-width: 155px;

    color: #fff !important;
    background: #35180f !important;
}

.styles-checkout-access .styles-guest-checkout-button:hover {
    color: #fff !important;
    background: #51271a !important;
    transform: translateY(-1px);
}


/* Top login button */

.styles-checkout-access .styles-login-toggle {
    min-width: 78px;

    color: #35180f !important;
    background: #fff !important;
}

.styles-checkout-access .styles-login-toggle:hover {
    color: #fff !important;
    background: #35180f !important;
}


/* =========================================================
   OPEN LOGIN AREA
========================================================= */

.styles-checkout-login-panel {
    grid-column: 1 / -1;

    margin-top: 2px;
    padding: 28px;

    background: #faf7f5;
    border: 1px solid #eee3de;
    border-radius: 16px;
}

.styles-checkout-login-panel[hidden] {
    display: none !important;
}


/* WooCommerce form */

.styles-checkout-login-panel .woocommerce-form-login {
    max-width: 760px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 26px;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;
}


/* Login message */

.styles-checkout-login-panel .woocommerce-form-login > p:first-child {
    grid-column: 1 / -1;

    margin: 0 0 2px !important;

    color: #75625b;
    font-size: 13px;
    line-height: 1.6;
}


/* Field rows */

.styles-checkout-login-panel .form-row {
    margin: 0 !important;
    padding: 0 !important;
}

.styles-checkout-login-panel .form-row-first,
.styles-checkout-login-panel .form-row-last {
    width: 100% !important;
    float: none !important;
}


/* Labels */

.styles-checkout-login-panel label {
    display: block;

    margin: 0 0 7px;

    color: #45342e;
    font-size: 12px;
    font-weight: 600;
}


/* Inputs */

.styles-checkout-login-panel input[type="text"],
.styles-checkout-login-panel input[type="email"],
.styles-checkout-login-panel input[type="password"] {
    width: 100%;
    height: 48px;

    padding: 0 15px;

    color: #251812;
    background: #fff;

    border: 1px solid #ded2cd;
    border-radius: 9px;

    outline: none;

    font-size: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.styles-checkout-login-panel input[type="text"]:focus,
.styles-checkout-login-panel input[type="email"]:focus,
.styles-checkout-login-panel input[type="password"]:focus {
    border-color: #713928;

    box-shadow: 0 0 0 3px rgba(113, 57, 40, .08);
}


/* Password wrapper */

.styles-checkout-login-panel .password-input {
    width: 100%;
}


/* Row containing Remember Me + Login */

.styles-checkout-login-panel .woocommerce-form-login__rememberme {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-right: 14px;

    color: #68564f;
    font-size: 12px;
    cursor: pointer;
}

.styles-checkout-login-panel
.woocommerce-form-login__rememberme input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #35180f;
}


/* Actual login button */

.styles-checkout-login-panel
.woocommerce-form-login__submit {
    min-width: 115px !important;
    min-height: 44px !important;

    margin-top: 12px !important;

    color: #fff !important;
    background: #35180f !important;

    border: 1px solid #35180f !important;
    border-radius: 999px !important;
}

.styles-checkout-login-panel
.woocommerce-form-login__submit:hover {
    background: #51271a !important;
}


/* Remember/login row */

.styles-checkout-login-panel
.woocommerce-form-login > .form-row:nth-last-of-type(2) {
    grid-column: 1 / -1;
}


/* Lost password */

.styles-checkout-login-panel .lost_password {
    grid-column: 1 / -1;

    margin: -5px 0 0 !important;
}

.styles-checkout-login-panel .lost_password a {
    color: #6f5147;
    font-size: 12px;
    text-decoration: none;
}

.styles-checkout-login-panel .lost_password a:hover {
    color: #d80b62;
    text-decoration: underline;
}


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

@media (max-width: 768px) {

    .styles-checkout-access {
        padding: 22px 18px;

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

    .styles-checkout-access h3 {
        font-size: 19px;
    }

    .styles-checkout-access-actions {
        width: 100%;
    }

    .styles-checkout-access-actions .button {
        flex: 1;
    }

    .styles-checkout-login-panel {
        padding: 20px 16px;
    }

    .styles-checkout-login-panel .woocommerce-form-login {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .styles-checkout-login-panel
    .woocommerce-form-login > p:first-child,
    .styles-checkout-login-panel
    .woocommerce-form-login > .form-row:nth-last-of-type(2),
    .styles-checkout-login-panel .lost_password {
        grid-column: 1;
    }

}


/* Small phones */

@media (max-width: 480px) {

    .styles-checkout-access-actions {
        flex-direction: column;
    }

    .styles-checkout-access-actions .button {
        width: 100%;
    }

    .styles-checkout-access .styles-guest-checkout-button,
    .styles-checkout-access .styles-login-toggle {
        width: 100%;
    }

}

a.button.alt.styles-guest-checkout-button:hover,.styles-checkout-login-panel .woocommerce-form-login__submit:hover{
	    background: var(--istyles-gradient);
}

.styles-checkout-login-panel .woocommerce-form-login__submit{
	cursor:pointer;
}.istyles-order-model {
	margin-top: 5px;
	font-size: 12px;
	color: #6d5b54;
	line-height: 1.4;
}

.istyles-order-model strong {
	color: #291a15;
	font-weight: 600;
}

.woocommerce-order .woocommerce-message {
    border-top-color: #8fae1b !important;
    border-top: 5px solid #a6cd11 !important;
    background: rgb(179 212 57 / 46%) !important;outline: unset;
}
.woocommerce-error {
    border-left: 4px solid #b93434;
    outline: unset;
    background: #ffc6c6;
}
table.istyles-product-details th {
    text-align: left;
}
.woocommerce-variation-description {
    display: none;
}/* WooCommerce sale price */
.woocommerce ul.products li.product .price del,
.single-product .summary .price del {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-decoration: line-through !important;
    margin-right: 8px;
}

/* Product cards use sale price first; preserve the existing colours. */
.woocommerce ul.products li.product .price del {
	margin-right: 0;
	margin-left: 8px;
}

/* Guarantee sale-first order on Home/Shop without changing price colours. */
.woocommerce ul.products li.product .price {
	display: inline-flex !important;
	align-items: baseline;
	flex-wrap: wrap;
}

.woocommerce ul.products li.product .price ins {
	order: 1;
}

.woocommerce ul.products li.product .price del {
	order: 2;
}

.woocommerce ul.products li.product .price ins,
.single-product .summary .price ins {
    display: inline !important;
    text-decoration: none !important;
    font-weight: 600;
}

/* ==========================================================
   iStyles checkout, order details and QR payment emphasis
   ========================================================== */
body.woocommerce-checkout .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-item__value {
	font-size: 14px !important;
	font-weight: 750 !important;
	color: #2b1745 !important;
}

body.woocommerce-checkout .wc-block-components-totals-wrapper {
	padding: 14px 12px !important;
	border-left: 4px solid #e50067 !important;
	background: linear-gradient(90deg, #fff4f9 0%, #faf6ff 100%);
}

body.woocommerce-checkout .wc-block-components-totals-discount,
body.woocommerce-checkout .wc-block-components-totals-coupon {
	border-left-color: #6f2c91 !important;
	background: #f7effc !important;
}

body.woocommerce-checkout .wc-block-components-totals-footer-item {
	margin-top: 4px;
	border-left-color: #6f2c91 !important;
	background: linear-gradient(100deg, #fff0f7 0%, #f2e9fa 100%) !important;
}

body.woocommerce-checkout .wc-block-components-totals-footer-item
.wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-footer-item
.wc-block-components-totals-item__value {
	font-size: 20px !important;
	font-weight: 850 !important;
	color: #5c247d !important;
}

/* Classic checkout fallback. */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table tfoot th {
	font-weight: 800 !important;
	color: #5c247d !important;
}

.woocommerce-checkout-review-order-table tfoot tr {
	background: linear-gradient(90deg, #fff4f9, #f6effb);
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
	font-size: 19px !important;
	font-weight: 850 !important;
	color: #d80b55 !important;
}

/* Thank-you page order details. */
.woocommerce-order .woocommerce-order-details > h2,
.woocommerce-order .woocommerce-order-details__title {
	font-size: clamp(24px, 3vw, 32px) !important;
	font-weight: 800 !important;
	color: #5c247d !important;
}

.woocommerce-order table.woocommerce-table--order-details {
	border-top: 5px solid #e50067 !important;
	box-shadow: 0 14px 34px rgba(92, 36, 125, .10);
}

.woocommerce-order table.woocommerce-table--order-details thead th,
.woocommerce-order table.woocommerce-table--order-details tfoot th {
	font-weight: 800 !important;
	color: #5c247d !important;
}

.woocommerce-order table.woocommerce-table--order-details tfoot tr:nth-last-child(-n+2) {
	background: linear-gradient(90deg, #fff4f9, #f6effb);
}

.woocommerce-order table.woocommerce-table--order-details tfoot td {
	font-weight: 750 !important;
	color: #2b1745 !important;
}

/* QR instructions: easier to notice and read. */
.styles-payment-copy {
	padding: 22px 24px;
	border-left: 5px solid #e50067;
	border-radius: 0 16px 16px 0;
	background: linear-gradient(100deg, #fff5f9 0%, #f7f0fc 100%);
	color: #33213f !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.7 !important;
}

.styles-payment-copy p {
	margin-top: 0;
	font-size: 17px !important;
	font-weight: 700 !important;
}

.styles-payment-copy ol {
	margin-top: 14px !important;
}

.styles-payment-copy li::marker {
	color: #e50067;
	font-weight: 900;
}

.styles-payment-copy li + li {
	margin-top: 9px !important;
}

/* Payment-proof confirmation: prominent green success treatment. */
.woocommerce-order .woocommerce-message {
	position: relative;
	min-height: 72px;
	display: flex;
	align-items: center;
	margin: 26px 0 !important;
	padding: 20px 24px 20px 62px !important;
	border: 2px solid #5c9e22 !important;
	border-top: 6px solid #357a18 !important;
	border-radius: 16px !important;
	background: linear-gradient(105deg, #f3fbdc 0%, #dff2aa 100%) !important;
	color: #244f16 !important;
	font-size: 17px !important;
	font-weight: 800 !important;
	line-height: 1.45 !important;
	box-shadow: 0 14px 32px rgba(65, 124, 27, .16) !important;
}

.woocommerce-order .woocommerce-message::before {
	top: 50% !important;
	left: 24px !important;
	transform: translateY(-50%);
	color: #357a18 !important;
	font-size: 22px !important;
}

/* Hide short descriptions in the Checkout Block order summary only. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.wc-block-checkout__sidebar
.wc-block-components-product-metadata__description,
body.woocommerce-checkout:not(.woocommerce-order-received)
.wc-block-checkout__sidebar
.wc-block-components-product-metadata > p {
	display: none !important;
}

/* Hide the duplicate regular/sale price below the checkout product name.
   The correct line-item price on the right remains visible. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.wc-block-checkout__sidebar
.wc-block-components-order-summary-item__description
> .wc-block-components-product-price,
body.woocommerce-checkout:not(.woocommerce-order-received)
.wc-block-checkout__sidebar
.wc-block-components-order-summary-item__description
.wc-block-components-product-metadata
.wc-block-components-product-price {
	display: none !important;
}

/* Billing/shipping address cards on the order-received page. */
.woocommerce-order .woocommerce-customer-details {
	margin-top: 34px;
}

.woocommerce-order .woocommerce-customer-details > h2,
.woocommerce-order .woocommerce-column__title {
	margin-bottom: 14px !important;
	font-size: clamp(23px, 3vw, 30px) !important;
	font-weight: 800 !important;
	color: #5c247d !important;
}

.woocommerce-order .woocommerce-customer-details address {
	position: relative;
	min-height: 190px;
	padding: 24px 26px 24px 30px !important;
	border: 1px solid #e2d5e9 !important;
	border-left: 6px solid #e50067 !important;
	border-radius: 16px !important;
	background: linear-gradient(115deg, #fff 0%, #fff6fa 58%, #f7f0fc 100%) !important;
	color: #35263d !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	line-height: 1.65 !important;
	box-shadow: 0 14px 34px rgba(92, 36, 125, .10);
}

.woocommerce-order .woocommerce-customer-details address p {
	margin: 12px 0 0 !important;
	padding-top: 12px;
	border-top: 1px solid #eadfeb;
	color: #5c247d !important;
	font-weight: 750 !important;
}

@media (max-width: 768px) {
	body.woocommerce-checkout .wc-block-components-totals-wrapper {
		padding: 12px 10px !important;
	}

	.styles-payment-copy {
		padding: 18px;
		font-size: 15px !important;
	}

	.woocommerce-order .woocommerce-message {
		font-size: 15px !important;
		padding: 18px 18px 18px 54px !important;
	}
}

.styles-initial-variable-price {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 10px 0 15px;
}

.styles-price-label {
    min-width: 100px;
    color: #756d68;
}

.styles-price-value {
    font-size: 20px;
    font-weight: 600;
}

.styles-price-value del {
    opacity: .8;
    margin-right: 7px;
}

.styles-price-value ins {
    text-decoration: none;
}
.single_variation_wrap .styles-initial-variable-price {
    display: none !important;
}
span.wc-block-components-order-summary-item__individual-prices.price.wc-block-components-product-price {
    display: none;
}

body.woocommerce-checkout .wc-block-checkout {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    justify-content: center !important;
    column-gap: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Display the error above both checkout columns */
body.woocommerce-checkout
.wc-block-checkout > .wc-block-components-notices,
body.woocommerce-checkout
.wc-block-checkout > .wc-block-components-notice-banner,
body.woocommerce-checkout
.wc-block-checkout > .woocommerce-NoticeGroup,
body.woocommerce-checkout
.wc-block-checkout > [role="alert"] {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    order: 0 !important;
    margin: 0 0 28px !important;
}

/* Keep both checkout boxes in their original positions */
body.woocommerce-checkout .wc-block-checkout__main {
    order: 1 !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
    order: 2 !important;
}

/* Account for the 28px gap so both boxes remain on the same row */
body.woocommerce-checkout .wc-block-checkout__main {
    flex: 1 1 calc(64% - 14px) !important;
    flex-basis: calc(64% - 14px) !important;
    width: calc(64% - 14px) !important;
    order: 1 !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
    flex: 0 0 calc(36% - 14px) !important;
    flex-basis: calc(36% - 14px) !important;
    width: calc(36% - 14px) !important;
    order: 2 !important;
}

/* Stack normally on tablets and mobiles */
@media (max-width: 900px) {
    body.woocommerce-checkout .wc-block-checkout__main,
    body.woocommerce-checkout .wc-block-checkout__sidebar {
        flex: 0 0 100% !important;
        flex-basis: 100% !important;
        width: 100% !important;
    }
}
/* Dynamic UPI QR generated after the WooCommerce order is created. */
.styles-qr-dynamic-notice {
	margin: 14px 0;
	padding: 13px 15px;
	background: #fff6f8;
	border: 1px solid #f6d8e3;
	border-radius: 12px;
	color: #4d3239;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
}

.styles-payment-qr-caption {
	margin: 10px 0 0;
	color: #5f514c;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}


/* ==============================================================
   Checkout phone validation - match WooCommerce inline field errors
   ============================================================== */
body.woocommerce-checkout .wc-block-components-text-input.styles-phone-invalid input,
body.woocommerce-checkout .wc-block-components-text-input.has-error.styles-phone-invalid input {
	border-color: #cc1818 !important;
	box-shadow: 0 0 0 1px #cc1818 !important;
}

body.woocommerce-checkout .wc-block-components-text-input.styles-phone-invalid label,
body.woocommerce-checkout .wc-block-components-text-input.has-error.styles-phone-invalid label {
	color: #cc1818 !important;
}

body.woocommerce-checkout .styles-phone-validation-error {
	margin: 5px 0 0 !important;
	padding: 0 !important;
	color: #cc1818 !important;
	font-size: 12px !important;
	line-height: 1.35 !important;
}

body.woocommerce-checkout .styles-phone-validation-error p {
	margin: 0 !important;
	color: #cc1818 !important;
	font-size: 12px !important;
	line-height: 1.35 !important;
}

/* ==============================================================
   My Account > Addresses: keep billing and shipping cards aligned.
   WooCommerce adds clearfix ::before / ::after to .col2-set.
   Those pseudo-elements become extra grid cells unless disabled.
   ============================================================== */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses::before,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses::after {
    content: none !important;
    display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > .woocommerce-Address {
    min-width: 0;
    width: 100% !important;
    float: none !important;
}

/* Give the address heading and edit link room inside narrow cards. */
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title {
    display: block;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title h3 {
    font-size: 20px;
    line-height: 1.3;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title .edit {
    display: inline-block;
    margin-top: 5px;
}
