/* ================================================================
   PUREXO MAIN CSS v2.0
   Shopify-premium layout inspired by pollie.in
   Brand: Green #149F46 | Navy #134773 | Background #F5F5F0
   ================================================================ */

/* ── Layout Container ── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 40px;
}

@media (max-width: 768px) {
    .container {
        padding-inline: 20px;
    }
}

/* ── Utility ── */
.text-center {
    text-align: center;
}

.text-upper {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================================================
   BUTTONS  (pollie-style: pill "Shop Now" + flat "View All")
   ================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--ease);
    line-height: 1;
}

/* Pill — like pollie "SHOP NOW" */
.btn-pill {
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    background: var(--clr-white);
    color: var(--clr-text);
    border: 2px solid var(--clr-text);
}

.btn-pill:hover {
    background: var(--clr-text);
    color: var(--clr-white);
}

.btn-pill--green {
    background: var(--clr-green);
    color: var(--clr-white);
    border-color: var(--clr-green);
}

.btn-pill--green:hover {
    background: var(--clr-navy);
    border-color: var(--clr-navy);
    color: var(--clr-white);
}

.btn-pill--navy {
    background: var(--clr-navy);
    color: var(--clr-white);
    border-color: var(--clr-navy);
}

.btn-pill--navy:hover {
    background: var(--clr-green);
    border-color: var(--clr-green);
}

/* Flat rectangle — like pollie "VIEW ALL" */
.btn-flat {
    padding: 16px 48px;
    border-radius: 4px;
    background: var(--clr-navy);
    color: var(--clr-white);
    border: 2px solid var(--clr-navy);
    font-size: 0.85rem;
    font-weight: 800;
}

.btn-flat:hover {
    background: var(--clr-green);
    border-color: var(--clr-green);
}

.btn-flat--outline {
    background: transparent;
    color: var(--clr-navy);
}

.btn-flat--outline:hover {
    background: var(--clr-navy);
    color: var(--clr-white);
}

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announcement-bar {
    background: var(--clr-green);
    color: var(--clr-white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 0;
    letter-spacing: 0.03em;
}

.announcement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */
.site-header {
    background: var(--clr-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--clr-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    max-width: var(--max-w);
    margin-inline: auto;
}

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

/* Desktop Nav */
.site-nav {
    display: none;
}

@media (min-width: 1024px) {
    .site-nav {
        display: flex;
        align-items: center;
        gap: 32px;
        flex: 1;
        justify-content: center;
        margin-left: 40px;
    }
}

.site-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-navy);
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 6px;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--clr-green);
    border-radius: 2px;
    transition: var(--ease);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--clr-green);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--clr-navy);
    border-radius: 50%;
    transition: var(--ease);
    text-decoration: none;
    position: relative;
}

.header-icon-btn:hover {
    color: var(--clr-green);
}

.header-icon-btn svg {
    width: 22px;
    height: 22px;
}

.header-cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background: var(--clr-green);
    color: var(--clr-white);
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Global Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--ease);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-solid-green {
    background: var(--clr-green);
    color: var(--clr-white);
    border-color: var(--clr-green);
}

.btn-solid-green:hover {
    background: var(--clr-navy);
    border-color: var(--clr-navy);
    color: var(--clr-white);
}

.btn-outline-navy {
    background: transparent;
    color: var(--clr-navy);
    border-color: var(--clr-navy);
}

.btn-outline-navy:hover {
    background: var(--clr-navy);
    color: var(--clr-white);
}

.btn-get-in-touch {
    display: none;
}

@media (min-width: 1200px) {
    .btn-get-in-touch {
        display: inline-flex;
    }
}

/* Mobile hamburger */
.btn-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.btn-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: var(--ease);
}

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

    .btn-hamburger {
        display: flex;
    }

    .btn-get-in-touch {
        display: none !important;
    }

    .header-inner {
        padding: 0 20px;
    }
}

