@font-face {
    font-family: 'Begum';
    src: url('../fonts/fonnts.com-Begum-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Begum';
    src: url('../fonts/fonnts.com-Begum-.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Begum';
    src: url('../fonts/fonnts.com-Begum-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Begum';
    src: url('../fonts/fonnts.com-Begum-Semibold-.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Begum', sans-serif;
}

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: 20;
    overflow: hidden;
}

.site-header.mobile-menu-active {
    overflow: visible;
}

.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: 8px;
}

.site-header__actions-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.site-header__actions .wishlist-btn {
    margin-right: 8px;
}

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

/* Mobile Menu Toggle Style */
.site-header .menu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    .site-header {
        z-index: 1000;
    }

    .site-header__brand,
    .site-header__actions {
        position: relative;
        z-index: 1001;
    }

    .site-header::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
        z-index: 98;
        opacity: 0;
        visibility: hidden;
        transition: opacity 350ms ease-in-out, visibility 350ms ease-in-out;
        pointer-events: none;
    }

    .site-header.mobile-menu-active::after {
        opacity: 1;
        visibility: visible;
    }

    .site-header .menu-toggle {
        display: flex;
        margin-left: 1.5rem;
    }

    .site-header__nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.08);
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        padding: 30px 24px 24px;
        z-index: 99;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 350ms ease-in-out;
    }

    .site-header.mobile-menu-active .site-header__nav {
        transform: translateX(0);
        visibility: visible;
        border-top: 1px solid oklch(92.8% .006 264.531);
    }

    .site-header.mobile-menu-active .menu-toggle .hamburger-icon {
        display: none !important;
    }

    .site-header.mobile-menu-active .menu-toggle .close-icon {
        display: block !important;
    }

    .site-header__nav .menu--primary {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .site-header__nav .menu--primary li {
        width: 100%;
        opacity: 0;
    }

    .site-header.mobile-menu-active .site-header__nav .menu--primary li {
        opacity: 1;
        transform: translateX(0);
    }

    .site-header__nav .menu--primary a {
        display: block;
        font-size: 1.125rem;
        font-weight: 500;
        color: #111111;
        padding: 6px 0;
        width: 100%;
        transition: color 0.2s ease;
    }

    .site-header__nav .menu--primary a::after {
        display: none !important;
    }

    .site-header__nav .menu--primary li.current-menu-item a,
    .site-header__nav .menu--primary li.current_page_item a {
        color: var(--color-primary);
    }
}

@media (max-width: 768px) {

    /* Logo sizing */
    .site-header__brand img {
        width: 130px;
    }

    .actions-separator {
        display: none;
    }

    .site-header__actions {
        gap: 0.3rem;
    }

    .site-header__actions-left {
        gap: 0.3rem;
    }

    .site-header__actions-right {
        gap: 0.3rem;
    }

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

    .site-header .menu-toggle {
        margin-left: 0;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .cart-pill {
        background: transparent;
        padding: 0;
        border-radius: 0;
        gap: 0;
    }

    .cart-pill__price {
        display: none;
    }

    .cart-pill__icon {
        border: 0;
        background: transparent;
        width: 32px;
        height: 32px;
        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;
    }

    .cart-pill__icon::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;
        z-index: 1;
    }

    .cart-pill__icon: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);
    }

    .cart-pill__icon:hover::before {
        transform: scaleX(1);
    }

    .cart-pill__icon svg {
        position: relative;
        z-index: 10;
    }
}

