/* ================================================================
   PUREXO EXTENDED STYLES
   Smooth scroll, Promo Banner, 3-col Testimonials, Premium Footer
   ================================================================ */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



/* ================================================================
   3-COLUMN TESTIMONIALS
   ================================================================ */
.section-testimonial {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e8edf5;
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--clr-green);
}

.testimonial-card.tc-featured {
    background: var(--clr-navy);
    border-color: var(--clr-navy);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(13, 33, 55, 0.25);
}

.testimonial-card.tc-featured:hover {
    transform: translateY(-18px);
}

.testimonial-card.tc-featured .tc-quote,
.testimonial-card.tc-featured .tc-author strong,
.testimonial-card.tc-featured .tc-verified,
.testimonial-card.tc-featured small {
    color: rgba(255, 255, 255, 0.9) !important;
}

.testimonial-card.tc-featured .tc-author strong {
    color: #fff !important;
}

.tc-stars {
    display: flex;
    gap: 3px;
}

.tc-quote {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #475569;
    flex: 1;
    font-style: italic;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-green), var(--clr-navy));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.tc-author strong {
    display: block;
    font-weight: 700;
    color: var(--clr-navy);
    font-size: 1rem;
}

.tc-author small {
    color: #94a3b8;
    font-size: 0.82rem;
}

.tc-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--clr-green);
    font-size: 0.78rem;
    font-weight: 600;
    margin-left: 6px;
}

/* Stats bar */
.testimonials-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background: var(--clr-navy);
    border-radius: 20px;
}

.ts-stat {
    text-align: center;
}

.ts-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--clr-green);
}

.ts-stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.ts-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

/* ================================================================
   PREMIUM FOOTER
   ================================================================ */
.footer-top-bar {
    background: linear-gradient(135deg, #0a1a2e 0%, #112240 100%);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ftb-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.ftb-left .ftb-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(20, 159, 70, 0.15);
    border: 1px solid rgba(20, 159, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-green);
    flex-shrink: 0;
}

.ftb-left h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.ftb-left p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-pill);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.footer-newsletter-form input[type="email"] {
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    width: 260px;
    outline: none;
}

.footer-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form button {
    padding: 14px 28px;
    background: var(--clr-green);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--ease);
}

.footer-newsletter-form button:hover {
    background: #0fa83c;
}

/* Footer Main */
.footer-main {
    background: #0d2137;
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
    gap: 60px;
}

.site-footer .footer-logo {
    max-width: 140px !important;
    width: 140px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--ease);
}

.social-btn:hover {
    background: var(--clr-green);
    border-color: var(--clr-green);
    color: #fff;
    transform: translateY(-2px);
}

.footer-trust-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ftm-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
}

.ftm-item svg {
    color: var(--clr-green);
    flex-shrink: 0;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-green);
    margin-bottom: 24px;
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a:hover,
.footer-links li a.active,
.footer-links li.view-all a {
    color: var(--clr-green);
}

.footer-links li.view-all {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list li a:hover {
    color: var(--clr-green);
}

.fc-icon {
    color: var(--clr-green);
    flex-shrink: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--clr-green);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--ease);
}