/* Mobile Nav Drawer */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--clr-white);
    z-index: 1100;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-nav-header img {
    height: 40px !important;
    width: auto !important;
    max-width: 180px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
    font-weight: 700;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mobile-nav-links a:hover {
    color: var(--clr-green);
}

/* ================================================================
   SITE CONTENT
   ================================================================ */
.site-content {
    min-height: 60vh;
}

/* ================================================================
   HERO SECTION  (pollie: full-width, bold, product on right)
   ================================================================ */
.section-hero {
    background: var(--clr-bg-white);
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: inherit;
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 40px;
}

.hero-content {
    padding: 80px 60px 80px 0;
}

.hero-label {
    display: inline-block;
    background: var(--clr-green);
    color: var(--clr-white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--clr-navy);
    margin-bottom: 16px;
}

.hero-title .highlight {
    color: var(--clr-green);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--clr-muted);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 400px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-media {
    background: transparent;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-media::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 159, 70, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Slider CSS */
.hero-slider .slide {
    position: absolute;
    z-index: 1;
    max-height: 78vh;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(19, 71, 115, 0.18));
    opacity: 0;
    animation: fade-slides 10s infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
}

.hero-slider .slide-1 {
    animation-delay: 0s;
}

.hero-slider .slide-2 {
    animation-delay: 5s;
}

/* Slider Pagination Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-muted);
    opacity: 0.3;
    animation: dot-active 10s infinite;
}

.hero-slider-dots .dot-1 {
    animation-delay: 0s;
}

.hero-slider-dots .dot-2 {
    animation-delay: 5s;
}

@keyframes dot-active {

    0%,
    45% {
        opacity: 1;
        background: var(--clr-green);
        transform: scale(1.2);
    }

    50%,
    95% {
        opacity: 0.3;
        background: var(--clr-muted);
        transform: scale(1);
    }

    100% {
        opacity: 1;
        background: var(--clr-green);
        transform: scale(1.2);
    }
}

@keyframes fade-slides {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    40% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.02);
    }

    50% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.03);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 1023px) {
    .section-hero {
        min-height: auto;
    }

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

    .hero-content {
        padding: 80px 0 40px;
    }

    .hero-media {
        min-height: 320px;
        padding: 32px 20px 0;
    }

    .hero-media img {
        max-height: 55vw;
    }
}

/* ================================================================
   PRODUCT SECTION  (pollie: flat cards, circle bg highlights)
   ================================================================ */
.section-products {
    /* background: var(--clr-bg); */
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: 12px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--clr-navy);
    line-height: 1.1;
}

.bestsellers-wrapper {
    margin-bottom: 25px;
}

/* Product Grid */
.purexo-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    list-style: none;
}

@media (max-width: 1023px) {
    .purexo-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .purexo-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* Premium Product Card */
.purexo-product-card {
    background: var(--clr-bg);
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    transition: var(--ease);
    border: 1px solid var(--clr-border);
    display: flex;
    flex-direction: column;
}

.purexo-product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.purexo-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    /* Clean white */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    overflow: hidden;
}

/* Subtle gradient behind product image for depth */
.purexo-card-img-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, rgba(255, 255, 255, 0) 60%);
    top: 0;
    left: 0;
    pointer-events: none;
}

.purexo-card-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.purexo-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.purexo-product-card:hover .purexo-card-img-wrapper img {
    transform: scale(1.08);
}

.purexo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--clr-green);
    color: var(--clr-white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
}

.purexo-badge.outofstock {
    background: #111;
}

.purexo-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: var(--clr-bg);
    flex-grow: 1;
}

.purexo-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-navy);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.purexo-card-name a {
    color: inherit;
}

.purexo-card-name a:hover {
    color: var(--clr-green);
}

.purexo-card-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-muted);
}

.purexo-card-price del {
    color: #b0b0b0;
    font-weight: 400;
    margin-right: 8px;
}

.purexo-card-price ins {
    text-decoration: none;
    color: var(--clr-navy);
}

.purexo-card-add-to-cart {
    width: 100%;
    margin-top: 12px;
}

.purexo-card-add-to-cart .button,
.purexo-card-add-to-cart .added_to_cart {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--clr-navy);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--ease);
    border: 1px solid var(--clr-border);
    text-decoration: none;
}

.purexo-product-card:hover .purexo-card-add-to-cart .button {
    background: var(--clr-navy);
    color: var(--clr-white);
    border-color: var(--clr-navy);
}

/* View All Button */
.products-footer {
    display: flex;
    justify-content: center;
}

/* ================================================================
   MARQUEE  (pollie-style: solid bg, flowing text)
   ================================================================ */
.section-marquee {
    background: var(--clr-green);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 24s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-right: 48px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-white);
}

.marquee-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-white);
    opacity: 0.5;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================================================================
   BANNER  (full-width CTA banner)
   ================================================================ */
.section-banner {
    background: var(--clr-navy);
    padding: 100px 40px;
    text-align: center;
}

.section-banner .section-heading {
    color: var(--clr-white);
}

.section-banner .section-eyebrow {
    color: rgba(255, 255, 255, 0.6);
}

.banner-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   STORYTELLING BLOCKS  (Ultra-premium, white bg, subtle borders)
   ================================================================ */
.story-block {
    padding: 100px 0;
    overflow: hidden;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
}

.story-block:last-child {
    border-bottom: none;
}

.story-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 40px;
}

.story-block-inner.reverse {
    direction: rtl;
}

.story-block-inner.reverse>* {
    direction: ltr;
}

.story-block-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-block-eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-green);
}

.story-block-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--clr-navy);
}

