/* General footer container */
footer.store-footer {
    border-radius: 20px 20px 0 0; /* rounded corners */
    padding: 20px 15px;
    text-align: center;
    font-family: 'Almarai', sans-serif;
    color: #fff; /* make all footer text white */
}

/* Footer logo (centered and responsive) */
.store-footer .logo-footer {
    margin-bottom: 15px;
    text-align: center;
}
.store-footer .logo-footer img {
    max-height: 80px;
    width: auto;
}

/* Footer navigation links */
.store-footer .nav-footer ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.store-footer .nav-footer a {
    font-size: 14px;
    text-decoration: none;
    color: #fff; /* links also white */
    transition: opacity 0.3s ease;
}
.store-footer .nav-footer a:hover {
    opacity: 0.7;
}

/* Social media links */
.store-footer ul.social-links {
    margin: 15px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.store-footer ul.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff; /* social icons white */
    transition: all 0.3s ease;
}

/* Contact information */
.store-footer .contact-footer {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.6;
}
.store-footer .contact-footer a {
    text-decoration: none;
    font-weight: 500;
    color: #fff; /* contact links white */
    transition: opacity 0.3s ease;
}
.store-footer .contact-footer a:hover {
    opacity: 0.7;
}

/* Bottom copyright */
.store-footer .copyright {
    margin-top: 20px;
    font-size: 12px;
    opacity: 0.8;
    color: #fff; /* copyright text white */
}

/* Make all sub-category links black across the site */
ul.sub-categories a {
    color: #000 !important;   /* force black text */
    font-weight: 500;         /* optional: medium bold */
    text-decoration: none;    /* remove underline */
}

/* Hover effect for sub-categories */
ul.sub-categories a:hover {
    color: #333;              /* slightly lighter black */
    text-decoration: underline; /* optional hover style */
}

/* Global sub-category styling */
ul.sub-categories a,
.sub-categories li a {
    color: #000 !important;   /* make text black */
    font-weight: 500;         /* optional: medium bold */
    text-decoration: none;    /* cleaner look */
}

/* Hover effect for sub-categories */
ul.sub-categories a:hover,
.sub-categories li a:hover {
    color: #333;              /* dark gray hover */
    text-decoration: underline; /* optional */
}
/* Global rule: make all text black */
body, body * {
    color: #000 !important;
}