/**
 * HowTo Shop Theme
 * 
 * Shopee-inspired orange theme
 */

:root {
    /* Primary Colors - Shopee Orange */
    --theme-primary: #EE4D2D;
    --theme-primary-dark: #D73211;
    --theme-primary-light: #FFF5F3;
    --theme-accent: #FF6B4A;
    
    /* Override specific elements */
    --color-bg: #F5F5F5;
}

/* Hero with Shopee gradient */
.site-howto-shop .hero-section {
    background: linear-gradient(135deg, #EE4D2D 0%, #FF6B4A 100%);
}

/* Post card image background */
.site-howto-shop .post-card-image {
    background: linear-gradient(135deg, #FFE5E0 0%, #FFF0ED 100%);
}

/* Category card icon */
.site-howto-shop .category-icon {
    background: #FFF5F3;
}

.site-howto-shop .category-icon svg {
    color: #EE4D2D;
}

/* Key takeaways */
.site-howto-shop .key-takeaways {
    background: linear-gradient(135deg, #FFF5F3 0%, #FFF9F7 100%);
    border-left-color: #EE4D2D;
}

/* Article CTA */
.site-howto-shop .article-cta {
    background: linear-gradient(135deg, #FFF5F3 0%, #FFF0ED 100%);
}

/* Contact card gradient */
.site-howto-shop .contact-card {
    background: linear-gradient(135deg, #EE4D2D 0%, #FF6B4A 100%);
}

/* Logo icon */
.site-howto-shop .logo-icon {
    background: linear-gradient(135deg, #EE4D2D 0%, #FF6B4A 100%);
}