.story-block-desc {
    font-size: 1.1rem;
    color: var(--clr-muted);
    line-height: 1.8;
    max-width: 480px;
}

.story-block-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.story-block-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-navy);
}

.story-block-feature::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--clr-green);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.story-block-media {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-block-media::before {
    content: '';
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0) 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.story-block-media img {
    position: relative;
    z-index: 1;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
    .story-block-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-inline: 20px;
    }

    .story-block-inner.reverse {
        direction: ltr;
    }

    .story-block-media::before {
        width: 240px;
        height: 240px;
    }

    .story-block-media img {
        max-height: 260px;
    }
}

/* ================================================================
   WHY PUREXO  (pollie: value cards with checkmark)
   ================================================================ */
.section-why {
    background: var(--clr-bg);
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

.why-card {
    background: var(--clr-bg-white);
    border-radius: var(--radius-block);
    padding: 32px 24px;
    text-align: center;
    border: 1.5px solid var(--clr-border);
    transition: var(--ease);
}

.why-card:hover {
    border-color: var(--clr-green);
    box-shadow: 0 8px 24px rgba(20, 159, 70, 0.10);
    transform: translateY(-4px);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    background: var(--clr-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--clr-white);
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
}

.why-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.why-card-desc {
    font-size: 0.85rem;
    color: var(--clr-muted);
    margin-top: 8px;
    line-height: 1.55;
}

/* ================================================================
   ABOUT + WHOLESALE  (two-column blocks)
   ================================================================ */
.section-about {
    background: var(--clr-bg-white);
    padding: 100px 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 40px;
}

@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-inline: 20px;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-green);
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--clr-navy);
}

.about-text {
    font-size: 1rem;
    color: var(--clr-muted);
    line-height: 1.75;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.about-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--clr-green);
    display: block;
}

.about-stat-label {
    font-size: 0.82rem;
    color: var(--clr-muted);
}

.about-visual {
    background: var(--clr-bg);
    border-radius: var(--radius-block);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(20, 159, 70, 0.1);
}

.about-visual img {
    position: relative;
    z-index: 1;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
}

/* ================================================================
   WHOLESALE SECTION
   ================================================================ */
.section-wholesale {
    background: var(--clr-green);
    padding: 100px 0;
    text-align: center;
}

.section-wholesale .section-heading {
    color: var(--clr-white);
}

.section-wholesale .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.wholesale-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 16px auto 0;
    max-width: 560px;
}

.wholesale-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-wh-outline {
    background: transparent;
    color: var(--clr-white);
    border: 2px solid var(--clr-white);
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-wh-outline:hover {
    background: var(--clr-white);
    color: var(--clr-green);
}

.btn-wh-solid {
    background: var(--clr-navy);
    color: var(--clr-white);
    border: 2px solid var(--clr-navy);
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-wh-solid:hover {
    background: var(--clr-white);
    color: var(--clr-navy);
    border-color: var(--clr-white);
}

.btn-wa {
    background: #25D366;
    color: var(--clr-white);
    border: 2px solid #25D366;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--ease);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-wa:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
}

/* ================================================================
   FOOTER  (pollie: dark navy, arched top, 4-col links)
   ================================================================ */
.site-footer {
    background: var(--clr-navy);
    position: relative;
    /* padding: 80px 0 40px; */
    color: var(--clr-white);
}

.footer-inner {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-brand img {
    max-height: 52px;
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    font-size: 0.75rem;
    font-weight: 700;
    transition: var(--ease);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--clr-green);
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: 20px;
    display: block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--ease);
}

.footer-links a:hover {
    color: var(--clr-white);
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--clr-green);
}

@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-inner {
        padding-inline: 20px;
    }
}

/* ================================================================
   SINGLE PRODUCT PAGE (SHOPIFY PREMIUM LOOK)
   ================================================================ */
.single-product-container {
    max-width: var(--max-w);
    margin: 80px auto;
    /* padding: 0 40px; */
}

.purexo-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Image Gallery (Left Side) - Override WooCommerce Defaults */
.purexo-single-images {
    position: sticky;
    top: 100px;
}

.purexo-single-images .woocommerce-product-gallery.images {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    opacity: 1 !important;
}

.woocommerce-product-gallery__wrapper {
    margin-bottom: 20px;
}

.woocommerce-product-gallery__image {
    /* Let Flexslider handle the width */
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* WooCommerce gallery zoom trigger styled in extended.css */

/* Override default WooCommerce Sale Badge on single product page */
.woocommerce span.onsale {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    right: auto !important;
    background: var(--clr-green) !important;
    color: var(--clr-white) !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    padding: 6px 14px !important;
    border-radius: var(--radius-pill) !important;
    text-transform: uppercase !important;
    min-width: 0 !important;
    min-height: 0 !important;
    line-height: 1 !important;
    margin: 0 !important;
    z-index: 9 !important;
}

/* Summary (Right Side) */
.purexo-single-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
}