.footer-cta-btn:hover {
    background: #0fa83c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 159, 70, 0.3);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: #060f1a;
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom-payments {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ================================================================
   RESPONSIVE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 768-1024 (Tablet)
   ================================================================ */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card.tc-featured {
        transform: none;
    }

    .ts-stat strong {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-newsletter-wrap {
        flex-direction: column;
        text-align: center;
    }

    .promo-banner-img {
        height: 300px;
    }

    .promo-banner-content h2 {
        font-size: 2rem;
    }
}

/* ================================================================
   RESPONSIVE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â 375-767 (Mobile)
   ================================================================ */
@media screen and (min-width: 375px) and (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.tc-featured {
        transform: none;
    }

    .testimonials-stats {
        flex-direction: column;
        gap: 24px;
    }

    .ts-divider {
        width: 60px;
        height: 1px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-newsletter-wrap {
        flex-direction: column;
        gap: 24px;
    }

    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 12px;
        width: 100%;
    }

    .footer-newsletter-form input[type="email"] {
        width: 100%;
    }

    .promo-banner-overlay {
        padding: 30px;
    }

    .promo-banner-content h2 {
        font-size: 1.7rem;
    }

    .promo-banner-img {
        height: 250px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ================================================================
   MARQUEE SECTION
   ================================================================ */
.marquee-section {
    background: var(--clr-green);
    color: #fff;
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 0 40px;
    position: relative;
}

.marquee-content span::after {
    content: '|';
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.marquee-content span:last-child::after {
    display: none;
}

/* ================================================================
   PRODUCT SHOWCASE SLIDER
   ================================================================ */
.section-showcase-slider {
    position: relative;
    overflow: hidden;
}

.showcase-slider-wrap {
    position: relative;
    width: 100%;
}

.showcase-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.showcase-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 80px 0;
    position: relative;
}

/* Background Colors --- Brand-Relevant Gradients */
/* Slide 1 Kitchen: Deep Navy Teal */
.bg-showcase-1 {
    background: linear-gradient(135deg, #0a3d2b 0%, #1a6b49 100%);
    color: white;
}

/* Slide 2 Glass: Rich Slate Blue */
.bg-showcase-2 {
    background: linear-gradient(135deg, #0f3460 0%, #16537e 100%);
    color: white;
}

/* Slide 3 Bathroom: Indigo Purple */
.bg-showcase-3 {
    background: linear-gradient(135deg, #2d1b69 0%, #4a3090 100%);
    color: white;
}

/* Slide 4 Specialty: Purexo Brand Green */
.bg-showcase-4 {
    background: linear-gradient(135deg, #0d4f27 0%, #149F46 100%);
    color: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: currentColor;
}

.showcase-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 480px;
}

.showcase-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: #333;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #f8f8f8;
}

.showcase-sparkles {
    position: absolute;
    bottom: -20px;
    left: -20px;
    font-size: 2rem;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.showcase-image-box {
    position: relative;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    overflow: visible;
}

/* Inner container colors — soft contrast against dark backgrounds */
.bg-box-1 {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.bg-box-2 {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.bg-box-3 {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.bg-box-4 {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
}

.showcase-bottle {
    max-height: 120%;
    /* Pop out of the box */
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.showcase-slide.active .showcase-bottle {
    animation: float-bottle 4s ease-in-out infinite;
}

@keyframes float-bottle {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Dots Navigation */
.showcase-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.s-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.s-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.s-dot.active {
    width: 32px;
    border-radius: 12px;
    background: #fff;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .showcase-title {
        font-size: 3rem;
    }

    .showcase-image-box {
        height: 500px;
    }
}

@media screen and (max-width: 767px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .showcase-desc {
        margin: 0 auto 30px;
    }

    .showcase-image-box {
        height: 400px;
        border-radius: 24px;
        margin-top: 40px;
    }

    .showcase-bottle {
        max-height: 110%;
    }

    .showcase-slide {
        padding: 60px 0 100px;
    }
}

/* ================================================================
   HERO PRODUCTS BANNER
   ================================================================ */
.section-hero-products {
    background: #eaf5f0;
    padding: 100px 0;
    overflow: hidden;
}

.hero-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hp-content {
    max-width: 540px;
}

.hp-badge {
    display: inline-block;
    background: var(--clr-green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hp-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--clr-navy);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hp-desc {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hp-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hp-actions .btn {
    padding: 16px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hp-actions .btn-solid-green {
    background: var(--clr-green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(20, 159, 70, 0.2);
    border: 2px solid var(--clr-green);
}

.hp-actions .btn-solid-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(20, 159, 70, 0.3);
}

.hp-actions .btn-outline-navy {
    background: transparent;
    color: var(--clr-navy);
    border: 2px solid var(--clr-navy);
}

.hp-actions .btn-outline-navy:hover {
    background: var(--clr-navy);
    color: #fff;
}

.hp-features-row {
    display: flex;
    gap: 30px;
}

.hpf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-navy);
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.hpf-item svg {
    color: #64748b;
    flex-shrink: 0;
}

.hp-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp-image img {
    max-width: 120%;
    height: auto;
    margin-left: -10%;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 1024px) {
    .hp-title {
        font-size: 3.5rem;
    }

    .hero-products-grid {
        gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .hero-products-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hp-content {
        margin: 0 auto;
    }

    .hp-actions {
        justify-content: center;
        flex-direction: column;
    }

    .hp-features-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hpf-item {
        text-align: left;
    }

    .hp-image img {
        max-width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }
}

/* ================================================================
   HERO SLIDER OVERRIDES
   ================================================================ */
.hero-slider-wrap {
    position: relative;
    width: 100%;
}

.hero-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    opacity: 0.2;
    transition: opacity 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.h-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(13, 33, 55, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.h-dot:hover {
    background: rgba(13, 33, 55, 0.5);
}

.h-dot.active {
    width: 32px;
    border-radius: 12px;
    background: var(--clr-green);
}

.hero-image {
    height: 540px;
    align-items: center;
}

.hero-image img {
    max-height: 100%;
    object-fit: contain;
}

/* Responsive adjustment for hero image size */
@media screen and (max-width: 1024px) {
    .hero-image {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    .hero-image {
        height: 320px;
    }
}

/* ================================================================
   UNIQUE HERO IMAGE BACKGROUND
   ================================================================ */
.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    z-index: -1;
    box-shadow: 0 20px 40px rgba(20, 159, 70, 0.08);
    /* subtle green shadow */
    animation: blob-float 10s ease-in-out infinite alternate;
}

@keyframes blob-float {
    0% {
        transform: scale(1) rotate(0deg);
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    }

    50% {
        transform: scale(1.05) rotate(5deg);
        border-radius: 50% 50% 34% 66% / 56% 30% 70% 44%;
    }

    100% {
        transform: scale(0.95) rotate(-5deg);
        border-radius: 43% 57% 45% 55% / 37% 55% 45% 63%;
    }
}

/* Responsive adjustments for blob */
@media screen and (max-width: 1024px) {
    .hero-image::before {
        width: 320px;
        height: 320px;
    }
}

@media screen and (max-width: 767px) {
    .hero-image::before {
        width: 250px;
        height: 250px;
    }
}

/* ================================================================
   SHOP & SINGLE PRODUCT PAGE UI FIXES
   ================================================================ */

/* 1. Shop Page Sorting Dropdown */
.woocommerce-ordering select {
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 16px center;
    border: 1px solid var(--clr-border);
    padding: 12px 48px 12px 20px;
    border-radius: var(--radius-pill);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-navy);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.woocommerce-ordering select:hover {
    border-color: var(--clr-navy);
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--clr-green);
    box-shadow: 0 0 0 3px rgba(20, 159, 70, 0.1);
}

/* (Old product page overrides removed - now handled by main.css) */
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.purexo-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-navy);
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    user-select: none;
    transition: all 0.3s ease;
    background: #fff;
}

/* Hide default details marker in WebKit */
.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #999;
    transition: transform 0.3s ease;
}

.accordion-item[open] {
    border-color: var(--clr-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-item[open] .accordion-header {
    background: var(--clr-green);
    color: #fff;
}

.accordion-item[open] .accordion-header::after {
    content: '−';
    /* Using minus sign, not hyphen, for better vertical alignment */
    color: #fff;
}

.accordion-content {
    padding: 20px;
    color: var(--clr-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    background: #fff;
    border-top: 1px solid var(--clr-border);
    animation: accordion-slide-down 0.3s ease-out;
}

@keyframes accordion-slide-down {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================================
   SINGLE PRODUCT - BUY IT NOW, DELIVERY, SAFE CHECKOUT
   ================================================================ */

/* -- Buy It Now Button ? Solid Green -- */
.product-actions-extra {
    width: 100%;
}

.btn-buy-it-now {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    background: var(--clr-green) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-buy-it-now:hover {
    background: #0fa83c !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 159, 70, 0.25);
    color: #fff !important;
}

/* -- Delivery Estimate -- */
.product-delivery-estimate {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-top: 20px; */
    padding: 16px 0;
    /* border-top: 1px solid var(--clr-border); */
    font-size: 0.9rem;
    color: var(--clr-text);
}

.product-delivery-estimate svg {
    flex-shrink: 0;
}

.product-delivery-estimate strong {
    color: var(--clr-green);
}

/* -- Safe Checkout -- */
.product-safe-checkout {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--clr-border);
    text-align: center;
}

.safe-checkout-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 14px;
}

.payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-navy);
    background: #fff;
    letter-spacing: 0.03em;
}

.pay-badge.pay-upi {
    color: #0a7b3e;
}

.pay-badge.pay-maestro {
    color: #c92d2d;
}

/* ── Quantity Label (PHP) ── */
.quantity-label {
    display: block !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--clr-navy) !important;
    margin-bottom: 10px !important;
    width: 100%;
}

/* ── Quantity +/- buttons (broader selector) ── */
.single-product .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;
    padding: 0;
    line-height: 1;
}

.single-product .quantity .qty-btn:hover {
    background: #f5f5f5;
}

/* ── Product Description Accordion on Single Page ── */
.product-desc-accordion {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.product-desc-accordion .accordion-item {
    border-color: var(--clr-border);
}

.product-desc-accordion .accordion-content p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    color: var(--clr-muted);
    line-height: 1.7;
}


/* ================================================================
   POLICY & STANDARD PAGES
   ================================================================ */
.policy-content {
    background: #fff;
    padding: 60px;
    border-radius: var(--radius-block);
    border: 1px solid var(--clr-border);
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
        border-radius: 16px;
    }
}

/* ================================================================
   ANNOUNCEMENT BAR MARQUEE ANIMATION
   ================================================================ */
.announcement-bar {
    overflow: hidden;
}

.announcement-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.announcement-text {
    white-space: nowrap;
    animation: marquee 15s linear infinite;
    flex-grow: 1;
}

.announcement-contact {
    white-space: nowrap;
    margin-left: 20px;
    z-index: 1;
    background: var(--clr-green);
    padding-left: 10px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.announcement-bar:hover .announcement-text {
    animation-play-state: paused;
}

/* ================================================================
   SQUARE PRODUCT IMAGES FIX (1000x1000) & GALLERY SLIDER
   ================================================================ */
.woocommerce-product-gallery {
    position: relative;
    border-radius: var(--radius-block);
    background: #fff;
    opacity: 1 !important;
}

.flex-viewport {
    border-radius: var(--radius-block);
    overflow: hidden;
}

.woocommerce-product-gallery__image {
    background: #fff;
}

.woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
}

.woocommerce-product-gallery__image img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    object-fit: contain; /* Contain the image entirely within the square */
    mix-blend-mode: normal !important;
    background: #fff;
}

/* FlexSlider Navigation Thumbs */
.flex-control-thumbs {
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.flex-control-thumbs li {
    width: calc(25% - 9px); /* 4 thumbnails per row */
    cursor: pointer;
}

.flex-control-thumbs img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
}

/* 
================================================================
   GALLERY ARROWS & ZOOM BUTTON
================================================================ */
/* Main image arrows */
.woocommerce-product-gallery .flex-direction-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}
.woocommerce-product-gallery .flex-direction-nav a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-navy);
    font-size: 0;
    z-index: 10;
    opacity: 0;
    transition: var(--ease);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.woocommerce-product-gallery:hover .flex-direction-nav a {
    opacity: 1;
}
.woocommerce-product-gallery .flex-direction-nav a::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}
.woocommerce-product-gallery .flex-direction-nav a.flex-prev {
    left: 10px;
}
.woocommerce-product-gallery .flex-direction-nav a.flex-prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}
.woocommerce-product-gallery .flex-direction-nav a.flex-next {
    right: 10px;
}
.woocommerce-product-gallery .flex-direction-nav a.flex-next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}
.woocommerce-product-gallery .flex-direction-nav a:hover {
    background: var(--clr-navy);
    color: #fff;
    border-color: var(--clr-navy);
}

/* Zoom button */
.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--clr-navy);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--ease);
    cursor: pointer;
    text-indent: -9999px;
    overflow: hidden;
}
.woocommerce-product-gallery__trigger::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%230f2c59" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="11" y1="8" x2="11" y2="14"></line><line x1="8" y1="11" x2="14" y2="11"></line></svg>') no-repeat center center;
    background-size: contain;
    display: block;
}
.woocommerce-product-gallery__trigger:hover {
    background: var(--clr-navy);
    border-color: var(--clr-navy);
}
.woocommerce-product-gallery__trigger:hover::after {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="11" y1="8" x2="11" y2="14"></line><line x1="8" y1="11" x2="14" y2="11"></line></svg>') no-repeat center center;
}