@media (max-width: 640px) {
    .topbar__inner {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .topbar__shipping {
        margin: 0;
    }

    .topbar {
        padding: 12px 0;
    }

    .topbar__right {
        font-size: 14px;
        gap: 10px;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }
}


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

/*--------------------------------------------------------------
# Footer (Premium)
--------------------------------------------------------------*/
.site-footer {
    background: #0f1411;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.site-footer:before {
    content: "";
    background-image: url("/wp-content/uploads/2026/05/svgviewer-output.svg");
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    inset: 0;
}

.site-footer:after {
    content: "";
    background-image: url("/wp-content/uploads/2026/05/svgviewer-output-1.svg");
    background-position: right;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    inset: 0;
}

.footer-icon-wrap {
    display: flex !important;
    align-items: center !important;
}

.footer-icon-wrap .is-layout-flex {
    margin-bottom: 0;
}

.footer-icon-wrap .has-white-background-color {
    border-radius: 50px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon-wrap figure {
    margin: 0;
}

.footer-top {
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

/* Generic Footer Widget Styles for Gutenberg & standard blocks */
.site-footer .widget {
    margin-bottom: 2rem;
}

.site-footer .widget:last-child {
    margin-bottom: 0;
}

.site-footer .widget ul,
.site-footer .widget ol,
.site-footer .widget .wp-block-navigation,
.site-footer .widget .wp-block-list,
.site-footer .widget ul.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .widget li {
    margin-bottom: 12px;
    line-height: 24px;
}

.site-footer .is-layout-flex {
    gap: 16px;
}

.site-footer .widget a {
    color: #fff;
    font-size: 16px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.site-footer .widget a:hover {
    color: var(--white);
}

.site-footer .widget p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.site-footer .widget img {
    max-width: 100%;
    height: auto;
}

.site-footer .has-white-color {
    margin: 0;
}

.site-footer .footer-column-4 .is-layout-flex {
    margin-bottom: 0;
}

.site-footer .footer-column-4 .widget.widget_block {
    margin-bottom: 12px;
}

.site-footer .footer-column-4 .widget.widget_block:first-child {
    margin-bottom: 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 2fr;
    gap: 60px;
}

.footer-widget-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 35px;
    margin-top: 0;
}

.footer-tagline {
    margin-bottom: 30px;
    font-size: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(230, 126, 34, 0.3);
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #ccc;
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--white);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-list .icon-wrap {
    color: #fff;
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact-list a,
.footer-contact-list .address-text {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact-list a:hover {
    color: var(--white);
}

/* Footer Bottom Layout */
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.container.footer-bottom-inner {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #fff;
}

.footer-payment-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-badge {
    background: #fff;
    height: 38px;
    padding: 0 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    color: #000;
    font-size: 11px;
    font-weight: 700;
}

.payment-badge img {
    max-height: 20px;
    width: auto;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* 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: var(--color-dark);
    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;
    line-height: 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: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;

    padding: 14px 30px;

    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: var(--color-dark);

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


/* 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;
}

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

.footer-contact-info p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

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

.contact-form-col,
.contact-info-col {
    border: 2px solid #F9F5F0;
    padding: 20px;
    border-radius: 16px;
    width: 100%;
}

/* 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;
} */


/* FluentForm Overrides for Contact Us */
.stz-fluentform-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stz-fluentform-wrapper .ff-el-group {
    margin-bottom: 0;
}

.stz-fluentform-wrapper .ff-default .ff-el-form-control {
    width: 100%;
    background-color: #f7f3ec;
    border: 1px solid #f7f3ec;
    border-radius: 100px;
    padding: 16px 18px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.stz-fluentform-wrapper textarea.ff-el-form-control {
    border-radius: 16px !important;
}

.stz-fluentform-wrapper .ff-el-form-control::placeholder {
    color: #999;
}

.stz-fluentform-wrapper .ff-default .ff-el-form-control:focus {
    border-color: #2D4739;
}

.stz-fluentform-wrapper label,
.stz-fluentform-wrapper .ff-el-input--label label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #304B3B;
    margin-bottom: 10px;
    line-height: 28px;
}

.stz-fluentform-wrapper .ff-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 14px 30px;
    color: #fff;
    background-color: #304B3B;
    border: none;
    outline: none;
    border-radius: 999px;
    transition: background-color 0.4s ease-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    margin-top: 10px;
}

.stz-fluentform-wrapper .ff-btn-submit:hover {
    background-color: rgba(45, 71, 57, 0.9);
}

.stz-fluentform-wrapper .ff-t-container {
    display: flex;
    gap: 20px;
    width: 100%;
}

.stz-fluentform-wrapper .ff-t-cell {
    flex: 1;
    padding: 0;
}

.stz-fluentform-wrapper .ff-el-is-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;
}

.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: 50px 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: 60px 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,
.stz-fp-add-to-cart {
    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);
    position: relative;
}

.blog-card-link::after,
.stz-fp-add-to-cart::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.blog-card-link svg,
.stz-fp-add-to-cart svg {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link svg,
.stz-fp-card:hover .stz-fp-add-to-cart svg {
    transform: translateX(4px);
}

.blog-card-link span,
.stz-fp-add-to-cart span {
    position: relative;
}

.blog-card-link span::after,
.stz-fp-add-to-cart span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    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,
.stz-fp-card:hover .stz-fp-add-to-cart 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;
    padding-top: 80px;
}

@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 h3 a {
    position: relative;
    z-index: 2;
}

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

/* WooCommerce Product Loop Arch Mask */
.woocommerce ul.products li.product .product-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 20px;
    /* Optional card rounding */
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    background-color: #f9f9f9;
}

.stz-product-image-card:hover .stz-product-image-card-overlay {
    position: absolute;
    inset: 0;
    background-color: #0006;
}

.woocommerce ul.products li.product a:hover img {
    transform: scale(1.05);
}

/* Shop Sidebar Styling Refinement */
.woocommerce-sidebar {
    padding-right: 30px;
}

.widget-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 35px;
    margin-top: 0;
}

/* --- Shop Layout Styling --- */
.stz-shop-container {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 16px;
}

.stz-shop-flex {
    display: flex;
    gap: 40px;
}

/* Sidebar */
.woocommerce-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.woocommerce-main-content {
    flex-grow: 1;
}

.stz-shop-flex .sidebar .widget {
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    padding: 20px;
    border-radius: 12px;
}

.stz-shop-flex .sidebar .widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-weight: 600;
}