/* Override WooCommerce defaults for summary */
.purexo-single-summary .summary.entry-summary {
    float: none !important;
    width: 100% !important;
    clear: none !important;
}

.purexo-single-summary .product_title {
    font-family: var(--font-display) !important;
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
    color: var(--clr-navy) !important;
    margin: 0 0 12px 0 !important;
    clear: none !important;
}

.purexo-single-summary p.price {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--clr-text) !important;
    margin: 0 0 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.purexo-single-summary p.price del {
    color: var(--clr-muted) !important;
    font-weight: 400 !important;
    font-size: 1.2rem !important;
    opacity: 1 !important;
}

.purexo-single-summary p.price ins {
    text-decoration: none !important;
    color: var(--clr-navy) !important;
    font-weight: 700 !important;
    background: transparent !important;
}

/* Shipping notice under price */
.purexo-single-summary .product_meta .posted_in,
.purexo-single-summary .woocommerce-product-details__short-description {
    font-size: 0.95rem !important;
    color: var(--clr-muted) !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

/* SKU */
.purexo-single-summary .product_meta .sku_wrapper {
    font-size: 0.9rem !important;
    color: var(--clr-muted) !important;
    margin-bottom: 20px !important;
}

/* ── Quantity Label ── */
.purexo-single-summary .quantity-label,
.purexo-single-summary form.cart>label {
    display: block !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--clr-navy) !important;
    margin-bottom: 10px !important;
}

/* Add to cart form - stacked layout */
.purexo-single-summary form.cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    /* margin-top: 20px !important; */
    padding-top: 20px !important;
    /* border-top: 1px solid var(--clr-border) !important; */
}

/* ── Quantity Selector with +/- buttons ── */
.purexo-single-summary .quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 1.5px solid var(--clr-border) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    height: 50px !important;
    float: none !important;
    margin: 0 !important;
    width: auto !important;
    max-width: 150px !important;
    background: #fff !important;
}

.purexo-single-summary .quantity input.qty {
    width: 50px !important;
    height: 100% !important;
    border: none !important;
    border-left: 1.5px solid var(--clr-border) !important;
    border-right: 1.5px solid var(--clr-border) !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--clr-text) !important;
    -moz-appearance: textfield !important;
    background: transparent !important;
    padding: 0 !important;
}

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

/* +/- buttons added via JS */
.purexo-single-summary .quantity .qty-btn {
    width: 44px;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--clr-navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.purexo-single-summary .quantity .qty-btn:hover {
    background: #f5f5f5;
}

/* ── Add to Cart Button → Outlined Style ── */
.purexo-single-summary button.single_add_to_cart_button {
    width: 100% !important;
    height: 52px !important;
    background: #fff !important;
    color: var(--clr-navy) !important;
    border: 1.5px solid var(--clr-navy) !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
}

.purexo-single-summary button.single_add_to_cart_button:hover {
    background: var(--clr-navy) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.15) !important;
}

/* Product Meta (Categories, tags) */
.purexo-single-summary .product_meta {
    padding-top: 20px !important;
    /* border-top: 1px solid var(--clr-border) !important; */
    font-size: 0.95rem !important;
    color: var(--clr-muted) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.purexo-single-summary .product_meta a {
    color: var(--clr-navy) !important;
    font-weight: 600 !important;
}

.purexo-single-summary .product_meta a:hover {
    color: var(--clr-green) !important;
}

/* Tabs / After Summary Override */
.purexo-single-after {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid var(--clr-border);
}

.purexo-single-after .woocommerce-tabs ul.tabs {
    display: flex !important;
    gap: 40px !important;
    margin: 0 0 40px 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid var(--clr-border) !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.purexo-single-after .woocommerce-tabs ul.tabs li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
}

.purexo-single-after .woocommerce-tabs ul.tabs li::before,
.purexo-single-after .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.purexo-single-after .woocommerce-tabs ul.tabs li a {
    display: block !important;
    padding: 0 0 16px 0 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--clr-muted) !important;
    position: relative !important;
    top: 2px !important;
}

.purexo-single-after .woocommerce-tabs ul.tabs li.active a {
    color: var(--clr-navy) !important;
    border-bottom: 2px solid var(--clr-navy) !important;
}

.purexo-single-after .woocommerce-Tabs-panel {
    font-size: 1.05rem !important;
    color: var(--clr-text) !important;
    line-height: 1.8 !important;
    padding: 0 !important;
}

.purexo-single-after .woocommerce-Tabs-panel h2 {
    display: none !important;
    /* Hide redundant headings inside tabs */
}

/* Related Products */
.related.products {
    margin-top: 100px;
}

