/* ================================================================
   PRODUCTS PAGE - ULTRA CREATIVE PREMIUM DESIGN
   Matching 20 Microns Theme with Dynamic Filters
   ================================================================ */

/* ===== PRODUCTS HERO SECTION - COMPACT ORBIT DESIGN ===== */
.products-hero-section {
    position: relative;
    height: 90vh;
    min-height: 480px;
    max-height: 650px;
    display: flex;
    align-items: center;
    padding: 90px 0 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f0ed 50%, #f0f5f3 100%);
}

/* Hero Background Effects */
.ph-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.ph-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(127, 166, 155, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(127, 166, 155, 0.08) 0%, transparent 50%);
}

.ph-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(127, 166, 155, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 166, 155, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.ph-glow-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ph-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.ph-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(127, 166, 155, 0.25);
    top: -150px;
    right: 10%;
    animation: orbFloat 12s ease-in-out infinite;
}

.ph-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(92, 110, 106, 0.2);
    bottom: -100px;
    left: 5%;
    animation: orbFloat 15s ease-in-out infinite 3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

/* Split Layout */
.ph-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Left Content Styles */
.ph-content-left {
    padding-right: 20px;
}

/* Breadcrumb */
.ph-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.ph-breadcrumb a {
    color: #5C6E6A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.ph-breadcrumb a:hover {
    color: #7FA69B;
}

.ph-breadcrumb .breadcrumb-separator {
    color: #A8B5B1;
    font-size: 0.65rem;
}

.ph-breadcrumb .current {
    color: #7FA69B;
    font-weight: 600;
}

/* Badge */
.ph-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(127, 166, 155, 0.12), rgba(127, 166, 155, 0.05));
    border: 1px solid rgba(127, 166, 155, 0.25);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.ph-badge .badge-icon {
    color: #7FA69B;
    font-size: 0.95rem;
}

.ph-badge .badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5C6E6A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ph-badge .badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 166, 155, 0.3), transparent);
    animation: badgeGlow 4s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Title */
.ph-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #1a2a28;
}

.ph-title .title-line {
    display: block;
}

.ph-title .title-highlight {
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.ph-title .title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #7FA69B, #5C6E6A);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s ease-out forwards 0.5s;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

/* Subtitle */
.ph-subtitle {
    font-size: 1.05rem;
    color: #5C6E6A;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

/* Search Bar */
.ph-search-bar {
    max-width: 450px;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid rgba(127, 166, 155, 0.2);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.search-input-wrap:focus-within {
    border-color: #7FA69B;
    box-shadow: 0 10px 40px rgba(127, 166, 155, 0.15);
}

.search-input-wrap .search-icon {
    color: #A8B5B1;
    font-size: 1rem;
    margin-right: 12px;
}

.search-input-wrap input {
    flex: 1;
    border: none;
    background: none;
    font-size: 0.95rem;
    color: #1a2a28;
    outline: none;
    font-family: inherit;
    min-width: 0;
}

.search-input-wrap input::placeholder {
    color: #A8B5B1;
}

.search-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(127, 166, 155, 0.4);
}

/* Search Suggestions */
.search-suggestions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.suggestion-tag {
    background: rgba(127, 166, 155, 0.08);
    border: 1px solid rgba(127, 166, 155, 0.2);
    color: #5C6E6A;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #7FA69B;
    color: white;
    border-color: #7FA69B;
}

/* ================================================================
   ORBIT SYSTEM - RIGHT SIDE
   ================================================================ */
.ph-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ph-orbit-system {
    position: relative;
    width: 420px;
    height: 420px;
}

/* Center Core */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    z-index: 10;
}

.center-icon-wrap {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 40px rgba(127, 166, 155, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
}

.center-icon-wrap i {
    font-size: 2rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.center-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(127, 166, 155, 0.4);
    border-radius: 50%;
    animation: pulseExpand 2s ease-out infinite;
}

.center-pulse.pulse-2 {
    animation-delay: 1s;
}

@keyframes pulseExpand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
}

.orbit-ring .orbit-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(127, 166, 155, 0.25);
    border-radius: 50%;
}

