/* General page spacing */
.section {
    padding: 56px 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Alpha access */
.alpha-card {
    background: linear-gradient(145deg, #f7f3ef 0%, #e5ded5 100%);
    border-radius: 12px;
    min-height: 380px;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    text-align: center;
}

.alpha-title {
    font-size: 2rem;
    font-weight: 700;
    color: #5b3a29;
}

.alpha-desc {
    margin-top: 14px;
    margin-bottom: 26px;
    color: #5b3a29;
    opacity: .9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn-success { background: #2e7d32; color: #fff; }
.btn-outline { background: transparent; border-color: #1976d2; color: #1976d2; }

.alpha-benefits{
    margin: 1rem auto 1.25rem;
    max-width: 760px;
    padding-left: 1.2rem;
}

.alpha-benefits li{
    margin: 0.4rem 0;
}

.alpha-microcopy{
    margin-top: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.75;
    text-align: center;
}

.alpha-benefits {
    margin: 1.25rem auto;
    max-width: 760px;
    text-align: center;
}

.alpha-benefit {
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Banner tiles */
.banner-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.banner-tile {
    grid-column: span 4;
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.banner-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
}

.badge {
    font-weight: 700;
    color: var(--cc-secondary-darken);
}

.banner-title {
    margin-top: 6px;
    font-weight: 800;
    color: #fff;
}

.banner-cta {
    margin-top: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .banner-tile { grid-column: span 6; }
}
@media (max-width: 600px) {
    .banner-tile { grid-column: span 12; }
}

/* Product listing placeholder */
.products-title {
    font-size: 1.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 22px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.product-card {
    grid-column: span 3;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.product-card img { width:100%; height: 200px; object-fit: cover; display:block; }
.product-card-body { padding: 12px; }
.product-name { font-weight: 800; }
.product-meta { margin-top: 6px; opacity: .85; }

@media (max-width: 1000px) { .product-card { grid-column: span 4; } }
@media (max-width: 700px)  { .product-card { grid-column: span 6; } }
@media (max-width: 520px)  { .product-card { grid-column: span 12; } }

/* Footer */
.footer {
    background: var(--cc-primary);
    color: var(--cc-white);
    padding: 48px 16px;
}

/* Make footer wider on desktop, but keep it safe on mobile */
.footer .container {
    max-width: 1400px;      /* wider than the page's 1100px */
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* 3 columns on desktop */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.footer-col { grid-column: span 4; } /* 3 columns */

/* Links */
.footer a {
    color: var(--cc-white);
    opacity: .95;
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    .footer .container { max-width: 1100px; } /* optional: slightly tighter */
    .footer-col { grid-column: span 6; }      /* 2 columns */
}

@media (max-width: 600px) {
    .footer { padding: 32px 16px; }
    .footer-col { grid-column: span 12; }     /* stacked */
}

/* Bottom (if you still use it somewhere) */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.25);
    margin-top: 22px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== FORCE footer typography reset ===== */
.footer {
    font-size: 0.85rem;      /* <- THIS is the key line */
    line-height: 1.4;
}

.footer * {
    font-size: inherit;
    line-height: inherit;
}
