/* assets/css/pages/woocommerce-hub.css */

:root {
    --woo-primary: #9b5c8f;
    /* Official Woo Purple */
    --woo-secondary: #7f54b3;
    /* Deep Purple */
    --woo-dark: #2d3748;
    /* Dark Slate */
    --woo-bg: #f3f4f6;
    --woo-accent: #e0b0ff;
    /* Light Purple Accent */
}

/* HERO SECTION - Commerce Vibe */
.woo-hero {
    background: url('/assets/img/bg/inner-hero-bg.webp') no-repeat center center/cover;
    position: relative;
    padding: 150px 0 110px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.woo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Woo Purple Gradient */
    background: linear-gradient(135deg, rgba(127, 84, 179, 0.95) 0%, rgba(45, 55, 72, 0.9) 100%);
    z-index: 1;
}

.woo-hero-content {
    position: relative;
    z-index: 2;
}

.woo-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.woo-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
    color: #e9d8fd;
}

.woo-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(5px);
}

.woo-badge i {
    margin-right: 8px;
    color: #d6bcfa;
}

/* SERVICES GRID */
.woo-grid-sec {
    padding: 90px 0;
    background-color: var(--woo-bg);
}

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

.woo-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    /* Horizontal Layout for variety */
    align-items: center;
    gap: 25px;
    /* Clean Shadow */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.woo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--woo-primary);
}

.woo-icon-box {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3e8ff;
    /* Very light purple */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--woo-primary);
    transition: all 0.3s ease;
}

.woo-card:hover .woo-icon-box {
    background: var(--woo-primary);
    color: #fff;
    transform: scale(1.1);
}

.woo-content {
    flex-grow: 1;
}

.woo-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--woo-dark);
    margin-bottom: 8px;
}

.woo-content p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.5;
}

.woo-arrow {
    font-size: 1.2rem;
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.woo-card:hover .woo-arrow {
    color: var(--woo-primary);
    transform: translateX(5px);
}

/* CONTENT & LISTS */
.woo-check-list li {
    margin-bottom: 12px;
    color: var(--woo-dark);
    display: flex;
    align-items: center;
    font-weight: 500;
}

.woo-check-list li i {
    color: var(--woo-primary);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .woo-grid {
        grid-template-columns: 1fr;
    }

    .woo-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .woo-hero h1 {
        font-size: 2.5rem;
    }

    .woo-arrow {
        display: none;
    }

    /* Hide arrow on mobile card stack */
}