/* Ring 1 - Products (Smallest) */
.orbit-ring.ring-1 {
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%);
    animation: orbitSpin1 20s linear infinite;
}

/* Ring 2 - Industries (Medium) */
.orbit-ring.ring-2 {
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    animation: orbitSpin2 30s linear infinite reverse;
}

/* Ring 3 - Countries (Largest) */
.orbit-ring.ring-3 {
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    animation: orbitSpin3 40s linear infinite;
}

@keyframes orbitSpin1 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitSpin2 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitSpin3 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbit Stats */
.orbit-stat {
    position: absolute;
    width: 85px;
    height: 85px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(127, 166, 155, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.orbit-stat:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 40px rgba(127, 166, 155, 0.25),
        0 0 0 4px rgba(127, 166, 155, 0.3);
}

.orbit-stat-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Counter-rotate to keep stats upright */
.ring-1 .orbit-stat {
    animation: counterSpin1 20s linear infinite;
}

.ring-2 .orbit-stat {
    animation: counterSpin2 30s linear infinite reverse;
}

.ring-3 .orbit-stat {
    animation: counterSpin3 40s linear infinite;
}

@keyframes counterSpin1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes counterSpin2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes counterSpin3 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Stat Positioning */
.stat-products {
    top: -42px;
    left: 50%;
    margin-left: -42px;
}

.stat-industries {
    top: 50%;
    right: -42px;
    margin-top: -42px;
}

.stat-countries {
    bottom: -42px;
    left: 50%;
    margin-left: -42px;
}

.orbit-stat-inner i {
    font-size: 1.1rem;
    color: #7FA69B;
    margin-bottom: 4px;
}

.orbit-stat-inner .stat-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a28;
    line-height: 1;
}

.orbit-stat-inner .stat-lbl {
    font-size: 0.6rem;
    color: #5C6E6A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Floating Particles */
.orbit-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.o-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    border-radius: 50%;
    opacity: 0.5;
}

.o-particle:nth-child(1) { top: 15%; left: 20%; animation: particleDrift 8s ease-in-out infinite; }
.o-particle:nth-child(2) { top: 25%; right: 15%; animation: particleDrift 10s ease-in-out infinite 1s; }
.o-particle:nth-child(3) { bottom: 30%; left: 10%; animation: particleDrift 9s ease-in-out infinite 2s; }
.o-particle:nth-child(4) { bottom: 20%; right: 25%; animation: particleDrift 11s ease-in-out infinite 3s; }
.o-particle:nth-child(5) { top: 50%; left: 5%; animation: particleDrift 7s ease-in-out infinite 1.5s; }
.o-particle:nth-child(6) { top: 40%; right: 5%; animation: particleDrift 12s ease-in-out infinite 2.5s; }

@keyframes particleDrift {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    50% { transform: translate(15px, -15px); opacity: 0.7; }
}

/* Decorative Hexagons */
.orbit-hex {
    position: absolute;
    background: linear-gradient(135deg, rgba(127, 166, 155, 0.12), rgba(127, 166, 155, 0.05));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(127, 166, 155, 0.2);
}

.orbit-hex.hex-1 {
    width: 35px;
    height: 40px;
    top: 5%;
    right: 10%;
    animation: hexFloat 6s ease-in-out infinite;
}

.orbit-hex.hex-2 {
    width: 25px;
    height: 29px;
    bottom: 15%;
    left: 5%;
    animation: hexFloat 8s ease-in-out infinite 2s;
}

.orbit-hex.hex-3 {
    width: 30px;
    height: 35px;
    top: 60%;
    right: 2%;
    animation: hexFloat 7s ease-in-out infinite 1s;
}

@keyframes hexFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-10px) rotate(10deg); opacity: 1; }
}

/* Scroll Indicator */
.ph-scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #5C6E6A;
    font-size: 0.7rem;
    z-index: 5;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(127, 166, 155, 0.35);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: #7FA69B;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0.3; }
}

/* ================================================================
   HERO RESPONSIVE STYLES
   ================================================================ */
