/*
Theme Name:   storefront Child
Template:     storefront
Version:      1.0.0
Description:  Child theme for storefront
Author:       ALM
*/

@import url("../storefront/style.css"); /* Optional for old themes */


.site-header {
  background-color: #7ed957 !important;
}



/* Hide default Storefront footer credit */
.site-info {
  display: none;
}

/* Custom footer credit block */
.custom-footer-credit {
  color: #ffffff;
  background-color: #7ed957; /* Light green */
  padding: 15px;
  font-size: 14px;
  text-align: center;
}

/* Entire footer background and text color */
.site-footer,
.site-footer .col-full {
  background-color: #7ed957 !important;
  color: #ffffff;
}






/* Hide site footer credit */
.site-info {
	display: none;
}

/* Logo styling */
.site-branding .custom-logo-link img {
	max-width: 110px !important;
	height: auto !important;
}

.site-logo img,
.custom-logo {
	border-radius: 60px;
	width: 100%;
	height: auto;
}


/* Safe global image styling */
img {
	border-radius: 30px;
	max-width: 100%;
	height: auto;
	border: 1px solid lightgray;
	object-fit: cover;
	display: block;
}

/* Base font size */
body, button, input, select, textarea {
	font-size: 20px;
}

/* Rank Math FAQ image thumbnails */
.wp-block-rank-math-faq-block img,
.rank-math-question img,
.rank-math-answer img {
	width: 100px !important;
	max-width: 100px !important;
	height: auto;
	display: inline-block;
	border-radius: 6px;
	margin-right: 10px;
	vertical-align: middle;
	object-fit: cover;
}


/* Aseel Related Products Grid */
.aseel-related-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aseel-related-products li.product {
    margin: 0;
    box-sizing: border-box;
}

.aseel-related-products li.product img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    border: 1px solid lightgray;
}

/* Mobile: 2x2 layout */
@media (max-width: 768px) {
    .aseel-related-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

