
/* ==========================================================================
   Sidebar Styles
   ========================================================================== */

.category-item {
    display: block;
    padding: var(--hb-spacing-xs) var(--hb-spacing-xl);
    border-bottom: 1px solid var(--hb-border-medium);
    cursor: pointer;
    transition: background-color var(--hb-transition-fast);
    text-decoration: none;
    color: inherit;
    font-size: var(--hb-font-size-lg);
}

.category-item:hover {
    background-color: var(--hb-bg-hover);
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Promotional Cards
   ========================================================================== */

.promo-card {
    border-radius: var(--hb-radius-lg);
    padding: var(--hb-spacing-xl);
}

.easy-trade-card {
    background: linear-gradient(135deg, var(--hb-accent-yellow-light), var(--hb-accent-yellow-pale));
    text-align: center;
}

.want-buy-card {
    background: linear-gradient(135deg, var(--hb-accent-orange), var(--hb-accent-red));
    color: var(--hb-text-light);
}

/* ==========================================================================
   Button Styles
   ========================================================================== */

.btn-yellow {
    background-color: var(--hb-accent-yellow);
    border: none;
    color: var(--hb-text-primary);
    font-weight: bold;
    padding: var(--hb-spacing-md) var(--hb-spacing-xxl);
    border-radius: var(--hb-radius-xl);
    transition: background-color var(--hb-transition-fast);
}

.btn-yellow:hover {
    background-color: var(--hb-accent-yellow-hover);
    border: none;
    color: var(--hb-text-dark);
}

/* ==========================================================================
   Illustration Styles
   ========================================================================== */

.people-illustration {
    width: var(--hb-illustration-width);
    height: var(--hb-illustration-height);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 80"><g fill="%23333"><circle cx="20" cy="25" r="8"/><rect x="15" y="35" width="10" height="20" rx="2"/><circle cx="40" cy="25" r="8"/><rect x="35" y="35" width="10" height="20" rx="2"/><circle cx="60" cy="25" r="8"/><rect x="55" y="35" width="10" height="20" rx="2"/><circle cx="80" cy="25" r="8"/><rect x="75" y="35" width="10" height="20" rx="2"/><circle cx="100" cy="25" r="8"/><rect x="95" y="35" width="10" height="20" rx="2"/></g></svg>') no-repeat center;
    background-size: contain;
    margin: 0 auto var(--hb-spacing-lg);
}

/* ==========================================================================
   Banner Styles
   ========================================================================== */

.madeby-home-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--hb-radius-lg);
    overflow: hidden;
}

/* ==========================================================================
   Value Cards Section
   ========================================================================== */

.value-card {
    position: relative;
    background: var(--hb-bg-white);
    border-radius: var(--hb-radius-sm);
    padding: var(--hb-spacing-md) var(--hb-spacing-xl);
    height: 100%;
    border: 1px solid var(--hb-border-medium);
    transition: all var(--hb-transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.value-card:hover {
    box-shadow: var(--hb-shadow-light);
    background: var(--hb-primary-color);
    color: var(--hb-text-light);
}

.value-card-body {
    flex-grow: 1;
}

.value-card .h5 {
    font-size: var(--hb-font-size-sm);
    font-weight: 600;
    margin-bottom: var(--hb-spacing-lg);
    line-height: 1.3;
    color: var(--hb-secondary-color);
    transition: color var(--hb-transition-fast);
}

.value-card:hover .h5 {
    color: var(--hb-text-light);
}

.value-card .service-name {
    font-size: var(--hb-font-size-xs);
    color: var(--hb-text-secondary);
    margin-bottom: var(--hb-spacing-xs);
    transition: color var(--hb-transition-fast);
}

.value-card:hover .service-name {
    color: var(--hb-text-light);
}

.learn-more-btn {
    color: var(--hb-primary-color);
    border: none;
    padding: 0;
    font-size: var(--hb-font-size-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--hb-spacing-sm);
    transition: color var(--hb-transition-fast);
}

.value-card:hover .learn-more-btn {
    color: var(--hb-text-light);
}

.membership-icon {
    position: absolute;
    top: var(--hb-spacing-lg);
    right: var(--hb-spacing-lg);
    font-size: var(--hb-font-size-xl);
    opacity: 0.3;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    .value-card {
        margin-bottom: var(--hb-spacing-xl);
    }
}