/* Product Grid Customization */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    /* Fix for float clear issues */
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

/* Product Card - Mockup Match */
.stz-product-image-card {
    margin-bottom: 15px;
    border-radius: 20px;
    overflow: hidden;
}

.stz-product-image-card .masked-image.shield {
    aspect-ratio: 1 / 1.3;
}

/* PLP product cards — match feature-collections / homepage layout */
.woocommerce ul.products li.product.stz-loop-product-card {
    background: #e7eee2;
    border-radius: 12px;
    padding: 12px 12px 16px;
    text-align: left;
}

.woocommerce ul.products li.product.stz-loop-product-card .stz-product-image-card {
    margin-bottom: 0;
    border-radius: 0;
    overflow: visible;
    position: relative;
}

.woocommerce ul.products li.product.stz-loop-product-card .stz-product-image-card .onsale {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.woocommerce ul.products li.product .product-image-link {
    display: block;
    margin-bottom: 1.25rem;
}

.woocommerce ul.products li.product .stz-loop-product-info {
    padding: 0 4px;
}

.woocommerce ul.products li.product .product-rating .star-rating {
    float: none;
    margin: 0;
    font-size: 1.125rem;
    color: #eab308;
    letter-spacing: 2px;
}

.woocommerce ul.products li.product .product-regular-price del,
.woocommerce ul.products li.product .product-regular-price del .amount {
    color: #888;
    font-weight: 400;
    font-size: 0.875rem;
    text-decoration: line-through;
}

.woocommerce ul.products li.product h3.product-title {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 !important;
    margin: 0;
}

.woocommerce ul.products li.product h3.product-title a {
    color: #000;
    text-decoration: none;
}

.woocommerce ul.products li.product h3.product-title a:hover {
    color: #304B3B;
}

.woocommerce ul.products li.product .product-regular-price {
    text-align: right;
}

.woocommerce ul.products li.product .product-price {
    text-align: right;
}

.woocommerce ul.products li.product .product-price ins,
.woocommerce ul.products li.product .product-price ins .amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #304B3B;
    text-decoration: none;
    font-size: 1.125rem;
}

.woocommerce ul.products li.product .product-add-to-cart {
    margin-top: 0.25rem;
    text-decoration: none;
}

.woocommerce ul.products li.product .product-add-to-cart:hover span::after {
    transform: scaleX(1);
}

.woocommerce ul.products li.product .product-add-to-cart:hover svg {
    transform: translateX(4px);
}

.woocommerce ul.products li.product .onsale {
    min-height: auto;
    min-width: auto;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1.2;
    background: #304B3B;
    color: #fff;
}

.stz-loop-add-to-cart {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #304B3B;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
    letter-spacing: 0.5px;
}

