:root {
	--color-primary: #304b3b;
	--color-secondary: #a05b53;
	--color-text: #111111;
	--color-bg: #ffffff;
	--color-muted: #f9f5f0;
	--color-soft: #e7f2df;
	--color-dark: #000000;
	--primary-color: #2D4739;
	--primary-hover: #1e3126;
	--white: #ffffff;
	--transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.2s ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Poppins", Arial, sans-serif;
	color: var(--color-text);
	background: var(--color-bg);
}

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

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

.container{
	max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.topbar {
	background: var(--color-primary);
	color: #fff;
	font-size: 1rem;
}

.topbar__inner {
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.topbar__right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.topbar__link {
	opacity: 0.95;
	transition: opacity 0.3s ease;
}

.topbar__link:hover {
	opacity: 1;
}

.has-chevron {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.topbar__separator {
	color: #596f62;
	margin: 0 0.25rem;
}

.topbar__socials {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.topbar__social-label {
	margin-right: 0.25rem;
}

.social-icon {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #fff;
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.social-icon:hover {
	background-color: var(--color-primary);
	color: #fff;
	border-color: #fff;
}

.site-header__brand img{
    width: 158px;
    height: auto;
}

.site-header {
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 10;
}

.site-header__inner {
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-logo img {
	max-height: 42px;
	width: auto;
}

.site-logo__text {
	font-weight: 700;
	font-size: 1.5rem;
}

.menu--primary {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}

.menu--primary li {
	position: relative;
}

.menu--primary a {
	font-size: 1rem;
	font-weight: 400;
	color: #000;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
	line-height: 1;
}

/* Base underline with absolute positioning matching -bottom-7 in React (28px) */
.menu--primary a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -32px;
	height: 3px;
	width: 100%;
	border-radius: 999px;
	background-color: var(--color-primary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease-out;
}

/* Active State */
.menu--primary li.current-menu-item a,
.menu--primary li.current_page_item a {
	color: var(--color-primary);
	font-weight: 500;
}

.menu--primary li.current-menu-item a::after,
.menu--primary li.current_page_item a::after {
	transform: scaleX(1);
}

/* Hover State */
.menu--primary a:hover {
	color: var(--color-primary);
}

.menu--primary li:hover a::after {
	transform: scaleX(1);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.site-header__actions-left {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.site-header__actions-right {
	display: flex;
	align-items: center;
}

.site-header__actions .wishlist-btn {
	margin-right: 1.5rem;
}

.actions-separator {
	color: #e5e7eb;
}

.icon-btn {
	border: 0;
	background: transparent;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--color-primary);
	position: relative;
	transition: all 0.4s ease-out;
	padding: 6px;
	overflow: hidden;
}

.icon-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background-color: var(--color-primary);
	transform-origin: left;
	transform: scaleX(0);
	transition: transform 0.3s ease-out;
}

.icon-btn:hover {
	color: #fff;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transform: scale(1.05);
}

.icon-btn:hover::before {
	transform: scaleX(1);
}

.icon-btn svg {
	position: relative;
	z-index: 10;
}

.cart-pill {
	background: var(--color-soft);
	border-radius: 999px;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	padding: 5px;
	transition: all 0.3s ease;
}

.cart-pill__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-pill__price {
	color: #000;
	font-weight: 400;
	font-size: 1rem;
	padding-right: 0.75rem;
}

.section {
	padding: 4.5rem 0;
}

.section--light,
.hero {
	background: #f3f3f3;
}

.section--beige {
	background: var(--color-muted);
}

.section--texture {
	background: var(--color-soft);
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 2.5rem;
	align-items: center;
}

/* hero section */
/* SECTION */
.hero-section {
    position: relative;
}

.hero-bg-paper-structure {
    background-image: url(http://localhost/styluza-wp/wp-content/uploads/2026/03/paper-texture.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #F9F5F0;
    opacity: 0.8;
    z-index: 0;
}

/* INNER */
.hero-inner {
    position: relative;
    z-index: 1;
}

/* LEFT SVG */
.hero-left-shape {
    position: absolute;
    bottom: 320px;
    display: none;
}

@media (min-width: 768px) {
    .hero-left-shape {
        display: block;
    }
}

/* CONTAINER */
.hero-container {
    max-width: 1280px;
    /* max-w-7xl */
    margin: 0 auto;
    padding: 56px 16px;
    padding-right: 0;
}

/* FLEX */
.hero-flex {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* RESPONSIVE GAP */
@media (min-width: 640px) {
    .hero-flex {
        gap: 36px;
    }
}

@media (min-width: 768px) {
    .hero-flex {
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-flex {
        gap: 60px;
    }
}

@media (min-width: 1280px) {
    .hero-flex {
        gap: 84px;
    }
}

/* TEXT */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.hero-text h1 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    color: black;
    margin: 0;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 48px;
    }
}

@media (min-width: 1280px) {
    .hero-text h1 {
        font-size: 60px;
    }
}

.hero-text h1 span {
    color: #a05b53;
}

/* PARAGRAPH */
.hero-text p {
    font-size: 14px;
    max-width: 448px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-text p {
        font-size: 16px;
    }
}

@media (min-width: 640px) {
    .hero-text p {
        margin-bottom: 40px;
    }
}

/* BUTTON */
.hero-btn-wrap {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;

    padding: 0.75rem 1.75rem;
    height: 2.5rem;

    color: #fff;
    background-color: var(--primary-color);

    border: none;
    outline: none;
    border-radius: 999px;

    position: relative;
    overflow: hidden;

    transition: background-color 0.4s ease-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 0;
    cursor: pointer;

    flex-shrink: 0;
}



.hero-btn svg {
    pointer-events: none;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.hero-btn:hover {
    background-color: rgba(45, 71, 57, 0.9);
    /* primary/90 */
}


.hero-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: black;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.4s ease-out;
    z-index: -1;
}

.hero-btn:hover::before {
    transform: scaleX(1);
}

/* IMAGE */
.hero-image-wrap {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero-image-wrap {
        margin-top: 0;
        overflow: visible;
    }
}

.hero-image-inner {
    position: relative;
    width: auto;
    margin-right: calc(-49vw + 50%);
}

@media (min-width: 640px) {
    .hero-image-inner {
        margin-right: 0;
    }
}

.hero-image-inner img {
    width: 100%;
    border-radius: 8px;
    animation: fadeIn 0.5s ease;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RIGHT SVG */
.hero-right-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.95rem 1.8rem;
	border-radius: 999px;
	font-weight: 600;
}

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

.section__header {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 2.25rem;
}

.section__header--tabs {
	max-width: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
	text-align: left;
}

.section__title {
	font-size: clamp(2rem, 4vw, 2.875rem);
	margin: 0 0 0.75rem;
}

.section__subtitle {
	margin: 0;
	line-height: 1.7;
}

.tabs {
	display: inline-flex;
	border: 1px solid var(--color-primary);
	border-radius: 999px;
	overflow: hidden;
}

.tabs__item {
	border: 0;
	background: transparent;
	padding: 0.65rem 1.25rem;
	cursor: pointer;
}

.tabs__item.is-active {
	background: var(--color-primary);
	color: #fff;
}

.cards-grid {
	display: grid;
	gap: 1.35rem;
}

.cards-grid--category {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid--product,
.cards-grid--testimonial {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card--category {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	min-height: 430px;
}

.card--category img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card--category h3 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 1rem;
	font-family: "Georgia", "Times New Roman", serif;
	font-size: 2rem;
	color: #fff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	text-align: center;
}

.product-card {
	position: relative;
	border: 1px solid rgba(160, 91, 83, 0.6);
	border-radius: 16px;
	padding: 0 1.2rem 1.25rem;
	background: #fff;
}

.product-card img {
	width: calc(100% + 2.4rem);
	margin: 0 -1.2rem 1rem;
	border-radius: 16px 16px 0 0;
	aspect-ratio: 393/250;
	object-fit: cover;
}

.product-card .badge {
	position: absolute;
	top: 1rem;
	left: 0;
	background: var(--color-primary);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 0 8px 8px 0;
	font-size: 0.95rem;
}

.product-card__meta {
	display: flex;
	justify-content: space-between;
	gap: 0.8rem;
	font-size: 0.95rem;
	margin-bottom: 0.35rem;
}

.product-card h3 {
	font-family: "Georgia", "Times New Roman", serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.2;
	margin: 0.5rem 0;
}

.product-card .price {
	font-size: 2rem;
	font-weight: 600;
	color: var(--color-primary);
	margin: 0.25rem 0 0.75rem;
}

.product-card a {
	color: var(--color-primary);
	font-weight: 600;
	text-transform: uppercase;
}

.feature-strip {
	background: #fff;
	border: 1px solid var(--color-primary);
	border-radius: 16px;
	padding: 1.6rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.feature-strip h3 {
	font-family: "Georgia", "Times New Roman", serif;
	font-size: 2rem;
	margin: 0 0 0.45rem;
}

.feature-strip p {
	margin: 0;
	line-height: 1.6;
}

.testimonial {
	border: 1px solid rgba(160, 91, 83, 0.7);
	border-radius: 16px;
	padding: 0 1.25rem 1.5rem;
	text-align: center;
	background: #fff;
}

.testimonial__cover {
	width: calc(100% + 2.5rem);
	margin: 0 -1.25rem 0.8rem;
	border-radius: 16px 16px 0 0;
	aspect-ratio: 393/337;
	object-fit: cover;
}

.testimonial__avatar {
	width: 88px;
	height: 88px;
	object-fit: cover;
	border-radius: 50%;
	border: 5px solid #fff;
	margin: -3.2rem auto 0.8rem;
	background: #fff;
}

.testimonial h3 {
	font-family: "Georgia", "Times New Roman", serif;
	font-size: 2rem;
	margin: 0.25rem 0;
}

.stars {
	color: #f29f05;
	margin: 0 0 0.6rem;
	font-size: 1.1rem;
}

.testimonial p {
	line-height: 1.7;
}

.instagram-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	align-items: end;
}

.instagram-strip img {
	border: 5px solid var(--color-primary);
	border-radius: 16px;
	aspect-ratio: 1/1.35;
	object-fit: cover;
}

.instagram-strip .is-featured {
	transform: scale(1.05);
}

.section__cta {
	text-align: center;
	margin: 2rem 0 0;
}

.newsletter {
	background: linear-gradient(90deg, #2f5040 0%, #304b3b 50%, #345a49 100%);
	color: #fff;
	padding: 5rem 0;
}

.newsletter__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: center;
}

.newsletter h2 {
	font-size: clamp(2rem, 4vw, 2.875rem);
	margin: 0 0 0.5rem;
}

.newsletter__content p {
	line-height: 1.7;
	margin: 0 0 1.25rem;
}

.newsletter__form {
	border: 1px solid #fff;
	border-radius: 999px;
	display: flex;
	align-items: center;
	padding: 0.3rem;
	max-width: 640px;
}

.newsletter__form input {
	border: 0;
	background: transparent;
	color: #fff;
	flex: 1;
	padding: 0.85rem 1rem;
}

.newsletter__form input::placeholder {
	color: rgba(255, 255, 255, 0.85);
}

.newsletter__form button {
	border: 0;
	background: #fff;
	color: var(--color-primary);
	border-radius: 999px;
	padding: 0.8rem 1.25rem;
	font-weight: 600;
	cursor: pointer;
}

.newsletter__image img {
	max-width: 360px;
}

.site-footer {
	background: #000;
	color: #fff;
	padding-top: 4.5rem;
}

.footer__brand img {
    width: 158px;
    height: auto;
}

.footer__top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
	gap: 1.5rem;
}

.footer__brand p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
}

.footer__nav h3,
.footer__contact h3 {
	margin-top: 0;
	font-size: 1.25rem;
}

.footer__nav ul,
.footer__contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.9);
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 2.25rem;
	padding: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.95rem;
}

.footer__payments {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.footer__payments img {
	height: 32px;
	width: auto;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: block;
}

.footer__payments img:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Feature Products Section
   ============================================ */
.stz-featured-section {
	padding-top: 3rem;
	padding-bottom: 3.75rem;
	background-color: #fbf7f0; /* bg-cream */
	overflow: hidden;
}

.stz-container-fluid {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.stz-featured-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 2.5rem;
	position: relative;
}

.stz-featured-header-text {
	max-width: 42rem;
}

.stz-featured-title {
	font-family: 'Begum', serif;
	font-size: clamp(1.875rem, 4vw, 2.875rem);
	font-weight: 600;
	color: #000;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.stz-featured-subtitle {
	font-size: 1rem;
	color: #000;
	line-height: 1.5;
	margin: 0;
}

.stz-featured-nav {
	display: flex;
	gap: 0.5rem;
	position: absolute;
	right: 0;
}

@media (min-width: 768px) {
	.stz-featured-nav {
		right: 3rem;
	}
}

.stz-nav-arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--color-primary, #304B3B);
	background: transparent;
	color: var(--color-primary, #304B3B);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	overflow: hidden;
	position: relative;
	transition: color 0.3s ease;
}

@media (min-width: 768px) {
	.stz-nav-arrow {
		width: 48px;
		height: 48px;
	}
}

.stz-nav-arrow::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--color-primary, #304B3B);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease-out;
	z-index: -1;
}

.stz-nav-arrow:hover {
	color: #fff;
}

.stz-nav-arrow:hover::before {
	transform: scaleX(1);
}

.stz-featured-swiper {
	overflow: visible;
}

.stz-product-slide {
	height: auto;
}

.stz-pro-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.stz-pro-img-wrap {
	position: relative;
	overflow: hidden;
	clip-path: url(#clip-square);
	background: #f0f0f0;
	aspect-ratio: 1 / 1.335877;
}

.stz-pro-link {
	display: block;
	width: 100%;
	height: 100%;
}

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

.stz-pro-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.4);
	opacity: 0;
	transition: opacity 0.3s ease;
	cursor: pointer;
	pointer-events: none;
}

.stz-pro-card:hover .stz-pro-img {
	transform: scale(1.05);
}

.stz-pro-card:hover .stz-pro-overlay {
	opacity: 1;
}

.stz-pro-actions {
	position: absolute;
	top: 30%;
	left: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

@media(min-width: 640px) {
	.stz-pro-actions {
		top: 50%;
		transform: translateY(-50%);
	}
}

.stz-pro-action-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	color: var(--color-primary, #304B3B);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.4s ease;
	cursor: pointer;
}

.stz-pro-card:hover .stz-pro-action-btn {
	opacity: 1;
	transform: translateX(0);
}

.stz-pro-action-btn:nth-child(1) { transition-delay: 0.05s; }
.stz-pro-action-btn:nth-child(2) { transition-delay: 0.1s; }
.stz-pro-action-btn:nth-child(3) { transition-delay: 0.15s; }

.stz-pro-action-btn:hover {
	background: var(--color-primary, #304B3B);
	color: #fff;
	transform: scale(1.1) translateX(0) !important;
}

.stz-pro-meta {
	padding-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex-grow: 1;
	justify-content: space-between;
}

.stz-pro-meta-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.stz-pro-rating {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.stz-star { color: #d0d0d0; font-size: 1.125rem; }
.stz-star-filled { color: #f5a524; }
.stz-pro-reviews { color: #666; font-size: 0.875rem; font-weight: 500; margin-left: 0.25rem; }

.stz-pro-old-price.md-hide {
	display: block;
	color: #808080;
	text-decoration: line-through;
	font-size: 0.875rem;
}

.stz-pro-old-price.md-show {
	display: none;
	color: #808080;
	text-decoration: line-through;
	font-size: 1rem;
}

@media (min-width: 768px) {
	.stz-pro-old-price.md-hide { display: none; }
	.stz-pro-old-price.md-show { display: block; }
}

.stz-pro-meta-mid {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.stz-pro-title {
	font-family: 'Begum', serif;
	font-size: clamp(1.125rem, 2vw, 1.35rem);
	font-weight: 500;
	margin: 0;
	line-height: 1.2;
	flex: 1 1 50%;
}
.stz-pro-title a { color: #000; text-decoration: none; transition: color 0.2s; }
.stz-pro-title a:hover { color: var(--color-primary, #304B3B); }

.stz-pro-price-wrap {
	display: flex;
	align-items: flex-end;
	gap: 0.5rem;
	flex: 1 1 auto;
	justify-content: flex-end;
}

.stz-pro-price {
	font-size: clamp(1.125rem, 2vw, 1.35rem);
	font-weight: 600;
	color: var(--color-primary, #304B3B);
}

.stz-pro-add-cart {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-primary, #304B3B);
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
	position: relative;
	align-self: flex-start;
}

.stz-pro-add-cart span {
	position: relative;
}

.stz-pro-add-cart span::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color-primary, #304B3B);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.stz-pro-add-cart:hover span::after {
	transform: scaleX(1);
}

.stz-pro-add-cart:hover svg {
	transform: translateX(4px);
}
.stz-pro-add-cart svg {
	transition: transform 0.3s ease;
}

/* ============================================
   Shop By Category Section
   ============================================ */
.stz-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem; /* 12px for mobile */
	margin-top: 2rem;
}

@media (min-width: 640px) {
	.stz-category-grid {
		gap: 1.875rem; /* 30px for small/tablet */
	}
}

@media (min-width: 1024px) {
	.stz-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.stz-cat-card {
	display: block;
	overflow: hidden;
	text-decoration: none;
	border-radius: 1rem;
	position: relative;
	transition: box-shadow 0.3s ease;
}

.stz-cat-card:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px rgba(48, 75, 59, 0.7);
}

.stz-cat-inner {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	background-color: #f3f4f6;
	/* Maintain a good aspect ratio like the original */
	aspect-ratio: 0.75 / 1;
}

/* Base overlay before pseudo-element equivalent */
.stz-cat-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 40%, transparent 100%);
	opacity: 0.9;
	transition: opacity 0.3s ease;
	z-index: 2;
}

.stz-cat-card:hover .stz-cat-inner::before {
	opacity: 1;
}

.stz-cat-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.5s ease;
	z-index: 0;
}

.stz-cat-card:hover .stz-cat-img {
	transform: scale(1.05);
}

/* Green Shield Overlay from React */
.stz-cat-shield {
	position: absolute;
	inset: 0;
	padding: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

/* Using the React masked-image shield class */
.stz-cat-shield::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, var(--color-primary, #304B3B) 0%, transparent 100%);
	clip-path: url(#clip-shield-ig); /* re-using the shield mask from IG section */
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stz-cat-card:hover .stz-cat-shield::after {
	opacity: 0.15;
}

.stz-cat-content {
	position: absolute;
	bottom: 1.5rem;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 0 1rem;
	z-index: 3;
}

.stz-cat-title {
	font-family: 'Begum', serif; /* Or fallback to var(--font-heading) */
	font-size: clamp(1.25rem, 3vw, 1.75rem);
	line-height: 1;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
	filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

/* ============================================
   Instagram Swiper Section
   ============================================ */

/* Hidden clippy SVG */
.stz-clippy {
	position: absolute;
	width: 0;
	height: 0;
	top: -9999px;
	left: -9999px;
	overflow: hidden;
}

.section--instagram {
	padding-top: 3rem;
	padding-bottom: 3.5rem;
	overflow: hidden;
}

.stz-ig-section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.stz-ig-header {
	text-align: center;
	margin-bottom: 3rem;
}

.stz-ig-title {
	font-size: clamp(1.75rem, 4vw, 2.875rem);
	font-weight: 600;
	color: #000;
	margin: 0;
}

/* Swiper Wrap */
.stz-ig-swiper-wrap {
	position: relative;
	margin-bottom: 2.5rem;
}

.stz-ig-swiper {
	overflow: visible;
	padding: 60px 0;
}

.stz-ig-swiper .swiper-wrapper {
	align-items: center;
}

.stz-ig-swiper .swiper-slide {
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(0.90) !important;
	opacity: 0.7;
}

.stz-ig-swiper .swiper-slide-active {
	transform: scale(1.20) !important;
	z-index: 10;
	opacity: 1;
	padding: 0 20px;
}

@media (max-width: 1440px) {
	.stz-ig-swiper .swiper-slide-active {
		transform: scale(1.30) !important;
	}
}

/* Show green border overlay only on active slide */
.stz-ig-swiper .swiper-slide .ig-feed-outer,
.stz-ig-swiper .swiper-slide .ig-feed-inner {
	display: none !important;
}

.stz-ig-swiper .swiper-slide-active .ig-feed-outer,
.stz-ig-swiper .swiper-slide-active .ig-feed-inner {
	display: flex !important;
}

.stz-ig-swiper .swiper-slide-active .ig-feed-inner-container {
	padding: 2%;
}

/* Slide internals */
.ig-feed-outer-container {
	position: relative;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center center;
}

.absolute-cover {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ig-feed-inner-container {
	position: relative;
}

.ig-inner-relative {
	position: relative;
}

/* Masked image / shield shapes */
.masked-image {
	position: relative;
}

.masked-image.shield-ig {
	clip-path: url(#clip-shield-ig);
	aspect-ratio: 1 / 1.3358778625954197;
	margin: 0 auto;
	max-width: 100%;
}

.masked-image.shield-ig img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
	display: block;
}

.masked-image.shield-ig-inner {
	clip-path: url(#clip-shield-ig-inner-desktop);
	background-color: #304B3B;
	position: absolute;
	inset: 0;
}

.masked-image.shield-ig-outer {
	clip-path: url(#clip-shield-ig-outer-desktop);
	background-color: #304B3B;
	position: absolute;
	inset: 0;
}

@media (max-width: 991px) {
	.masked-image.shield-ig-inner {
		clip-path: url(#clip-shield-ig-inner-mobile);
	}
	.masked-image.shield-ig-outer {
		clip-path: url(#clip-shield-ig-outer-mobile);
	}
}

@media (max-width: 768px) {
	.stz-ig-swiper {
		padding: 50px 0;
	}
	.stz-ig-swiper .swiper-slide-active {
		transform: scale(1.35) !important;
		padding: 0 12px;
	}
}

/* Arrow buttons */
.stz-ig-arrow {
	position: absolute;
	top: -2.2rem;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,0.25);
	background: transparent;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	overflow: hidden;
	transition: color 0.3s ease;
}

.stz-ig-arrow::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--color-primary, #304B3B);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease-out;
	z-index: -1;
}

.stz-ig-arrow:hover {
	color: #fff;
	border-color: var(--color-primary, #304B3B);
}

.stz-ig-arrow:hover::before {
	transform: scaleX(1);
}

.stz-ig-arrow--prev {
	right: 5.5rem;
}

.stz-ig-arrow--next {
	right: 1.5rem;
}

@media (min-width: 768px) {
	.stz-ig-arrow {
		width: 48px;
		height: 48px;
	}
	.stz-ig-arrow--prev {
		right: 6rem;
	}
	.stz-ig-arrow--next {
		right: 1.5rem;
	}
}

/* CTA Button */
.stz-ig-cta {
	text-align: center;
	margin-top: 1rem;
}

.stz-ig-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: var(--color-primary, #304B3B);
	color: #fff;
	padding: 0.85rem 2rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	letter-spacing: 0.03em;
	transition: color 0.4s ease-out;
	z-index: 0;
}

.stz-ig-btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #000;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease-out;
	z-index: -1;
}

.stz-ig-btn:hover {
	color: #fff;
}

.stz-ig-btn:hover::before {
	transform: scaleX(1);
}

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

@media (max-width: 1024px) {
	.site-header__nav {
		display: none;
	}

	.cards-grid--category {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cards-grid--product,
	.cards-grid--testimonial {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.newsletter__inner,
	.footer__top {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.topbar__inner,
	.topbar__right,
	.site-header__inner {
		flex-wrap: wrap;
	}

	.hero__grid,
	.section__header--tabs {
		grid-template-columns: 1fr;
		display: grid;
	}

	.hero__badge {
		left: 0.5rem;
		width: 96px;
		height: 96px;
	}

	.feature-strip,
	.cards-grid--category,
	.cards-grid--product,
	.cards-grid--testimonial,
	.instagram-strip {
		grid-template-columns: 1fr;
	}

	.newsletter__form {
		flex-direction: column;
		border-radius: 16px;
	}

	.newsletter__form button,
	.newsletter__form input {
		width: 100%;
	}

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

/* About Page */
.about-us-page {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #444;
}

.about-us-page h2,
.about-us-page h3 {
    font-family: 'Playfair Display', "Times New Roman", Times, serif;
    color: #2e4334;
    margin: 0 0 15px 0;
}

.about-us-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-us-cards-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.about-card {
    background: #ffffff;
    border: 1px solid #304B3B33;
    border-radius: 10px;
    padding: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    border: 1px solid #000;
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* Our Story Section */
.about-our-story-section {
    background-color: #eaf0e8;
    padding: 40px 0;
}

.about-our-story-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 48px;
}

.about-our-story-section p {
    font-size: 16px;
    font-weight: 4001;
    line-height: 1.8;
    color: #141414;
    margin-bottom: 16px;
    margin-top: 0;
}

.about-our-story-section p:last-child {
    margin-bottom: 0;
}

/* Contact Page */
.contact-page-wrapper {
    max-width: 1280px;
    padding: 48px 20px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.contact-container {
    display: flex;
    gap: 20px;
    box-sizing: border-box;
}

.contact-column {
    flex: 1;
    border: 2px solid #F9F5F0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    background: #ffffff;
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 32px;
    margin-top: 0;
    line-height: 40px;
}

.info-card {
    background-color: #f7f3ec;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.address-card {
    width: 100%;
    align-items: flex-start;
}

.info-row {
    display: flex;
    column-gap: 20px;
}

.half-card {
    flex: 1;
    padding: 20px 25px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #2D4739;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.info-text strong {
    display: block;
    font-size: 18px;
    color: #304B3B;
    margin-bottom: 5px;
    font-weight: 500;
    line-height: 12px;
}

.info-text p {
    margin: 0;
    font-size: 16px;
    color: #000000CC;
    line-height: 1.5;
    font-weight: 400;
}

/* Form Styles */
.stz-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #304B3B;
    margin-bottom: 10px;
    line-height: 28px;
}

.stz-contact-form input,
.stz-contact-form textarea {
    width: 100%;
    background-color: #f7f3ec;
    border: 1px solid #f7f3ec;
    border-radius: 100px;
    padding: 14px 18px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.stz-contact-form textarea {
    border-radius: 16px;
}

.stz-contact-form input::placeholder,
.stz-contact-form textarea::placeholder {
    color: #888;
}

.stz-contact-form input:focus,
.stz-contact-form textarea:focus {
    border-color: #2D4739;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    flex: 1;
}

.form-submit {
    display: flex;
    justify-content: center;
}

/*-------------
# FAQs Page
--------------*/
.faq-page-wrapper {
    padding: 80px 0 100px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-main-title {
    font-size: 38px;
    font-weight: 600;
    line-height: 38px;
    color: #304B3B;
    margin: 0 0 24px 0;
}

.faq-controls {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-search-box {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.faq-search-box .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #000000;
    z-index: 10;
}

.faq-search-box input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 40px;
    border: 1px solid #304B3B;
    font-size: 15px;
    outline: none;
    transition: var(--transition-fast);
    background: transparent;
    font-size: 20px;
    font-weight: 400;
    font-family: "poppins", sans-serif
}

.faq-search-box input::placeholder {
    color: #000000;
}

.faq-search-box input:focus {
    border-color: var(--primary-color);
}

.faq-filters-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.faq-filters {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 4px;
    border-radius: 40px;
    border: 1px solid #777;
}

.faq-filters .filter-btn {
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    transition: var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 28px;
	border: none;
	background: transparent;
}

.faq-filters .filter-btn:hover {
    color: var(--primary-color);
}

.faq-filters .filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-accordion-item {
    background-color: #F9F5F0;
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    text-align: left;
    outline: none;
    border: none;
    cursor: pointer;
}

.faq-question {
    font-size: 24px;
    font-weight: 600;
    color: #304B3B;
    margin: 0;
}

.faq-icon-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: transform 0.3s ease;
}

.faq-icon-arrow svg {
    width: 14px;
    height: 14px;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content-inner {
    padding: 0 25px 25px 25px;
}

.faq-content-inner p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 30px;
}

.privacy-policy-section {
    max-width: 1280px;
    padding: 80px 20px;
    margin: 0 auto;
}

.privacy-policy-section h2 {
    font-size: 26px;
    font-weight: 600;
    color: #304B3B;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-top: 0;
    margin-bottom: 0;
}

.privacy-policy-section h2:first-child {
    padding-top: 0px;
}

.privacy-policy-section p:first-child {
    text-align: center;
    font-size: 18px;
}

.styluza-shipping-table {
    margin: 0;
}

.privacy-policy-section p,
.styluza-shipping-table td {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
    border: none;
    padding: 0;
}

.styluza-shipping-table tr+tr td {
    padding-top: 6px;
}

.styluza-shipping-table tr {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 50%;
}

.styluza-shipping-table table {
    width: 100%;
}

@media only screen and (max-width:1280px) {
    .styluza-shipping-table tr {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .faq-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .faq-filters-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .faq-filters {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
    }

    .faq-filters::-webkit-scrollbar {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-filters .filter-btn {
        font-size: 16px;
        padding: 6px 24px;
        line-height: 28px;
    }
}


@media (max-width: 640px) {
    .info-row {
        flex-direction: column;
    }

    .privacy-policy-section h2 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Blog Grid Page (Premium)
--------------------------------------------------------------*/
.blog-grid-page {
    padding: 80px 0;
}

.blog-header {
    margin-bottom: 50px;
    text-align: center;
}

.blog-grid-title {
    font-size: 46px;
    font-weight: 600;
    color:#000;
    line-height: 31px;
    margin-bottom: 20px;
    margin-top: 0;
}

.blog-grid-subtitle {
    font-size: 16px;
    color:#000;
    font-weight: 400;
    line-height: 28px;
    max-width: 750px;
    margin:0 auto;
}

/* Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -10px #0000001F;
    border: 1px solid #A05B53;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    position: relative;
    height: auto;
    min-height: 260px;
    max-height: 260px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 16px;
    right: 0;
    background: rgba(45, 71, 57, 0.9);
    color: var(--white);
    padding:8px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 13px;
}

.blog-card-info {
    padding:30px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    height: 100%;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #000;
    line-height: 16px;
}

.blog-card-excerpt {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
    line-height: 28px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.blog-card-link {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #304B3B;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.blog-card-link svg {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link svg {
    transform: translateX(4px);
}

.blog-card-link span {
    position: relative;
}

.blog-card-link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    height: 2px;
    width: 100%;
    background-color: #304B3B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-out;
}

.blog-card:hover .blog-card-link span:after{
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 1200px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid-title {
        font-size: 36px;
    }
    .blog-card-image{
        min-height: 180px;
        max-height: 180px;
    }
    .blog-card-title{
        font-size: 18px;
        line-height: 22px;
    }
    .blog-card-excerpt, .blog-card-link{
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    .blog-grid-title {
        font-size: 28px;
    }
    .blog-card-info{
        padding: 16px;
    }
    .blog-posts-grid{
        gap: 12px;
    }
}

/*----------------------------------
# Blog Overlay (Premium Fullscreen)
-----------------------------------*/
.blog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.blog-container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

.blog-overlay.active {
    visibility: visible;
    opacity: 1;
}

.blog-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 71, 57, 0.95);
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.blog-overlay-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 100px 0 60px;
    transform: translateY(30px);
    transition: var(--transition);
}

.blog-overlay.active .blog-overlay-content {
    transform: translateY(0);
}

.blog-overlay-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-overlay-close:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.blog-overlay-title {
    color: var(--white);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.blog-overlay-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.blog-overlay .blog-posts-grid {
    padding: 0 40px;
}

.blog-overlay .blog-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.blog-overlay .blog-card-title,
.blog-overlay .blog-card-excerpt,
.blog-overlay .blog-card-link {
    color: var(--white);
}

.blog-overlay .blog-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.overflow-auto-y {
    overflow-y: auto;
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

.overflow-auto-y::-webkit-scrollbar {
    width: 6px;
}

.overflow-auto-y::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.custom-pagination {
    margin-top: 50px;
}

.custom-pagination .nav-links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.custom-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--white);
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #d4d8df;
    transition: all 0.3s ease;
    text-decoration: none;
}

.custom-pagination .page-numbers.current,
.custom-pagination .page-numbers.current:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    pointer-events: none;
    transform: none;
}

.custom-pagination .page-numbers.dots {
    background: transparent;
    border-color: transparent;
    pointer-events: none;
}

.custom-pagination .page-numbers.disabled {
    opacity: 0.4;
    pointer-events: none;
    background: var(--white);
    color: var(--text-color);
}

/*--------------------------------------------------------------
# Single Blog Page Layout
--------------------------------------------------------------*/
.single-blog-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 991px) {
    .single-blog-layout {
        grid-template-columns: 1fr;
    }
}

.single-blog-main-card,
.custom-bordered-box {
    border: 1px solid #A05B53;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 30px;
    overflow: hidden;
}

.single-blog-image {
    width: 100%;
    aspect-ratio: 1 / .9;
}
.single-blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.single-blog-meta-wrapper {
    padding: 32px 20px;
}

.single-blog-date {
    font-size: 16px;
    color: #00000099;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 12px;
}

.single-blog-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 28px;
}

.single-blog-text {
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 0;
}

.single-blog-text p{
    margin: 0;
}

.single-blog-author-strip {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #F9F5F0;
    padding: 24px 20px 12px;
}

.author-avatar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.author-name {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

/* Comments Section */
.custom-bordered-box {
    padding: 35px 0;
}
.custom-bordered-box .box-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 0 20px;
}

.no-comments-msg {
    text-align: center;
    color: #777;
    font-size: 15px;
    padding: 20px 0;
}

.comment-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
    overflow-y: auto;
    max-height: 450px;
}

/* Custom Native WP Comments CSS */
.comment-list .comment {
    margin-bottom: 0; 
}
.comment-list .comment-body {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #f1ece6;
}
.comment-list .comment:last-child > .comment-body {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
}

.comment-list .children {
    list-style: none;
    padding-left: 16px;
    margin-top: 0;
}

/* Meta Data (Avatar, Name, Date) */
.comment-meta {
    margin-bottom: 12px;
}
.comment-author.vcard img.avatar {
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    margin-bottom: 10px;
    object-fit: cover;
}
.comment-author.vcard .fn {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-style: normal;
    font-family: inherit;
    display: block;
    padding-top: 2px;
}
.comment-author.vcard .says {
    display: none;
}
.comment-metadata {
    margin-left: 65px; 
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}
.comment-metadata a {
    color: #555;
    text-decoration: none;
}
.comment-metadata a time::before {
    content: ""; 
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: text-top;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>') no-repeat center;
}

/* Comment Content */
.comment-content {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    clear: both;
}
.comment-content p {
    margin-bottom: 10px;
}
.comment-content p:last-child {
    margin-bottom: 0;
}

/* Reply Button */
.comment-body .reply {
    position: absolute;
    top: 5px;
    right: 0;
}
.comment-reply-link {
    background: #304B3B;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}
.comment-reply-link:hover {
    background: #23372c;
    color: #fff;
}

/* Comment Form */
#respond {
    border: 1px solid #A05B53;
    border-radius: 12px;
    background: #fff;
    padding: 30px 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
#reply-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-top: 0;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}
#reply-title small {
    float: right;
}
#reply-title small a {
    background: rgb(48, 75, 59);
    color: rgb(255, 255, 255);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}
#respond form::after {
    content: "";
    clear: both;
    display: table;
}

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

@media (max-width: 575px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}
.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: #fdfaf7;
    border: 1px solid #f2ede8;
    border-radius: 25px;
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #304B3B;
}
.form-group textarea {
    border-radius: 12px;
    resize: vertical;
}

.submit-custom-btn {
    background: #304B3B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    float: right;
    transition: all 0.3s;
}
.submit-custom-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(48,75,59,0.2);
}

/* Sidebar Widgets */
.single-blog-sidebar .sidebar-widget {
    margin-bottom: 30px;
}

.custom-search-form {
    position: relative;
}
.custom-search-form input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: #fdfaf7;
    border: 1px solid #efeae4;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}
.custom-search-form button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.custom-popular-widget, 
.custom-tags-widget {
    background: #F9F5F0;
    border-radius: 16px;
    padding: 32px 20px;
}

.custom-popular-widget .widget-title, 
.custom-tags-widget .widget-title {
    font-size: 36px;
    font-weight: 600;
    color: #304B3B;
    line-height: 26px;
    margin-top: 0;
    margin-bottom: 32px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
.popular-post-item:last-child {
    margin-bottom: 0;
}
.popular-post-item .post-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.popular-post-item .no-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2dfdb;
}

.popular-post-item .post-info h4 {
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    margin-bottom: 8px;
}
.popular-post-item .post-info h4 a {
    color: #304B3B;
}

.popular-post-item .post-info .post-date {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    color: #000;
    display: block;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tags-list .tag-link {
    padding: 6px 18px;
    border: 1px solid #ebe6e1;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    color: #304B3B;
    background: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.tags-list .tag-link:hover {
    background: #304B3B;
    color: #fff;
    border-color: #304B3B;
}

/*--------------------------------------------------------------
# Live Search Dropdown
--------------------------------------------------------------*/
.live-search-form {
    position: relative;
}
.live-search-results {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #efeae4;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 100;
    display: none;
    max-height: 350px;
    overflow-y: auto;
}
.live-search-results.active {
    display: block;
}
.live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}
.live-search-item:last-child {
    border-bottom: none;
}
.live-search-item:hover {
    background: #fdfaf7;
}
.live-search-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}
.live-search-item-info h5 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #304B3B;
}
.live-search-item-info span {
    font-size: 11px;
    color: #777;
}
.live-search-loading {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}
.live-search-no-results {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Make Entire Blog Card Clickable
--------------------------------------------------------------*/
.blog-card {
    position: relative;
}

.blog-card-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.blog-card h3 a {
    position: relative;
    z-index: 2;
}

.blog-card-category {
    z-index: 2;
}