.related.products>h2 {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: var(--clr-navy) !important;
    margin-bottom: 40px !important;
    text-align: center !important;
}

/* ================================================================
   1. PREMIUM HERO SECTION
   ================================================================ */
.section-premium-hero {
    background: linear-gradient(135deg, #f0f7f4 0%, #e1f0e8 100%);
    /* padding: 80px 0; */
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge-pill-green {
    display: inline-block;
    background: var(--clr-green);
    color: var(--clr-white);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--clr-navy);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--clr-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    gap: 32px;
}

.h-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-navy);
    line-height: 1.3;
}

.h-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid rgba(20, 159, 70, 0.15);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    color: var(--clr-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.h-feature:hover .h-icon {
    background: var(--clr-green);
    color: #fff;
    box-shadow: 0 6px 16px rgba(20, 159, 70, 0.3);
    transform: scale(1.08);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ================================================================
   2. TRUST BADGES
   ================================================================ */
.section-trust-badges {
    padding: 40px 0;
    border-bottom: 1px solid var(--clr-border);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.t-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid rgba(20, 159, 70, 0.15);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    color: var(--clr-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-item:hover .t-icon {
    background: var(--clr-green);
    color: #fff;
    border-color: var(--clr-green);
    box-shadow: 0 6px 16px rgba(20, 159, 70, 0.3);
    transform: scale(1.08);
}

.t-text {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.4;
}

.t-text strong {
    color: var(--clr-navy);
    font-size: 1rem;
}

/* ================================================================
   3. BESTSELLERS
   ================================================================ */
.section-bestsellers {
    padding: 100px 0;
}

.purexo-bestseller-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card-premium {
    background: #fafbfb;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-block);
    padding: 10px;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
    border-color: transparent;
}

.product-img-wrap {
    display: block;
    /* margin-bottom: 20px; */
    background: #fcfcfc;
    border-radius: 12px;
    /* padding: 20px; */
}

.product-img-wrap img {
    width: 100%;
    /* height: 250px; */
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-info-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-title a {
    color: var(--clr-navy);
    text-decoration: none;
}

.product-rating {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.review-count {
    color: var(--clr-muted);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 20px;
}

.product-price del {
    color: var(--clr-muted);
    font-weight: 400;
    font-size: 1rem;
    margin-left: 8px;
}

.btn-add-to-cart {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--clr-navy);
    color: var(--clr-navy);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--ease);
    margin-top: auto;
}

.product-card-premium:hover .btn-add-to-cart {
    background: var(--clr-navy);
    color: var(--clr-white);
}

/* ================================================================
   4. CATEGORY CARDS (PER REFERENCE IMAGE)
   ================================================================ */
.section-categories {
    padding: 20px 0 80px;
}

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

.cat-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    min-height: 320px;
}

/* Colors from reference image */
.cat-dark-green {
    background: #1a2f2a;
}

.cat-navy {
    background: #0c1a2e;
}

.cat-teal {
    background: #013838;
}

.cat-orange {
    background: #7c4109;
}

.cat-content {
    position: relative;
    z-index: 2;
    color: var(--clr-white);
    max-width: 60%;
}

.cat-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cat-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-shop-outline {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-pill);
    color: var(--clr-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--ease);
}

.btn-shop-outline:hover {
    background: var(--clr-white);
    color: var(--clr-navy);
}

.cat-card img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-height: 80%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.cat-card:hover img {
    /* transform: scale(1.05) rotate(-3deg); */
}

/* ================================================================
   5. WHY CHOOSE PUREXO
   ================================================================ */
.section-why-choose {
    background: linear-gradient(160deg, #071525 0%, #0d2137 50%, #0a1a2e 100%);
    color: var(--clr-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-why-choose::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(20, 159, 70, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.features-5-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.f5-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 20px 32px;
    position: relative;
    transition: all 0.35s ease;
    cursor: default;
    overflow: hidden;
}

.f5-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-green), #38ef7d);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.f5-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(20, 159, 70, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(20, 159, 70, 0.08);
}

.f5-item:hover::before {
    opacity: 1;
}

.f5-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    margin: 0 auto 24px;
    color: var(--clr-green);
    transition: all 0.35s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.f5-item:hover .f5-icon {
    background: var(--clr-green);
    border-color: var(--clr-green);
    color: #fff;
    box-shadow: 0 8px 24px rgba(20, 159, 70, 0.4);
    transform: scale(1.1);
}

.f5-item h4 {
    color: var(--clr-white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.f5-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ================================================================
   6. TESTIMONIAL
   ================================================================ */
.section-testimonial {
    padding: 120px 0;
    background: var(--clr-white);
}

.test-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.test-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--clr-navy);
    margin: 16px 0 32px 0;
    line-height: 1.1;
}

.test-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.author-info strong {
    color: var(--clr-navy);
    font-size: 1.1rem;
}

.author-info .verified {
    color: var(--clr-green);
}

.test-image {
    position: relative;
    border-radius: var(--radius-block);
    overflow: hidden;
}

.interior-placeholder {
    width: 100%;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1000&auto=format&fit=crop') center/cover;
    border-radius: var(--radius-block);
}

.rating-badge {
    position: absolute;
    bottom: -30px;
    right: 40px;
    background: var(--clr-navy);
    color: var(--clr-white);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.rating-badge .stars {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.rating-badge strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-display);
}

/* ================================================================
   7. BOTTOM CTA
   ================================================================ */
.section-bottom-cta {
    background: linear-gradient(359deg, #147537, #149f46);
    /* background: var(--clr-green); */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--clr-white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--clr-white);
    margin: 16px 0 24px 0;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-solid-white {
    background: var(--clr-white);
    color: var(--clr-green);
}

.btn-solid-white:hover {
    background: var(--clr-navy);
    color: var(--clr-white);
}

.cta-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* ================================================================
   RESPONSIVE LAYOUT QUERIES (AS REQUESTED)
   ================================================================ */

@media screen and (min-width: 1600px) and (max-width: 1920px) {

    /* Extra Large Desktop / Premium View */
    .container,
    .single-product-container {
        max-width: 1440px;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1599px) {

    /* Large Desktop */
    .container,
    .single-product-container {
        max-width: 1320px;
    }
}

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

    /* Standard Desktop */
    .container,
    .single-product-container {
        max-width: 1200px;
    }
}

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

    /* Tablet (iPad Landscape & Portrait) */
    .hero-grid,
    .test-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content,
    .test-content,
    .cta-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-actions,
    .hero-features {
        justify-content: center;
    }

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

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

    .features-5-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .purexo-single-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .purexo-single-images {
        position: static;
    }
}

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

    /* Mobile Devices */
    .hero-grid,
    .test-grid,
    .cta-grid,
    .features-5-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .trust-grid,
    .cat-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;
    }

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

    .purexo-single-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .purexo-single-summary .product_title {
        font-size: 2rem !important;
    }

    .purexo-single-summary button.single_add_to_cart_button {
        width: 100% !important;
        flex: none !important;
    }
}

/* ================================================================
   WOOCOMMERCE ARCHIVE / SHOP PAGE
   ================================================================ */
ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
    margin-top: 50px !important;
    padding: 0 !important;
    list-style: none !important;
}

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