/* Thumbnail wrapper & custom arrows */
.thumbs-carousel-wrapper {
    position: relative;
    margin-top: 16px;
}
.thumbs-carousel-wrapper .flex-control-thumbs {
    margin: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px; /* for custom shadow if any */
}
.thumbs-carousel-wrapper .flex-control-thumbs::-webkit-scrollbar {
    display: none;
}
.thumbs-carousel-wrapper .flex-control-thumbs li {
    flex: 0 0 calc(25% - 9px);
    width: calc(25% - 9px);
}
.thumb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    color: var(--clr-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: var(--ease);
}
.thumb-arrow:hover {
    background: var(--clr-navy);
    color: #fff;
    border-color: var(--clr-navy);
}
.thumb-arrow.thumb-prev {
    left: -16px;
}
.thumb-arrow.thumb-next {
    right: -16px;
}
.thumb-arrow svg {
    width: 16px;
    height: 16px;
}

.flex-control-thumbs img:hover {
    opacity: 0.8;
}

/* 
================================================================
   SEARCH SUGGESTIONS (AJAX LIVE SEARCH)
================================================================ */
.search-popup-content {
    position: relative;
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius-block);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    margin-top: 10px;
}
.search-suggestions.active {
    display: block;
}
.search-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--clr-border);
    text-decoration: none;
    color: var(--clr-navy);
    transition: background 0.2s;
}
.search-suggestions .suggestion-item:last-child {
    border-bottom: none;
}
.search-suggestions .suggestion-item:hover {
    background: #f8f9fa;
}
.search-suggestions .suggestion-img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 16px;
    background: #f4f4f4;
}
.search-suggestions .suggestion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-suggestions .suggestion-info h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-navy);
}
.search-suggestions .suggestion-info .price {
    font-size: 0.9rem;
    color: var(--clr-green);
    font-weight: 700;
}
.search-suggestions .searching,
.search-suggestions .no-results {
    padding: 24px;
    text-align: center;
    color: var(--clr-text);
    font-size: 1rem;
}

