/* =============================================
   HedgeLists — Category Browse Pages
   ============================================= */

.hl-browse-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ── Breadcrumb ── */
.hl-browse-breadcrumb {
    font-size: 13px;
    color: var(--hl-text-muted);
    margin-bottom: 32px;
}
.hl-browse-breadcrumb a {
    color: var(--hl-text-muted);
    text-decoration: none;
}
.hl-browse-breadcrumb a:hover {
    color: var(--hl-accent);
}
.hl-browse-breadcrumb-sep {
    margin: 0 6px;
    color: var(--hl-text-light);
}

/* ── Header ── */
.hl-browse-header {
    text-align: center;
    margin-bottom: 40px;
}
.hl-browse-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--hl-black);
    margin: 0 0 12px;
}
.hl-browse-subtitle {
    font-size: 15px;
    color: var(--hl-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── Product Grid ── */
.hl-browse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

/* ── Product Card ── */
.hl-browse-card {
    background: #fff;
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius-lg);
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hl-browse-card:hover {
    border-color: var(--hl-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

/* Icon */
.hl-browse-card-icon {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
}
.hl-browse-card-icon--strategy {
    font-size: 14px;
    font-weight: 700;
    color: var(--hl-accent);
    background: rgba(46, 163, 242, 0.08);
    border-radius: 6px;
    padding: 6px 10px;
    letter-spacing: 0.5px;
}

/* Image */
.hl-browse-card-image {
    margin-bottom: 8px;
}
.hl-browse-card-image img {
    width: 80px;
    height: auto;
    border-radius: 4px;
}

/* Title */
.hl-browse-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--hl-black);
    margin: 0 0 6px;
    line-height: 1.3;
}

/* Count */
.hl-browse-card-count {
    font-size: 13px;
    color: var(--hl-text-muted);
    margin-bottom: 8px;
}

/* Price */
.hl-browse-card-price {
    margin-bottom: 4px;
}
.hl-browse-card-regular {
    font-size: 13px;
    color: var(--hl-text-light);
    text-decoration: line-through;
    margin-right: 6px;
}
.hl-browse-card-sale {
    font-size: 18px;
    font-weight: 700;
    color: var(--hl-black);
}

/* CTA */
.hl-browse-card-cta {
    font-size: 13px;
    color: var(--hl-accent);
    font-weight: 600;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.15s;
}
.hl-browse-card:hover .hl-browse-card-cta {
    opacity: 1;
}

/* ── Bottom SEO ── */
.hl-browse-seo {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 14px;
    color: var(--hl-text);
    line-height: 1.7;
    text-align: center;
}

/* ── CTA Box ── */
.hl-browse-cta {
    text-align: center;
    padding: 32px;
    background: var(--hl-bg-subtle);
    border-radius: var(--hl-radius-xl);
}
.hl-browse-cta p {
    font-size: 14px;
    color: var(--hl-text-muted);
    margin: 0 0 12px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hl-browse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .hl-browse-grid {
        grid-template-columns: 1fr;
    }
    .hl-browse-header h1 {
        font-size: 24px;
    }
    .hl-browse-container {
        padding: 24px 16px 40px;
    }
}