/* Ensure no floats break the grid */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media screen and (max-width: 767px) {
    ul.products {
        grid-template-columns: 1fr !important;
    }
}


/* Force Add to Cart button styling in WooCommerce grids */
.product-card-premium .btn-add-to-cart,
.woocommerce ul.products li.product .button {
    display: block !important;
    width: 100% !important;
    padding: 12px !important;
    background: transparent !important;
    border: 1px solid var(--clr-navy) !important;
    color: var(--clr-navy) !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin-top: auto !important;
    transition: var(--ease) !important;
}

.product-card-premium:hover .btn-add-to-cart,
.woocommerce ul.products li.product:hover .button {
    background: var(--clr-navy) !important;
    color: var(--clr-white) !important;
}

/* Added from content-product.php */
.product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

/* Missing button style */
.btn-solid-navy {
    display: inline-block;
    padding: 14px 28px;
    background: var(--clr-navy);
    color: var(--clr-white);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--ease);
}

.btn-solid-navy:hover {
    background: var(--clr-green);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 159, 70, 0.2);
}


/* ================================================================
   TESTIMONIAL SLIDER CSS
   ================================================================ */
.testimonial-slider-wrap {
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.test-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--clr-green);
    width: 24px;
    border-radius: var(--radius-pill);
}

/* ================================================================
   WOOCOMMERCE REVIEWS SECTION CSS
   ================================================================ */
#reviews {
    margin-top: 40px;
}

#reviews #comments h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.commentlist {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.commentlist li.review {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.commentlist li.review img.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    float: left;
    margin-right: 16px;
}

.commentlist li.review .comment-text {
    margin-left: 64px;
}

.commentlist li.review .star-rating {
    float: right;
    color: var(--clr-green);
}

.commentlist li.review .meta {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    display: block;
}

.commentlist li.review .meta strong {
    color: var(--clr-navy);
    font-weight: 700;
    font-size: 1.1rem;
}

#review_form_wrapper {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

#review_form_wrapper .comment-reply-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

#review_form_wrapper form p {
    margin-bottom: 16px;
}

#review_form_wrapper form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

#review_form_wrapper form input[type="text"],
#review_form_wrapper form input[type="email"],
#review_form_wrapper form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: var(--font-body);
}

#review_form_wrapper form input[type="submit"] {
    background: var(--clr-navy);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
}

