.iron-header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #222;
}

.iron-banner {
    max-width: 400px;
    width: 90%;
}

.iron-hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #111, #000);
}

.range-highlight {
    text-align: center;
    padding: 60px 20px;
    background-color: #111;
}

.range-highlight img {
    width: 80%;
    max-width: 800px;
    margin-bottom: 20px;
}

.range-highlight h3 {
    color: #c5a64a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 60px;
    background-color: #0f0f0f;
}

.product-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(197,166,74,0.4);
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #c5a64a;
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #222;
}