/* Fix for underlined prices (WooCommerce <ins> tag default style & link styles) */
.woocommerce ul.products li.product a,
.woocommerce ul.products li.product a:hover,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins span,
.woocommerce ul.products li.product .price ins bdi,
.woocommerce div.product p.price ins,
.price ins {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.flex-control-thumbs img.flex-active {
    opacity: 1;
    border-color: var(--clr-green);
}

/* ================================================================
   HIDE SHOP NOW ON MOBILE
   ================================================================ */
@media (max-width: 1024px) {
    .header-actions .btn-solid-green {
        display: none !important;
    }
}

/* ================================================================
   MOBILE FIX: PREVENT PRODUCT IMAGE FROM STICKING OVER CONTENT
   ================================================================ */
@media (max-width: 1024px) {
    .purexo-single-images {
        position: static !important;
    }
}

/* ================================================================
   SEARCH POPUP
   ================================================================ */
.search-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.search-popup.open {
    visibility: visible;
    opacity: 1;
}

.search-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.search-popup-content {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-block);
    width: 90%;
    max-width: 600px;
    z-index: 1;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.search-popup.open .search-popup-content {
    transform: translateY(0);
}

.search-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-muted);
}

.search-popup-close:hover {
    color: var(--clr-navy);
}

.search-popup-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--clr-green);
    padding-bottom: 5px;
    margin-top: 10px;
}