#review_form_wrapper form input[type="submit"]:hover {
    background: var(--clr-green);
}

/* Fix overlap issue for product grids */
ul.products,
.purexo-bestseller-grid {
    margin-bottom: 60px !important;
    padding-bottom: 20px;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.fab-whatsapp {
    background-color: #25d366;
    /* WhatsApp Green */
}

.fab-whatsapp:hover {
    background-color: #1ebe57;
}

.fab-top {
    background-color: var(--clr-navy, #0f2c59);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fab-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-top:hover {
    background-color: #173d78;
    transform: translateY(-5px) !important;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   Blog Index & Single Post Styles
   ========================================================================== */

/* Blog Page Header */
.blog-page-header {
    background-color: var(--clr-navy, #0f2c59);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.blog-page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

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

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    display: block;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #f4f5f7;
}

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

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

.blog-card-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #cbd5e1;
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--clr-muted, #64748b);
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-cat a {
    background: #e6f9ed;
    color: var(--clr-green, #2f8941);
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.blog-card-title a {
    color: var(--clr-navy, #0f2c59);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--clr-green, #2f8941);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--clr-navy, #0f2c59);
    text-decoration: none;
    font-size: 0.95rem;
}

.blog-read-more svg {
    transition: transform 0.2s ease;
}

.blog-read-more:hover {
    color: var(--clr-green, #2f8941);
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    margin-bottom: 80px;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: 6px;
    background: #f4f5f7;
    color: var(--clr-navy, #0f2c59);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover {
    background: #e2e8f0;
}

.blog-pagination .page-numbers.current {
    background: var(--clr-green, #2f8941);
    color: #fff;
}

.blog-pagination .next,
.blog-pagination .prev {
    gap: 6px;
}

/* Single Post */
.single-post-header {
    padding: 60px 0 40px;
    background-color: #f8fafc;
    text-align: center;
    margin-bottom: 40px;
}

.single-post-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 20px auto;
    max-width: 800px;
    color: var(--clr-navy, #0f2c59);
}

.single-post-cat {
    display: inline-block;
    background: var(--clr-green, #2f8941);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-decoration: none;
}

.single-post-meta-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--clr-muted, #64748b);
    margin-top: 25px;
}

.single-post-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--clr-navy, #0f2c59);
}

.single-post-author img {
    border-radius: 50%;
}

.single-post-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-content-wrapper {
    width: 100%;
    margin: 0 auto;
}

.single-content-wrapper .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.single-content-wrapper .entry-content p {
    margin-bottom: 24px;
}

.single-content-wrapper .entry-content h2,
.single-content-wrapper .entry-content h3 {
    color: var(--clr-navy, #0f2c59);
    margin-top: 40px;
    margin-bottom: 20px;
}

.single-content-wrapper .entry-content img {
    border-radius: 8px;
    margin: 30px 0;
}

.single-post-tags-share {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.single-post-tags {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tags-list a {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    margin-right: 8px;
    transition: background 0.2s;
}

.tags-list a:hover {
    background: var(--clr-green, #2f8941);
    color: #fff;
}

.single-post-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.single-post-share strong {
    font-size: 1rem;
    color: var(--clr-navy, #0f2c59);
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    color: #fff;
}

.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }
.share-wa { background: #25D366; }

.single-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    margin-bottom: 60px;
}

.single-post-navigation>div {
    flex: 1;
}

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

.single-post-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--clr-navy, #0f2c59);
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.single-post-navigation a:hover {
    background: var(--clr-green, #2f8941);
    color: #fff;
}

@media (max-width: 767px) {
    .single-post-title {
        font-size: 2rem;
    }

    .single-post-navigation {
        flex-direction: column;
        gap: 20px;
    }

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

/* ==========================================================================
   Comments Section Styles
   ========================================================================== */
.single-post-comments {
    margin: 60px auto 0 auto;
    padding-top: 40px;
    border-top: 2px solid #eaeaea;
    max-width: 800px;
}

.comments-title,
.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-navy, #0f2c59);
    margin-bottom: 30px;
    display: block;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.comment-list .comment {
    margin-bottom: 30px;
}

.comment-body {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.comment-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 15px;
    width: 48px;
    height: 48px;
}

.comment-author b {
    font-size: 1.1rem;
    color: var(--clr-navy, #0f2c59);
    display: block;
}

.comment-metadata a {
    color: var(--clr-muted, #64748b);
    font-size: 0.85rem;
    text-decoration: none;
}

.comment-content p {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reply a {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-green, #2f8941);
    background: #e6f9ed;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.reply a:hover {
    background: var(--clr-green, #2f8941);
    color: #fff;
}

.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 30px;
    border-left: 2px solid #e2e8f0;
}

@media (max-width: 575px) {
    .comment-list .children {
        padding-left: 20px;
    }
}

/* Comment Form */
#respond {
    background: #fff;
    padding: 30px;
/*     border-radius: 12px; */
/*     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
/*     border: 1px solid #eaeaea; */
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-form p {
    margin: 0;
}

.comment-form label {
    display: block;
    font-weight: 600;
    color: var(--clr-navy, #0f2c59);
    margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--clr-green, #2f8941);
    outline: none;
    box-shadow: 0 0 0 4px rgba(47, 137, 65, 0.1);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--clr-muted, #64748b);
}

.comment-form-cookies-consent input {
    width: auto;
}

.form-submit {
    margin-top: 10px !important;
}

.form-submit input[type="submit"] {
    background: var(--clr-navy, #0f2c59);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit input[type="submit"]:hover {
    background: var(--clr-green, #2f8941);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(47, 137, 65, 0.2);
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.about-hero {
    background-color: var(--clr-navy, #0f2c59);
    color: #fff;
    padding: 100px 0;
    margin-bottom: 60px;
}
.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.about-hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
}

/* Our Story Section */
.about-story-section {
    padding: 60px 0;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-story-text h2 {
    font-size: 2.5rem;
    color: var(--clr-navy, #0f2c59);
    margin-bottom: 25px;
}
.about-story-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}
.story-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8fafc;
    border-left: 4px solid var(--clr-green, #2f8941);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}
.story-highlight svg {
    color: var(--clr-green, #2f8941);
    flex-shrink: 0;
    margin-top: 3px;
}
.story-highlight strong {
    font-size: 1.15rem;
    color: var(--clr-navy, #0f2c59);
}
.about-story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 44, 89, 0.1);
}

/* Values Section */
.about-values-section {
    padding: 80px 0;
    background: #f8fafc;
}
.about-section-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
}
.about-section-header h2 {
    font-size: 2.5rem;
    color: var(--clr-navy, #0f2c59);
    margin-bottom: 20px;
}
.about-section-header p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 15px;
}
.values-subtitle {
    text-align: center;
    font-size: 2rem;
    color: var(--clr-navy, #0f2c59);
    margin-bottom: 40px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-10px);
}
.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #e6f9ed;
    color: var(--clr-green, #2f8941);
    border-radius: 50%;
    margin-bottom: 25px;
}
.value-card h4 {
    font-size: 1.25rem;
    color: var(--clr-navy, #0f2c59);
    margin-bottom: 15px;
}
.value-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Process Section */
.about-process-section {
    padding: 100px 0;
    background: var(--clr-navy, #0f2c59);
    color: #fff;
    text-align: center;
}
.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.process-intro {
    font-size: 1.25rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 20px;
}
.process-content p {
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #94a3b8;
}
.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.process-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 160px;
    font-weight: 600;
}
.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--clr-green, #2f8941);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}
.step-arrow {
    color: #475569;
}

/* CTA Section */
.about-cta-section {
    padding: 80px 0;
}
.about-cta-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.cta-quote {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--clr-navy, #0f2c59);
    margin-bottom: 40px;
    font-style: italic;
}
.cta-quote strong {
    font-style: normal;
    color: var(--clr-green, #2f8941);
}
.btn-primary {
    display: inline-block;
    background: var(--clr-navy, #0f2c59);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: var(--clr-green, #2f8941);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 137, 65, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    .about-story-image {
        order: -1;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    .step-arrow {
        transform: rotate(90deg);
    }
    .cta-quote {
        font-size: 1.15rem;
    }
}
@media (max-width: 575px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Override WooCommerce Blocks Empty Cart Sad Face */
.wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='2'/%3E%3Ccircle cx='19' cy='21' r='2'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") !important;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='21' r='2'/%3E%3Ccircle cx='19' cy='21' r='2'/%3E%3Cpath d='M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12'/%3E%3C/svg%3E") !important;
}

/* Blog Empty State */
.blog-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f9fbf9;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 600px;
    border: 1px dashed rgba(47, 137, 65, 0.3);
}
.blog-no-results .empty-state-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.blog-no-results .empty-state-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
}
.blog-no-results .empty-state-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}
.blog-no-results .empty-state-search form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}
.blog-no-results .empty-state-search input[type="text"],
.blog-no-results .empty-state-search input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.blog-no-results .empty-state-search input[type="text"]:focus,
.blog-no-results .empty-state-search input[type="search"]:focus {
    border-color: var(--primary-color);
}
.blog-no-results .empty-state-search button,
.blog-no-results .empty-state-search input[type="submit"] {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}
.blog-no-results .empty-state-search button:hover,
.blog-no-results .empty-state-search input[type="submit"]:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}
@media (max-width: 575px) {
    .blog-no-results .empty-state-search form {
        flex-direction: column;
    }
}