/* --- THEME VARIABLES: Red & Yellow Palette --- */
:root {
    --brand-red: #d32f2f;
    --brand-red-light: #ffebEE;
    --brand-yellow: #ffca28;
    --brand-yellow-hover: #ffb300;
    --brand-dark: #212529;
}

/* --- SIDEBAR STYLING --- */
.category-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.category-header {
    background: linear-gradient(135deg, var(--brand-red), #b71c1c);
    color: #fff;
    padding: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.category-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f8f9fa;
    color: #555;
    display: block;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 0.95rem;
}

.category-item:hover {
    background-color: var(--brand-red-light);
    color: var(--brand-red);
    padding-left: 25px;
    font-weight: 500;
}

.category-item i.float-end {
    transition: transform 0.2s;
}

.category-item:hover i.float-end {
    transform: translateX(3px);
}

/* --- HERO SECTION --- */
.hero-banner {
    background: linear-gradient(45deg, #f3f3f3, #fff);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--brand-yellow);
    border-radius: 50%;
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.btn-theme-cta {
    background-color: var(--brand-yellow);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-theme-cta:hover {
    background-color: var(--brand-yellow-hover);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 202, 40, 0.4);
}

/* --- PRODUCT CARDS --- */
.product-card {
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

    transform: translateY(-5px);
    border-color: var(--brand-yellow);
}

.product-img-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fff;
    position: relative;
}

.product-img-container img {
    max-height: 100%;
    max-width: 100%;
    transition: transform 0.3s;
}

.product-card:hover .product-img-container img {
    transform: scale(1.05);
}

.price-tag {
    color: var(--brand-red);
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-add-cart {
    border: 1px solid var(--brand-red);
    color: var(--brand-red);
    background: transparent;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-add-cart:hover {
    background: var(--brand-red);
    color: #fff;
}

/* --- SECTION TITLES --- */
.section-title {
    color: var(--brand-dark);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--brand-yellow);
    margin-top: 5px;
    border-radius: 2px;
}