.search-popup-form input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1.2rem;
    padding: 10px;
    outline: none;
}

.search-popup-form button {
    background: none;
    border: none;
    color: var(--clr-green);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================================================
   BREADCRUMBS
   ================================================================ */
.woocommerce-breadcrumb {
    font-size: 0.85rem;
    color: var(--clr-muted);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--clr-border);
}

.woocommerce-breadcrumb a {
    color: var(--clr-navy);
    text-decoration: none;
    font-weight: 600;
}

.woocommerce-breadcrumb a:hover {
    color: var(--clr-green);
}

/* ================================================================
   FIX LISTS IN DESCRIPTION (Bullets and Numbering)
   ================================================================ */
.accordion-content ul,
.woocommerce-product-details__short-description ul,
.woocommerce-Tabs-panel ul {
    list-style-type: disc !important;
    padding-left: 20px !important;
    margin-bottom: 16px !important;
}

.accordion-content ol,
.woocommerce-product-details__short-description ol,
.woocommerce-Tabs-panel ol {
    list-style-type: decimal !important;
    padding-left: 20px !important;
    margin-bottom: 16px !important;
}

.accordion-content li,
.woocommerce-product-details__short-description li,
.woocommerce-Tabs-panel li {
    margin-bottom: 8px !important;
    display: list-item !important;
    /* Forces list items to show bullets */
}

/* ================================================================
   REVIEWS FORM SIZE & CENTERING
   ================================================================ */
#review_form_wrapper {
    max-width: 600px;
    margin: 40px auto 0;
}

#review_form_wrapper form {
    text-align: left;
}

#review_form_wrapper .comment-reply-title {
    text-align: center;
}