.stz-loop-add-to-cart:hover {
    gap: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .stz-shop-flex {
        flex-direction: column;
    }

    .woocommerce-sidebar {
        width: 100%;
    }

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

@media (max-width: 540px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* --- Refined Shop Sidebar Filters (Mockup Match) --- */
.woocommerce-sidebar {
    background: transparent;
    border-right: none;
    padding-right: 0;
}

.stz-shop-filters {
    background: #fff;
    border: 1px solid oklch(0.88 0.02 85);
    border-radius: 12px;
    padding: 24px 20px;
}

.stz-filters-heading {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #000;
}

.stz-shop-filters-form {
    margin: 0;
}

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

.stz-filter-checklist li {
    margin-bottom: 4px;
}

a.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    padding: 4px 0;
    font-size: 16px;
}

a.filter-checkbox:hover {
    color: #304B3B;
}

.filter-checkbox input {
    pointer-events: none;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.color-swatch.is-active {
    outline: 2px solid #304B3B;
    outline-offset: 2px;
}

.sizes-grid a.styluza-size-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #444;
    border: 1px solid #ddd;
    padding: 6px 4px;
    font-size: 12px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    min-height: 32px;
}

.sizes-grid a.styluza-size-chip.is-active,
.sizes-grid a.styluza-size-chip:hover {
    background: #304B3B;
    border-color: #304B3B;
    color: #fff;
}

.price-slider-wrap {
    position: relative;
    padding: 8px 0 4px;
}

.price-slider-track {
    position: relative;
    height: 8px;
    background: #e0e0e0;
    border-radius: 2px;
}

.price-slider-range {
    position: absolute;
    top: 0;
    height: 100%;
    background: #304B3B;
    border-radius: 2px;
}

.stz-price-min,
.stz-price-max {
    position: absolute;
    left: 0;
    top: 12px;
    width: 100%;
    height: 0;
    margin: 0;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.stz-price-min::-webkit-slider-thumb,
.stz-price-max::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #304B3B;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.stz-price-max {
    z-index: 2;
}

.stz-shop-widgets-extra {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.filter-group {
    border-bottom: 1px solid oklch(0.88 0.02 85);
    padding: 20px 0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

.filter-checkbox input {
    accent-color: #304B3B;
}

.filter-checkbox .count {
    margin-left: auto;
    color: #999;
}

/* Colors Grid */
.colors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #eee;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-swatch:hover {
    transform: scale(1.2);
}

/* Sizes Grid */
.sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.sizes-grid span {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.sizes-grid span:hover {
    background: #f9f9f9;
}

/* Shop Header Styling */
.shop-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-header-flex .page-title {
    font-size: 36px;
    margin: 0;
}

.shop-sorting-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.shop-sorting-wrap .sort-label {
    color: #000;
    font-weight: 400;
    white-space: nowrap;
}

/* Custom Sort By dropdown (pill trigger + rectangular menu) */
.stz-sort-dropdown {
    position: relative;
    display: inline-block;
}

.stz-sort-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 180px;
    padding: 8px 18px;
    border: 1px solid #1a1a1a;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stz-sort-dropdown__toggle:hover,
.stz-sort-dropdown.is-open .stz-sort-dropdown__toggle {
    border-color: #000;
}

.stz-sort-dropdown__chevron {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #1a1a1a;
    border-bottom: 1.5px solid #1a1a1a;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.stz-sort-dropdown.is-open .stz-sort-dropdown__chevron {
    transform: rotate(-135deg) translateY(2px);
}

.stz-sort-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    z-index: 50;
    min-width: 100%;
    width: max-content;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stz-sort-dropdown__menu[hidden] {
    display: none;
}

.stz-sort-dropdown__option {
    padding: 10px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.stz-sort-dropdown__option:hover,
.stz-sort-dropdown__option.is-active {
    background: #0073e6;
    color: #fff;
}

/* AJAX loading state for product grid */
.stz-shop-products-ajax.is-loading {
    position: relative;
    min-height: 120px;
    opacity: 0.55;
    pointer-events: none;
}

.stz-shop-products-ajax.is-loading::after {
    content: '';
    position: absolute;
    top: 48px;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-left: -18px;
    border: 3px solid #e0e0e0;
    border-top-color: #304B3B;
    border-radius: 50%;
    animation: stz-spin 0.7s linear infinite;
}

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

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    display: none !important;
}

.woocommerce-result-count-wrap {
    margin-bottom: 30px;
    color: #000;
    font-size: 18px;
}

/* Price Slider Dummy */
.price-slider-dummy {
    padding: 10px 0;
}

.slider-track {
    height: 3px;
    background: #304B3B;
    position: relative;
    margin-bottom: 15px;
}

.slider-points {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #304B3B;
    margin-top: 16px;
}

/* Accordion Logic */
.filter-group .filter-content {
    display: none;
    padding-top: 16px;
}

.filter-group.active .filter-content {
    display: block;
}

.filter-title .toggle-icon {
    transition: transform 0.3s;
    font-size: 12px;
}

.filter-group.active .toggle-icon {
    transform: rotate(180deg);
}

/* Category List Cleanup */
.stz-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stz-cat-list li {
    margin-bottom: 10px;
}

.stz-cat-list a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* WooCommerce widgets in shop sidebar */
.woocommerce-sidebar .wc-filter-widget,
.woocommerce-sidebar .widget_price_filter,
.woocommerce-sidebar .widget_layered_nav,
.woocommerce-sidebar .widget_layered_nav_filters,
.woocommerce-sidebar .widget_product_categories,
.woocommerce-sidebar .widget_rating_filter {
    border: none;
    padding: 0;
    margin: 0;
}

.woocommerce-sidebar .woocommerce-widget-layered-nav-list,
.woocommerce-sidebar .product-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-sidebar .woocommerce-widget-layered-nav-list li,
.woocommerce-sidebar .product-categories li {
    margin-bottom: 8px;
}

.woocommerce-sidebar .woocommerce-widget-layered-nav-list a,
.woocommerce-sidebar .product-categories a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.woocommerce-sidebar .woocommerce-widget-layered-nav-list .count,
.woocommerce-sidebar .product-categories .count {
    margin-left: auto;
    color: #999;
}

.woocommerce-sidebar .widget_layered_nav ul li.chosen a {
    color: #304B3B;
    font-weight: 600;
}

.woocommerce-sidebar .widget_price_filter .price_slider_wrapper {
    padding: 10px 0;
}

.woocommerce-sidebar .widget_price_filter .price_slider {
    margin-bottom: 15px;
}

.woocommerce-sidebar .widget_price_filter .price_label,
.woocommerce-sidebar .widget_price_filter .price_slider_amount {
    font-size: 12px;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.woocommerce-sidebar .widget_price_filter button {
    background: #304B3B;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    margin-top: 10px;
}

.woocommerce-sidebar .widget_layered_nav_filters ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.woocommerce-sidebar .widget_layered_nav_filters a {
    font-size: 12px;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #304B3B;
}

/* Color / size attribute grids in layered nav */
.woocommerce-sidebar .widget_layered_nav ul:has(.styluza-color-swatch) {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.woocommerce-sidebar .widget_layered_nav ul:has(.styluza-size-chip) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.woocommerce-sidebar .widget_layered_nav a.styluza-color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: inline-block;
    text-indent: -9999px;
    overflow: hidden;
}

.woocommerce-sidebar .widget_layered_nav .sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.woocommerce-sidebar .widget_layered_nav .sizes-grid a {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
    justify-content: center;
}

.shop-page-hero {
    margin-bottom: 0;
}

.woocommerce-sidebar .styluza-taxonomy-filter-form {
    margin: 0;
}

.woocommerce-sidebar .styluza-tax-filter-list label {
    width: 100%;
}

/*--------------------------------------------------------------
# Single Product Page
--------------------------------------------------------------*/
.stz-single-product {
    padding: 3rem 0;
    background-color: #ffffff;
}

.stz-product-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media(min-width: 1024px) {
    .stz-product-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.stz-product-gallery {
    width: 100%;
}

@media(min-width: 1024px) {
    .stz-product-gallery {
        width: 50%;
    }
}

.stz-main-image {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 0.8;
}

.stz-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stz-product-thumbnails {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stz-thumb-nav {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
}

.stz-thumb-nav:hover {
    color: #000;
}

.stz-thumbs-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.stz-thumbs-track::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.stz-thumb-item {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.stz-thumb-item.active {
    border-color: #304B3B;
}

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

.stz-product-summary {
    width: 100%;
}

@media(min-width: 1024px) {
    .stz-product-summary {
        width: 50%;
        padding-left: 2rem;
    }
}

.stz-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.stz-product-title {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

@media(min-width: 768px) {
    .stz-product-title {
        font-size: 2.5rem;
    }
}

.stz-stock-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border: 1px solid #22c55e;
    color: #22c55e;
}

.stz-stock-badge.out-of-stock {
    border-color: #ef4444;
    color: #ef4444;
}

.stz-product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stz-product-price-area {
    margin-bottom: 2rem;
}

.stz-product-price-area ins {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #304B3B;
    text-decoration: none;
    margin-right: 0.75rem;
}

.stz-product-price-area del {
    font-size: 1rem;
    color: #888;
}

.stz-tax-info {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.stz-product-description {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eaeaea;
}

/* Override default WooCommerce add to cart form styles */
.stz-single-product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.stz-single-product .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 2rem;
    overflow: hidden;
}

.stz-single-product .quantity input.qty {
    width: 3rem;
    height: 2.5rem;
    border: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.stz-single-product .quantity input.qty::-webkit-outer-spin-button,
.stz-single-product .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.stz-single-product button.single_add_to_cart_button {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.stz-single-product button.single_add_to_cart_button:hover {
    background: #000;
    color: #fff;
}

.stz-buy-now-btn {
    background: #304B3B;
    color: #fff;
    border: 2px solid #304B3B;
    border-radius: 2rem;
    padding: 0.75rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
}

.stz-buy-now-btn:hover {
    background: #A05B53;
    border-color: #A05B53;
}

/* Variations */
.stz-single-product table.variations {
    width: 100%;
    margin-bottom: 1.5rem;
    border: none;
}

.stz-single-product table.variations td {
    padding: 0.5rem 0;
    border: none;
    display: block;
}

.stz-single-product table.variations th {
    text-align: left;
    padding: 0.5rem 0 0 0;
    border: none;
    font-size: 1.125rem;
    color: #000;
    display: block;
}

.stz-single-product table.variations select {
    width: 100%;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    font-family: 'Poppins', sans-serif;
}

.stz-product-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eaeaea;
    padding-top: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.stz-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #304B3B;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
}

.stz-feature-item svg {
    width: 1.25rem;
    height: 1.25rem;
}

/*--------------------------------------------------------------
# Feature Products Section
--------------------------------------------------------------*/
.stz-feature-products-section {
    padding: 60px 0;
    background-color: #FDF9F1;
}

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

.stz-fp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stz-fp-title-area {
    max-width: 600px;
}

.stz-fp-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

@media(min-width: 768px) {
    .stz-fp-title {
        font-size: 2.875rem;
    }
}

.stz-fp-subtitle {
    font-size: 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
}

.stz-fp-arrows {
    display: flex;
    gap: 1rem;
}

.stz-fp-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid #304B3B;
    background: transparent;
    color: #304B3B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.stz-fp-btn:hover {
    background: #304B3B;
    color: #fff;
}

.stz-fp-carousel {
    overflow: hidden;
}

.stz-fp-track {
    display: flex;
    margin-left: -1rem;
    transition: transform 0.4s ease-out;
}

.stz-fp-slide {
    flex: 0 0 100%;
    padding-left: 1rem;
}

@media(min-width: 768px) {
    .stz-fp-slide {
        flex: 0 0 50%;
    }
}

@media(min-width: 1024px) {
    .stz-fp-slide {
        flex: 0 0 33.33333%;
    }
}

.stz-fp-card {
    display: flex;
    flex-direction: column;
}

.stz-fp-image-link {
    display: block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.stz-fp-row-1,
.stz-fp-row-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stz-fp-row-1 {
    margin-bottom: 0.25rem;
}

.stz-fp-row-2 {
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.stz-fp-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stz-stars {
    color: #eab308;
    letter-spacing: 2px;
    font-size: 1.125rem;
}

.stz-count {
    font-size: 0.875rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
}

.stz-fp-regular-price del,
.stz-fp-regular-price del span {
    color: #888;
    font-weight: 400;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
}

.stz-fp-sale-price ins,
.stz-fp-sale-price ins span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #304B3B;
    text-decoration: none;
    font-size: 1.125rem;
}

/* Fallback for when product is not on sale */
.stz-fp-sale-price>span.woocommerce-Price-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #304B3B;
    font-size: 1.125rem;
}

.stz-fp-product-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.stz-fp-product-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

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

.stz-fp-image {
    transition: transform 0.6s ease;
}

@media (max-width:768px) {
    .stz-fp-arrows {
        width: 100%;
        justify-content: end;
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.stz-testimonials-section {
    padding-bottom: 60px;
    background-color: #ffffff;
}

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

.stz-testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.stz-testimonials-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1;
    margin-top: 0;
}

@media (min-width: 768px) {
    .stz-testimonials-title {
        font-size: 2.875rem;
    }
}

@media (min-width: 1024px) {
    .stz-testimonials-title {
        font-size: 3rem;
    }
}

.stz-testimonials-subtitle {
    font-size: 0.875rem;
    color: #000000;
    max-width: 48rem;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

@media (min-width: 768px) {
    .stz-testimonials-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .stz-testimonials-subtitle {
        font-size: 1.125rem;
    }
}

/* Slider Layout */
.stz-testimonials-carousel {
    position: relative;
    width: 100%;
}

.stz-testimonials-content {
    overflow: hidden;
}

.stz-testimonials-track {
    display: flex;
    margin-left: -1rem;
    transition: transform 0.3s ease-out;
}

.stz-testimonial-slide {
    min-width: 0;
    flex-shrink: 0;
    flex-grow: 0;
    padding-left: 1rem;
    flex-basis: 100%;
}

@media (min-width: 640px) {
    .stz-testimonial-slide {
        flex-basis: 50%;
    }
}

@media (min-width: 1024px) {
    .stz-testimonial-slide {
        flex-basis: 33.333333%;
    }
}

/* Testimonial Card */
.stz-testimonial-card {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid #A05B53;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    height: 100%;
}

.stz-testimonial-image-wrap {
    position: relative;
    height: 17.5rem;
}

@media (min-width: 768px) {
    .stz-testimonial-image-wrap {
        height: 21rem;
    }
}

.stz-testimonial-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stz-testimonial-info {
    position: relative;
    padding: 2.75rem 1.25rem 2rem 1.25rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stz-testimonial-info {
        padding: 4rem 1.25rem 2.5rem 1.25rem;
    }
}

.stz-testimonial-avatar {
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    border: 9px solid #ffffff;
    overflow: hidden;
    background-color: #f3f4f6;
}

@media (min-width: 768px) {
    .stz-testimonial-avatar {
        top: -3.125rem;
        width: 6.25rem;
        height: 6.25rem;
    }
}

.stz-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.stz-testimonial-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
    line-height: 1;
    margin-bottom: 1rem;
    margin-top: 0;
}

@media (min-width: 768px) {
    .stz-testimonial-name {
        font-size: 1.375rem;
    }
}

.stz-testimonial-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: #eab308;
    font-size: 1.125rem;
}

.stz-testimonial-star {
    position: relative;
    display: inline-flex;
    line-height: 1;
    color: #d1d5db;
}

.stz-testimonial-star-fill {
    position: absolute;
    inset: 0;
    overflow: hidden;
    color: #eab308;
}

.stz-testimonial-text {
    font-size: 0.875rem;
    color: #000000;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

@media (min-width: 768px) {
    .stz-testimonial-text {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* Slider Buttons */
.stz-slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    border: 1px solid var(--primary-color, #2D4739);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.stz-slider-btn:hover {
    background-color: var(--primary-color, #2D4739);
    color: #ffffff;
}

.stz-slider-btn.prev {
    left: -0.75rem;
}

.stz-slider-btn.next {
    right: -0.75rem;
}

@media (min-width: 1536px) {
    .stz-slider-btn.prev {
        left: -4.125rem;
    }

    .stz-slider-btn.next {
        right: -4.125rem;
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.stz-features-section {
    position: relative;
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 0;
}

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

.stz-features-box {
    position: relative;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--primary-color, #2D4739);
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    z-index: 1;
}

@media (min-width: 768px) {
    .stz-features-box {
        padding: 2.375rem 1.5rem;
    }
}

.stz-features-corner-tl {
    position: absolute;
    left: -2.5rem;
    top: -2.5rem;
    color: var(--primary-color, #2D4739);
    z-index: -1;
}

.stz-features-corner-br {
    position: absolute;
    right: -2.5rem;
    bottom: -2.625rem;
    color: var(--primary-color, #2D4739);
    z-index: -1;
}

.stz-features-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 1rem;
}

@media (min-width: 768px) {
    .stz-features-grid {
        flex-direction: row;
        margin: 0;
    }
}

.stz-feature-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    text-align: left;
    position: relative;
    padding: 1.25rem;
    border-bottom: 0.5px solid var(--primary-color, #2D4739);
}

.stz-feature-item:first-child {
    padding-left: 0;
}

.stz-feature-item:last-child {
    padding-right: 0;
    border-bottom: none;
}

@media (max-width: 767px) {
    .stz-feature-item {
        padding: 1.25rem 0;
    }
}

@media (min-width: 768px) {
    .stz-feature-item {
        flex: 1;
        justify-content: center;
        padding: 0 1rem;
        border-bottom: none;
        border-right: 1px solid var(--primary-color, #2D4739);
    }

    .stz-feature-item:last-child {
        border-right: none;
    }
}

@media (min-width: 1024px) {
    .stz-feature-item {
        padding: 0 1.875rem;
    }
}

@media (min-width: 1280px) {
    .stz-feature-item {
        padding: 0 2.5rem;
    }
}

/* Dots on dividers for desktop */
@media (min-width: 768px) {

    .stz-feature-item:not(:last-child)::before,
    .stz-feature-item:not(:last-child)::after {
        content: '';
        display: block;
        width: 0.5rem;
        height: 0.5rem;
        background-color: var(--primary-color, #2D4739);
        border-radius: 9999px;
        position: absolute;
        right: -0.25rem;
    }

    .stz-feature-item:not(:last-child)::before {
        top: -0.1875rem;
    }

    .stz-feature-item:not(:last-child)::after {
        bottom: -0.1875rem;
    }
}

.stz-feature-icon {
    height: 3rem;
    width: 3rem;
    border-radius: 9999px;
    border: 1px solid var(--primary-color, #2D4739);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .stz-feature-icon {
        height: 3.75rem;
        width: 3.75rem;
    }
}

.stz-feature-icon svg {
    color: var(--primary-color, #2D4739);
    height: 1.5rem;
    width: 1.5rem;
}

.stz-feature-text {
    flex: 1;
}

.stz-feature-title {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    padding-bottom: 0.25rem;
    margin: 0;
}

@media (min-width: 768px) {
    .stz-feature-title {
        font-size: 1.25rem;
        padding-bottom: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .stz-feature-title {
        font-size: 1.5rem;
    }
}

.stz-feature-desc {
    font-size: 0.875rem;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
}

@media (min-width: 768px) {
    .stz-feature-desc {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Newsletter Section
--------------------------------------------------------------*/
.stz-newsletter-section {
    background: linear-gradient(138.89deg, rgba(48, 75, 59, 1) 18.2%, rgba(48, 75, 59, 0.85) 74.79%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

@media (min-width: 768px) {
    .stz-newsletter-section {
        background: var(--primary-color, #2D4739);
    }
}

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

.stz-newsletter-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5rem 0;
    position: relative;
}

@media (min-width: 640px) {
    .stz-newsletter-inner {
        flex-direction: row;
        align-items: center;
        padding: 7rem 0;
    }
}

.stz-newsletter-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.stz-newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 0;
}

@media (min-width: 768px) {
    .stz-newsletter-title {
        font-size: 2.25rem;
        margin-bottom: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .stz-newsletter-title {
        font-size: 3rem;
    }
}

.stz-newsletter-desc {
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin-bottom: 1.25rem;
    width: 66.666667%;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .stz-newsletter-desc {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .stz-newsletter-desc {
        width: 100%;
    }
}

/* Form */

.stz-newsletter-form .fluentform {
    margin-top: 1.5rem;
}

.stz-newsletter-form .ff-el-form-control label,
.stz-newsletter-form .ff-el-input--label {
    display: none !important;
}

.stz-newsletter-form form .ff-el-group {
    margin-bottom: 0 !important;
}

.stz-newsletter-form .frm-fluent-form .ff-t-cell .ff_submit_btn_wrapper_custom {
    justify-content: end
}


.stz-newsletter-form .ff-t-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #ffffff;
    border-radius: 100px;
    padding: 0;
    background: #3b5c4d;
}

@media (min-width: 768px) {
    .stz-newsletter-form .ff-t-container {
        padding: 0.25rem;
        background: transparent;
        width: 36rem !important;
    }
}

@media (min-width: 1024px) {
    .stz-newsletter-form .ff-t-container {
        width: 36rem !important;
        max-width: 100%;
    }
}

@media (min-width: 1536px) {
    .stz-newsletter-form .ff-t-container {
        width: 42rem !important;
    }
}

/* Input Field */
.stz-newsletter-form input[type="email"] {
    flex: 1;
    border: none !important;
    color: #ffffff !important;
    padding: 0.5rem 1.5rem !important;
    min-height: 3rem;
    outline: none;
    box-shadow: none !important;
    font-family: 'Poppins', sans-serif;
}

.stz-newsletter-form input[type="email"]::placeholder {
    color: #ffffff !important;
}

@media (min-width: 768px) {
    .stz-newsletter-form input[type="email"] {
        padding: 0 1.5rem !important;
    }
}

/* Submit Button */
.stz-newsletter-form .ff-btn-submit {
    padding: 0.75rem 2rem !important;
    font-weight: 500;
    font-size: 1.125rem;
    font-family: 'Poppins', sans-serif;
    min-height: 3.5rem;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    margin-bottom: 0 !important;
    min-height: 56px;
}

.stz-newsletter-form .fluentform .ff-el-form-control {
    background: transparent !important;
}

@media (max-width: 768px) {
    .stz-newsletter-form .ff-btn-submit {
        min-height: 48px;
        min-width: 100% !important;
    }
}


/* Graphic Area & User's Custom CSS */
.newsletter-section {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.newsletter-section:before,
.newsletter-section:after {
    content: "";
    z-index: 1;
    pointer-events: none;
    position: absolute;
    bottom: 0;
}

.newsletter-section:before {
    background: radial-gradient(50% 50%, #ffffff08 81.55%, #ddd0 0) 100% 100% / contain no-repeat;
    width: 550px;
    height: 550px;
    top: 0;
    right: -40px;
}

.newsletter-section:after {
    background-image: var(--newsletter-bg-image, url(http://localhost/styluza-wp/wp-content/uploads/2026/05/newsletter-image.png));
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 400px;
    height: auto;
    top: -200px;
    right: 0;
}

.newsletter-svg-left {
    position: absolute;
    top: 0;
    left: auto;
    right: 12rem;
    z-index: 2;
}

.newsletter-svg-right {
    position: absolute;
    right: -2.5rem;
    bottom: 0;
    color: #ffffff;
    z-index: 2;
}

@media (max-width: 768px) {

    .newsletter-svg-left,
    .newsletter-svg-right {
        display: none;
    }
}

@media (max-width: 640px) {
    .newsletter-section:after {
        right: -180px;
    }
}