
/* ===========================
   GLOBAL STYLES
=========================== */
body {
    font-family: 'Inter', 'Noto Sans', sans-serif;
    background-color: #FAFAFA;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

/* ===========================
   HEADER
=========================== */
.sh-header-main {
    background-color: #FFFFFF;
    color: #000000;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
    padding: 10px 16px;
}

.sh-header-location-icon,
.sh-header-arrow-icon {
    fill: #000000 !important;
}

.sh-header-account-icon,
.sh-header-search-icon,
.sh-header-cart-icon {
    stroke: #000000 !important;
    fill: none !important;
}

.sh-header-cart-badge {
    background-color: #29A56C;
    color: #FFFFFF;
    font-weight: bold;
}

/* ===========================
   FOOTER
=========================== */
.sh-footer-main {
    background-color: #0E4B35; /* deep green for Indian vibe */
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
}

.sh-footer-icon {
    color: #FFFFFF !important;
    font-size: 18px;
    margin: 0 8px;
}

/* ===========================
   PRODUCT CARDS
=========================== */
.sh-product-card {
    border: 1px solid #E5E5E5;
    border-radius: 10px;    
    background-color: #FFFFFF;
    padding: 12px;
    transition: all 0.2s ease-in-out;
}
.sh-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.sh-product-card-price {
    color: #29A56C;
    font-weight: 600;
    font-size: 16px;
}
.sh-product-card-mrp {
    color: #888;
    text-decoration: line-through;
}
.sh-product-card-name {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
}
.sh-product-card-discount-tag,
.sh-product-discount-tag {
    background-color: #29A56C;
    color: #FFFFFF;
    font-size: 12px;
    padding: 2px 8px;
    font-weight: 500;
    border-radius: 6px;
    display: inline-block;
}

/* ===========================
   BUTTONS
=========================== */
.sh-solid-button,
.sh-outlined-button,
.sh-product-buy-now-button {
    display: block;
    width: 100%;          /* full width (end-to-end) */
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.sh-solid-button,
.sh-product-buy-now-button {
    background-color: #29A56C;
    color: #FFFFFF;
    border: none;
}
.sh-solid-button:hover,
.sh-product-buy-now-button:hover {
    background-color: #218a59;
}

.sh-outlined-button {
    background: #FFFFFF;
    border: 2px solid #29A56C;
    color: #29A56C;
}
.sh-outlined-button:hover {
    background: #29A56C;
    color: #FFFFFF;
}

/* ===========================
   BOTTOM NAVIGATION
=========================== */
.sh-bottom-nav-main {
    background-color: #29A56C;
    padding: 10px 0;
}
.sh-bottom-nav-selected {
    stroke: #FFFFFF !important;
    color: #FFFFFF !important;
    font-weight: 600;
}
.sh-bottom-nav-unselected {
    stroke: #D9D9D9 !important;
    color: #D9D9D9 !important;
}
.sh-bottom-nav-cart-badge {
    background-color: #FFFFFF !important;
    color: #29A56C !important;
    font-weight: bold;
}

/* ===========================
   CATEGORY CARDS
=========================== */
.sh-category-card {
    margin: 0 10px 12px;
    padding: 12px;
    background: #FFFFFF;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.sh-categories-container {
    background-color: #FFFFFF;
    padding: 10px;
}
