/* ==========================================================================
   HOME PAGE - HERO BANNER
   ========================================================================== */

.hero-section {
    padding: 20px 0;
}

.hero-banner {
    background: var(--hero-gradient);
    border-radius: var(--radius-lg);
    padding: 40px 60px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 50%;
}

.hero-content .sub-title {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.1;
    margin: 10px 0 5px 0;
    font-weight: 800;
}

.hero-content h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #f1f5f9;
}

.hero-content .desc {
    font-size: 12px;
    color: #cbd5e1;
    margin-bottom: 25px;
    max-width: 320px;
}

.shop-now-btn {
    background-color: #ffffff;
    color: #a80077;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.shop-now-btn:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.discount-tag {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #ffffff;
    color: #a80077;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    box-shadow: var(--shadow-md);
}

.discount-tag small {
    font-size: 8px;
    font-weight: 500;
    display: block;
    color: var(--text-muted);
}

/* ==========================================================================
   HOME PAGE - BROWSE BY CATEGORY
   ========================================================================== */

.categories-section {
    padding: 35px 0;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.cat-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-main);
    transition: var(--transition);
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.cat-img img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.btn-outline {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    display: inline-block;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

/* ==========================================================================
   HOME PAGE - PRODUCTS SECTIONS
   ========================================================================== */

.products-section {
    padding: 30px 0;
}

.border-top {
    border-top: 1px solid var(--border-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.view-all {
    font-size: 13px;
    color: var(--primary-blue);
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness for Home */
@media (max-width: 768px) {
    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}