@media (max-width: 1200px) {
    .ph-orbit-system {
        width: 380px;
        height: 380px;
    }
    
    .orbit-ring.ring-3 {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 992px) {
    .products-hero-section {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 90px 0 40px;
    }
    
    .ph-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .ph-content-left {
        padding-right: 0;
        order: 1;
    }
    
    .ph-content-right {
        order: 2;
    }
    
    .ph-breadcrumb {
        justify-content: center;
    }
    
    .ph-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ph-search-bar {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .search-suggestions {
        justify-content: center;
    }
    
    .ph-orbit-system {
        width: 280px;
        height: 280px;
    }
    
    .orbit-center {
        width: 60px;
        height: 60px;
    }
    
    .center-icon-wrap i {
        font-size: 1.4rem;
    }
    
    .orbit-ring.ring-1 {
        width: 140px;
        height: 140px;
    }
    
    .orbit-ring.ring-2 {
        width: 210px;
        height: 210px;
    }
    
    .orbit-ring.ring-3 {
        width: 280px;
        height: 280px;
    }
    
    .orbit-stat {
        width: 60px;
        height: 60px;
    }
    
    .stat-products {
        top: -30px;
        margin-left: -30px;
    }
    
    .stat-industries {
        right: -35px;
        margin-top: -35px;
    }
    
    .stat-countries {
        bottom: -35px;
        margin-left: -35px;
    }
    
    .orbit-stat-inner i {
        font-size: 0.95rem;
    }
    
    .orbit-stat-inner .stat-num {
        font-size: 0.95rem;
    }
    
    .orbit-stat-inner .stat-lbl {
        font-size: 0.55rem;
    }
}

@media (max-width: 768px) {
    .products-hero-section {
        padding: 90px 0 50px;
    }
    
    .ph-title {
        font-size: 1.8rem;
    }
    
    .ph-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .ph-badge {
        padding: 8px 18px;
    }
    
    .ph-badge .badge-text {
        font-size: 0.7rem;
    }
    
    .ph-orbit-system {
        width: 280px;
        height: 280px;
    }
    
    .orbit-center {
        width: 60px;
        height: 60px;
    }
    
    .center-icon-wrap i {
        font-size: 1.3rem;
    }
    
    .orbit-ring.ring-1 {
        width: 140px;
        height: 140px;
    }
    
    .orbit-ring.ring-2 {
        width: 200px;
        height: 200px;
    }
    
    .orbit-ring.ring-3 {
        width: 265px;
        height: 265px;
    }
    
    .orbit-stat {
        width: 58px;
        height: 58px;
    }
    
    .stat-products {
        top: -29px;
        margin-left: -29px;
    }
    
    .stat-industries {
        right: -29px;
        margin-top: -29px;
    }
    
    .stat-countries {
        bottom: -29px;
        margin-left: -29px;
    }
    
    .orbit-stat-inner i {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .orbit-stat-inner .stat-num {
        font-size: 0.8rem;
    }
    
    .orbit-stat-inner .stat-lbl {
        font-size: 0.5rem;
    }
    
    .search-input-wrap {
        padding: 5px 5px 5px 15px;
    }
    
    .search-btn {
        width: 38px;
        height: 38px;
    }
    
    .suggestion-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .ph-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-hero-section {
        padding: 85px 0 40px;
    }
    
    .ph-title {
        font-size: 1.5rem;
    }
    
    .ph-subtitle {
        font-size: 0.9rem;
    }
    
    .ph-orbit-system {
        width: 240px;
        height: 240px;
    }
    
    .orbit-center {
        width: 50px;
        height: 50px;
    }
    
    .center-icon-wrap i {
        font-size: 1.1rem;
    }
    
    .orbit-ring.ring-1 {
        width: 115px;
        height: 115px;
    }
    
    .orbit-ring.ring-2 {
        width: 170px;
        height: 170px;
    }
    
    .orbit-ring.ring-3 {
        width: 225px;
        height: 225px;
    }
    
    .orbit-stat {
        width: 50px;
        height: 50px;
    }
    
    .stat-products {
        top: -25px;
        margin-left: -25px;
    }
    
    .stat-industries {
        right: -25px;
        margin-top: -25px;
    }
    
    .stat-countries {
        bottom: -25px;
        margin-left: -25px;
    }
    
    .orbit-stat-inner i {
        font-size: 0.7rem;
        margin-bottom: 1px;
    }
    
    .orbit-stat-inner .stat-num {
        font-size: 0.7rem;
    }
    
    .orbit-stat-inner .stat-lbl {
        font-size: 0.45rem;
    }
    
    .orbit-hex {
        display: none;
    }
    
    .o-particle {
        width: 5px;
        height: 5px;
    }
}

/* ================================================================
   PRODUCTS LISTING SECTION - ULTRA CREATIVE PREMIUM REDESIGN
   World-Class Filter UI with Creative Product Cards
   ================================================================ */

.products-listing-section {
    padding: 30px 0 60px;
    background: linear-gradient(180deg, #f0f5f3 0%, #f8faf9 20%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

/* Subtle Background Pattern */
.products-listing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: 
        radial-gradient(ellipse 50% 30% at 15% 15%, rgba(127, 166, 155, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 25% at 85% 35%, rgba(92, 110, 106, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ================================================================
   WORLD-CLASS CREATIVE SIDEBAR - NEUMORPHIC PREMIUM DESIGN
   ================================================================ */
.products-sidebar {
    background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(127, 166, 155, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: sticky;
    top: 85px;
    max-height: calc(100vh - 100px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(127, 166, 155, 0.08);
}

/* Sidebar Scroll Area */
.sidebar-scroll-area {
    overflow-y: auto;
    flex: 1;
    padding: 0;
}

.sidebar-scroll-area::-webkit-scrollbar {
    width: 4px;
}

.sidebar-scroll-area::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-scroll-area::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7FA69B, #5C6E6A);
    border-radius: 4px;
}

/* ================================================================
   SIDEBAR TOP SECTION - HEADER + SEARCH + ACTIVE FILTERS
   ================================================================ */
.sidebar-top {
    padding: 16px;
    background: linear-gradient(135deg, #7FA69B 0%, #5C6E6A 100%);
    position: relative;
    overflow: hidden;
}

.sidebar-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Creative Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.filter-subtitle {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
}

/* Filter Icon Box with Pulse */
.filter-icon-box {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    position: relative;
}

.filter-icon-box .icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: iconPulse 2s ease-out infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.clear-filters-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    padding: 8px;
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(180deg);
}

.mobile-close-sidebar {
    display: none;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 8px;
    padding: 8px;
    color: white;
    cursor: pointer;
}

/* Filter Search Box */
.filter-search-box {
    position: relative;
    margin-bottom: 10px;
    z-index: 2;
}

.filter-search-box input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: none;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #1a2a28;
    background: rgba(255,255,255,0.95);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filter-search-box input:focus {
    outline: none;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.filter-search-box input::placeholder {
    color: #A8B5B1;
}

.filter-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #7FA69B;
    font-size: 0.8rem;
}

/* Active Filters Display */
.active-filters-wrap {
    display: none;
    position: relative;
    z-index: 2;
}

.active-filters-wrap.has-filters {
    display: block;
}

.active-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 6px;
}

.active-filters-header span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.active-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: white;
    color: #5C6E6A;
    border-radius: 9px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Active Filter Tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.active-filters:empty {
    display: none;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 500;
    animation: tagPopIn 0.3s ease-out;
}

@keyframes tagPopIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.active-filter-tag button {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 0.65rem;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.active-filter-tag button:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ================================================================
   QUICK FILTER SECTION - HORIZONTAL PILL BUTTONS
   ================================================================ */
.quick-filter-section {
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(127, 166, 155, 0.04) 0%, transparent 100%);
    border-bottom: 1px solid rgba(127, 166, 155, 0.06);
}

.quick-filter-grid {
    display: flex;
    gap: 8px;
}

.quick-filter-card {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    background: white;
    border: 1px solid rgba(127, 166, 155, 0.12);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-filter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-filter-card:hover {
    border-color: #7FA69B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(127, 166, 155, 0.15);
}

.quick-filter-card.active::before {
    opacity: 1;
}

.quick-filter-card.active {
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(127, 166, 155, 0.3);
}

.qf-icon {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: #7FA69B;
    transition: color 0.3s ease;
}

.quick-filter-card.active .qf-icon {
    color: white;
}

.qf-label {
    position: relative;
    z-index: 1;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1a2a28;
    transition: color 0.3s ease;
}

.quick-filter-card.active .qf-label {
    color: white;
}

.qf-count {
    position: relative;
    z-index: 1;
    font-size: 0.65rem;
    font-weight: 700;
    color: #7FA69B;
    background: rgba(127, 166, 155, 0.1);
    padding: 2px 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-filter-card.active .qf-count {
    color: #5C6E6A;
    background: white;
}

/* ================================================================
   FILTER GROUPS - SLEEK ACCORDION DESIGN
   ================================================================ */
.filter-groups-wrapper {
    padding: 0;
}

.filter-group {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(127, 166, 155, 0.06);
    position: relative;
}

.filter-group:last-of-type {
    border-bottom: none;
}

/* Filter Header - Clean Compact Design */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 14px;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.filter-header:hover {
    background: rgba(127, 166, 155, 0.04);
}

.filter-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.filter-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, rgba(127, 166, 155, 0.12), rgba(127, 166, 155, 0.05));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7FA69B;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.filter-header:hover .filter-icon {
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
}

.filter-header h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2a28;
    margin: 0;
    transition: color 0.3s ease;
}

/* Selected Count Badge */
.selected-count {
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    padding: 2px 6px;
    border-radius: 8px;
    display: none;
    animation: badgePop 0.3s ease;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.selected-count.show {
    display: inline-block;
}

.filter-header-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-header .toggle-icon {
    width: 22px;
    height: 22px;
    background: rgba(127, 166, 155, 0.08);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7FA69B;
    font-size: 0.6rem;
    transition: all 0.3s ease;
}

.filter-header:hover .toggle-icon {
    background: #7FA69B;
    color: white;
}

.filter-header.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

/* Filter Content - Compact */
.filter-content {
    padding: 4px 14px 10px;
    max-height: 200px;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.filter-content::-webkit-scrollbar {
    width: 3px;
}

.filter-content::-webkit-scrollbar-thumb {
    background: rgba(127, 166, 155, 0.3);
    border-radius: 3px;
}

.filter-content.collapsed {
    max-height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
}

/* ================================================================
   SLEEK MINIMAL FILTER CHECKBOXES
   ================================================================ */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    position: relative;
    margin: 1px 0;
    background: transparent;
}

.filter-checkbox:hover {
    background: rgba(127, 166, 155, 0.08);
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Sleek Checkmark Design */
.filter-checkbox .checkmark {
    width: 16px;
    height: 16px;
    background: white;
    border: 1.5px solid rgba(127, 166, 155, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.filter-checkbox .checkmark i {
    font-size: 0.55rem;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.filter-checkbox:hover .checkmark {
    border-color: #7FA69B;
}

.filter-checkbox input:checked + .checkmark {
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    border-color: transparent;
}

.filter-checkbox input:checked + .checkmark i {
    opacity: 1;
    transform: scale(1);
}

/* Filter Label */
.filter-checkbox .filter-label {
    flex: 1;
    font-size: 0.75rem;
    color: #5C6E6A;
    font-weight: 500;
    transition: color 0.2s ease;
}

.filter-checkbox:hover .filter-label,
.filter-checkbox input:checked ~ .filter-label {
    color: #1a2a28;
}

/* Filter Count Badge */
.filter-checkbox .filter-count {
    font-size: 0.65rem;
    color: #A8B5B1;
    font-weight: 600;
}

.filter-checkbox:hover .filter-count,
.filter-checkbox input:checked ~ .filter-count {
    color: #7FA69B;
}

/* ================================================================
   SIDEBAR CTA - MINIMAL COMPACT DESIGN
   ================================================================ */
.sidebar-cta {
    background: linear-gradient(135deg, #7FA69B 0%, #5C6E6A 100%);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    margin: 10px 14px 14px;
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.sidebar-cta .cta-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.sidebar-cta h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
    position: relative;
    z-index: 2;
}

.sidebar-cta p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.cta-btn-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #5C6E6A;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-btn-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Mobile Filter Toggle - Premium Design */
.mobile-filter-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 100;
    box-shadow: 
        0 10px 40px rgba(127, 166, 155, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.2);
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.mobile-filter-toggle:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 
        0 15px 50px rgba(127, 166, 155, 0.6),
        0 0 0 4px rgba(255, 255, 255, 0.3);
}

.filter-count-badge {
    background: white;
    color: #7FA69B;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile Close Sidebar Button */
.mobile-close-sidebar {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(127, 166, 155, 0.1);
    border-radius: 10px;
    color: #5C6E6A;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-close-sidebar:hover {
    background: #7FA69B;
    color: white;
}

/* ================================================================
   PRODUCTS MAIN CONTENT AREA
   ================================================================ */
.products-main {
    min-width: 0;
}

/* Compact Toolbar */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(127, 166, 155, 0.08);
}

.toolbar-left {
    display: flex;
    align-items: center;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.results-icon {
    color: #7FA69B;
    font-size: 0.8rem;
}

.toolbar-left .results-count {
    font-size: 0.8rem;
    color: #5C6E6A;
}

.toolbar-left .results-count strong {
    color: #7FA69B;
    font-weight: 700;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Compact View Toggle */
.view-toggle {
    display: flex;
    background: #f8faf9;
    border-radius: 8px;
    padding: 3px;
    border: 1px solid rgba(127, 166, 155, 0.1);
}

.view-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 6px;
    color: #A8B5B1;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.view-btn.active {
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
    box-shadow: 0 2px 8px rgba(127, 166, 155, 0.3);
}

.view-btn:hover:not(.active) {
    color: #7FA69B;
    background: rgba(127, 166, 155, 0.08);
}

/* Compact Sort Dropdown */
.sort-dropdown {
    position: relative;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid rgba(127, 166, 155, 0.12);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    color: #5C6E6A;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sort-btn:hover {
    border-color: #7FA69B;
    box-shadow: 0 3px 12px rgba(127, 166, 155, 0.12);
}

.sort-btn i:first-child {
    color: #7FA69B;
    font-size: 0.85rem;
}

.sort-btn i:last-child {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
    color: #7FA69B;
}

.sort-dropdown.open .sort-btn i:last-child {
    transform: rotate(180deg);
}

.sort-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(127, 166, 155, 0.1);
    padding: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    margin-top: 8px;
}

.sort-dropdown.open .sort-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-option {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: #5C6E6A;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sort-option:hover {
    background: linear-gradient(135deg, rgba(127, 166, 155, 0.1), rgba(127, 166, 155, 0.05));
    color: #7FA69B;
    padding-left: 24px;
}

.sort-option.active {
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
    font-weight: 600;
}

.sort-option.active:hover {
    padding-left: 18px;
}

/* ================================================================
   ULTRA CREATIVE PRODUCTS GRID - COMPACT
   ================================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.products-grid.list-view {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* ================================================================
   CREATIVE PRODUCT CARD - IMAGE SLIDES DOWN ON HOVER
   Info/Badges visible first, Image reveals from top on hover
   ================================================================ */
.product-card-premium {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.03),
        0 0 0 1px rgba(127, 166, 155, 0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    /* aspect-ratio: 1/1.12; */
}

.footer-wave-divider{
    background: #e8f0ed !important;
}

.product-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7FA69B, #5C6E6A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 20;
}

.product-card-premium:hover::before {
    transform: scaleX(1);
}

.product-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(127, 166, 155, 0.12),
        0 6px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(127, 166, 155, 0.12);
}

/* Product Card Link */
.product-card-link2 {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.product-info-box2{
    padding:1.5rem;
}

/* ================================================================
   PRODUCT INFO BOX - Always Visible Initially
   ================================================================ */
.product-info-box {
    position: absolute;
    inset: 0;
    padding: 14px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, white 0%, #fafcfb 100%);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card-premium:hover .product-info-box {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

/* Product Header - Category + Badge */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(127, 166, 155, 0.1), rgba(127, 166, 155, 0.04));
    border: 1px solid rgba(127, 166, 155, 0.12);
    border-radius: 16px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #7FA69B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-category i {
    font-size: 0.55rem;
}

/* Product Badges */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-badge.featured {
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.product-badge.new {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.product-badge.eco {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
}

.product-badge.premium {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

/* Product Title */
.product-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2a28;
    margin-bottom: 6px;
    line-height: 1.25;
}

/* Product Description */
.product-description {
    font-size: 0.72rem;
    color: #5C6E6A;
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Specs - Compact */
.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
    padding: 8px;
    background: linear-gradient(135deg, rgba(127, 166, 155, 0.05), rgba(127, 166, 155, 0.02));
    border-radius: 8px;
    border: 1px solid rgba(127, 166, 155, 0.05);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-item .spec-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, rgba(127, 166, 155, 0.12), rgba(127, 166, 155, 0.06));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-item .spec-icon i {
    font-size: 0.55rem;
    color: #7FA69B;
}

.spec-item .spec-text {
    display: flex;
    flex-direction: column;
}

.spec-item .spec-label {
    font-size: 0.55rem;
    color: #A8B5B1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.spec-item .spec-value {
    font-size: 0.6rem;
    font-weight: 700;
    color: #1a2a28;
}

/* Industry Tags - Compact */
.product-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 10px;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(127, 166, 155, 0.06);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.62rem;
    color: #5C6E6A;
    font-weight: 500;
}

.industry-tag i {
    color: #7FA69B;
    font-size: 0.55rem;
}

/* Product Footer */
.product-footer {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid rgba(127, 166, 155, 0.06);
}

.view-details {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #7FA69B;
    transition: all 0.3s ease;
}

.view-details i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.product-card-premium:hover .view-details i {
    transform: translateX(4px);
}

/* ================================================================
   PRODUCT IMAGE OVERLAY - Slides Down from Top on Hover
   ================================================================ */
.product-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(180deg, #f8faf9 0%, white 100%);
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover .product-image-overlay {
    transform: translateY(0);
}

.product-image-overlay img {
    flex: 1;
    width: 100%;
    object-fit: contain;
    object-position: center;
    padding: 30px;
    transition: transform 0.6s ease;
}

.product-card-premium:hover .product-image-overlay img {
    transform: scale(1.02);
}

/* Shine Effect on Image */
.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    z-index: 11;
}

.product-card-premium:hover .image-shine {
    animation: shineSlide 1s ease 0.2s;
}

@keyframes shineSlide {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* Hover Actions on Image */
.hover-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.3s ease 0.2s;
}

.product-card-premium:hover .hover-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    border-radius: 10px;
    color: #5C6E6A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
    transform: scale(1.1);
}

/* Image Title Overlay - Bottom */
.image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
    text-align: center;
}

.image-title h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a28;
    margin-bottom: 3px;
}

.image-title span {
    font-size: 0.72rem;
    color: #7FA69B;
    font-weight: 500;
}

/* ================================================================
   LIST VIEW STYLES
   ================================================================ */
.products-grid.list-view .product-card-premium {
    aspect-ratio: auto;
    min-height: auto;
}

.products-grid.list-view .product-info-box {
    padding: 16px;
}

.products-grid.list-view .product-title {
    font-size: 1rem;
}

.products-grid.list-view .product-description {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 10px;
}

/* ================================================================
   PAGINATION - COMPACT DESIGN
   ================================================================ */
.products-pagination {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 15px 40px rgba(127, 166, 155, 0.35),
        0 0 0 4px rgba(127, 166, 155, 0.1);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(127, 166, 155, 0.45),
        0 0 0 6px rgba(127, 166, 155, 0.15);
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    animation: loadingBounce 0.6s ease infinite;
}

@keyframes loadingBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.pagination-info {
    margin-top: 24px;
    font-size: 0.95rem;
    color: #5C6E6A;
}

.pagination-info strong {
    color: #7FA69B;
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.products-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f0ed 100%);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(rgba(127, 166, 155, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 166, 155, 0.2), transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.cta-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127, 166, 155, 0.15), transparent 70%);
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon-wrap {
    margin-bottom: 30px;
}

.cta-icon-sphere {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(127, 166, 155, 0.4);
    animation: ctaFloat 4s ease-in-out infinite;
}

.cta-icon-sphere i {
    font-size: 2.5rem;
    color: white;
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2a28;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.15rem;
    color: #5C6E6A;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7FA69B, #5C6E6A);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(127, 166, 155, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(127, 166, 155, 0.4);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #5C6E6A;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(127, 166, 155, 0.3);
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: #7FA69B;
    color: white;
    border-color: #7FA69B;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .products-layout {
        grid-template-columns: 260px 1fr;
        gap: 18px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .products-grid.list-view {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .products-hero-section {
        height: auto;
        min-height: 400px;
        padding: 80px 0 30px;
    }
    
    .products-listing-section {
        padding: 20px 0 60px;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 100vh;
        border-radius: 0;
        z-index: 1000;
        padding: 0;
        background: white;
    }
    
    .products-sidebar.open {
        display: flex;
    }
    
    .sidebar-top {
        padding-top: 60px;
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
    
    .mobile-close-sidebar {
        display: flex;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-hero-section {
        min-height: 350px;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: 10px;
        padding: 12px 14px;
        border-radius: 12px;
    }
    
    .toolbar-left {
        width: 100%;
        text-align: center;
    }
    
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-info-box {
        padding: 12px;
    }
    
    .product-header {
        margin-bottom: 6px;
    }
    
    .product-category {
        font-size: 0.55rem;
        padding: 3px 6px;
    }
    
    .product-badge {
        font-size: 0.52rem;
        padding: 2px 6px;
    }
    
    .product-title {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .product-description {
        font-size: 0.68rem;
        margin-bottom: 6px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .product-specs {
        padding: 6px;
        gap: 5px;
        margin-bottom: 6px;
    }
    
    .spec-item .spec-icon {
        width: 20px;
        height: 20px;
    }
    
    .spec-item .spec-icon i {
        font-size: 0.55rem;
    }
    
    .spec-item .spec-label {
        font-size: 0.52rem;
    }
    
    .spec-item .spec-value {
        font-size: 0.58rem;
    }
    
    .product-industries {
        gap: 4px;
        margin-bottom: 8px;
    }
    
    .industry-tag {
        font-size: 0.6rem;
        padding: 3px 7px;
    }
    
    .industry-tag i {
        font-size: 0.52rem;
    }
    
    .product-footer {
        padding-top: 8px;
    }
    
    .view-details {
        font-size: 0.7rem;
    }
    
    .product-image-overlay img {
        padding: 18px;
    }
    
    .hover-actions {
        top: 10px;
        right: 10px;
    }
    
    .action-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .image-title {
        padding: 14px;
    }
    
    .image-title h4 {
        font-size: 0.85rem;
    }
    
    .image-title span {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .products-listing-section {
        padding: 20px 0 60px;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-info-box {
        padding: 12px;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .product-description {
        font-size: 0.68rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .product-specs {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .load-more-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-premium {
    animation: fadeInUp 0.5s ease-out forwards;
}

.product-card-premium:nth-child(1) { animation-delay: 0.1s; }
.product-card-premium:nth-child(2) { animation-delay: 0.2s; }
.product-card-premium:nth-child(3) { animation-delay: 0.3s; }
.product-card-premium:nth-child(4) { animation-delay: 0.4s; }
.product-card-premium:nth-child(5) { animation-delay: 0.5s; }
.product-card-premium:nth-child(6) { animation-delay: 0.6s; }
.product-card-premium:nth-child(7) { animation-delay: 0.7s; }
.product-card-premium:nth-child(8) { animation-delay: 0.8s; }
.product-card-premium:nth-child(9) { animation-delay: 0.9s; }

/* No Product Found State */
.no-products-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 20px;
}

.no-products-found .empty-icon {
    width: 120px;
    height: 120px;
    background: rgba(127, 166, 155, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.no-products-found .empty-icon i {
    font-size: 3rem;
    color: #A8B5B1;
}

.no-products-found h3 {
    font-size: 1.5rem;
    color: #1a2a28;
    margin-bottom: 12px;
}

.no-products-found p {
    color: #5C6E6A;
    margin-bottom: 24px;
}

.no-products-found .reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #7FA69B;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.no-products-found .reset-btn:hover {
    background: #5C6E6A;
}