body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    background: #f4f6f9;
}

/* HEADER */
.retail-header {
    background: var(--brand);
    padding: 16px;
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 20px;
}
.retail-header{
background: var(--primary-color);
color:white;
}
/* BANNER */
.store-banner img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

/* WRAPPER */
.store-wrapper {
    padding: 20px;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(170px,1fr));
    gap: 18px;
}

/* CARD */
.product-card {
    background: white;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

/* PRODUCT IMAGE */
.product-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* PRODUCT NAME */
.product-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

/* PRICE */
.product-price {
    background: var(--brand);
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
}
.product-price{
color: var(--accent-color);
}

/* FOOTER */
.retail-footer {
    margin-top: 40px;
    background: #111;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}
.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.product-link {
    text-decoration: none;
    color: inherit;
}

.product-name {
    font-weight: 600;
    font-size: 15px;
    margin-top: 8px;
    margin-bottom: 6px;
    color: #111;
}

.product-price {
    color: #2563eb;
    font-weight: 600;
    font-size: 15px;
}
.store-info {
    margin-bottom: 20px;
}
.store-info h1{
margin-bottom:8px;
}
.store-description {
    color: #555;
    font-size: 14px;
    margin-top: 6px;
}
.store-policies{
margin-top:20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:16px;
width:100%;
}

.policy-card{
background:white;
border-radius:14px;
padding:16px;
box-shadow:0 6px 16px rgba(0,0,0,0.06);
font-size:14px;
}

.policy-card h3{
margin-top:0;
font-size:15px;
margin-bottom:6px;
}
.store-wrapper{
max-width:1200px;
margin:auto;
padding:20px;
}
.store-logo{
height:40px;
}
.store-banner img{
width:100%;
max-height:250px;
object-fit:cover;
}
.plan-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-top:40px;
}

.plan-card{
width:260px;
background:white;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
padding:25px;
text-align:center;
}

.price{
font-size:22px;
margin:15px 0;
}

.trial{
color:green;
font-weight:bold;
margin-bottom:10px;
}

.features{
list-style:none;
padding:0;
margin-bottom:20px;
}

.features li{
margin:8px 0;
}

.plan-button{
background:#2d6cdf;
color:white;
border:none;
padding:12px 18px;
border-radius:6px;
cursor:pointer;
font-weight:bold;
}