.az-storefront {
padding-block: 32px 64px;
background: #ffffff;
}

.az-storefront-hero {
margin-bottom: 36px;
padding: 28px;
background: #ffffff;
border: 1px solid #e5e5e5;
border-radius: 18px;
box-shadow: 0 8px 30px rgba(17, 17, 17, 0.05);
}

.az-storefront-identity {
display: flex;
align-items: center;
gap: 20px;
}

.az-storefront-avatar {
display: flex;
flex: 0 0 88px;
align-items: center;
justify-content: center;
width: 88px;
height: 88px;
background: #ffd400;
border-radius: 50%;
color: #111111;
font-size: 2rem;
font-weight: 900;
}

.az-storefront-heading h1 {
margin: 4px 0 6px;
color: #111111;
font-size: clamp(1.7rem, 3vw, 2.4rem);
line-height: 1.35;
}

.az-storefront-eyebrow,
.az-storefront-meta {
margin: 0;
}

.az-storefront-eyebrow {
color: #6b6b6b;
font-size: 0.85rem;
font-weight: 700;
}

.az-storefront-meta {
color: #6b6b6b;
font-size: 0.9rem;
}

.az-storefront-section-head {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 18px;
}

.az-storefront-section-head h2 {
margin: 0;
color: #111111;
font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.az-storefront-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}

.az-storefront-card {
overflow: hidden;
background: #ffffff;
border: 1px solid #e5e5e5;
border-radius: 16px;
transition:
transform 160ms ease,
border-color 160ms ease,
box-shadow 160ms ease;
}

.az-storefront-card:hover {
transform: translateY(-3px);
border-color: #d7c100;
box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.az-storefront-card__media {
display: block;
overflow: hidden;
aspect-ratio: 1 / 1;
background: #f7f7f7;
}

.az-storefront-card__image {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}

.az-storefront-card__body {
padding: 16px;
}

.az-storefront-card__title {
margin: 0 0 10px;
font-size: 1rem;
line-height: 1.7;
}

.az-storefront-card__title a {
color: #111111;
text-decoration: none;
}

.az-storefront-card__stock {
margin: 0 0 14px;
color: #6b6b6b;
font-size: 0.82rem;
}

.az-storefront-card__footer {
display: flex;
flex-direction: column;
gap: 12px;
}

.az-storefront-card__price {
color: #111111;
font-size: 1rem;
font-weight: 800;
}

.az-storefront-card__action {
display: flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding-inline: 14px;
background: #ffd400;
border-radius: 10px;
color: #111111;
font-size: 0.88rem;
font-weight: 800;
text-decoration: none;
transition: background 160ms ease;
}

.az-storefront-card__action:hover {
background: #e6be00;
color: #111111;
}

.az-storefront-empty {
padding: 32px;
background: #f7f7f7;
border: 1px solid #e5e5e5;
border-radius: 16px;
text-align: center;
}

.az-storefront-empty p {
margin: 0;
color: #6b6b6b;
}

@media (max-width: 1100px) {
.az-storefront-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

@media (max-width: 760px) {
.az-storefront {
padding-block: 20px 40px;
}

.az-storefront-hero {
padding: 20px;
}

.az-storefront-avatar {
flex-basis: 68px;
width: 68px;
height: 68px;
font-size: 1.5rem;
}

.az-storefront-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
}
}

@media (max-width: 460px) {
.az-storefront-identity {
align-items: flex-start;
}

.az-storefront-grid {
grid-template-columns: 1fr;
}
}
