/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.5;
    color: #fff8e1;          /* cream/off-white */
    background-color: #000;   /* black */
}

/* Container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background: #000;
    padding: 1.5rem 0;
    border-bottom: 2px solid #e63946; /* red accent */
}

.logo-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.logo {
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    color: #fff8e1;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #e63946; /* red hover */
}

/* Hero */
.hero {
    text-align: center;
    padding: 6rem 1rem 5rem;
    background: linear-gradient(to bottom, #000, #111);
}

.hero h1 {
    font-size: 4.5rem;
    color: #e63946; /* red for brand punch */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.tagline {
    font-size: 1.8rem;
    color: #fff8e1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lead {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #ddd;
}

.btn {
    display: inline-block;
    background: #e63946;
    color: #000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.btn:hover {
    background: #ff4d4d;
    transform: scale(1.05);
}

/* Features */
.features {
    padding: 5rem 0;
    background: #111;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #000;
    border: 1px solid #e63946;
    border-radius: 12px;
}

.feature h3 {
    font-size: 1.8rem;
    color: #e63946;
    margin-bottom: 1rem;
}

.feature p {
    color: #ccc;
}

/* Footer */
footer {
    background: #000;
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 2px solid #e63946;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-info br {
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.95rem;
    color: #888;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .hero h1 { font-size: 3.2rem; }
    .tagline { font-size: 1.5rem; }
    nav ul { gap: 1.5rem; font-size: 1rem; }
}

/* Shop Hero */
.shop-hero {
    text-align: center;
    padding: 5rem 1rem 4rem;
    background: linear-gradient(to bottom, #000, #111);
}

.shop-hero h1 {
    font-size: 3.8rem;
    color: #e63946;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.shop-hero p {
    font-size: 1.4rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Grid */
.products {
    padding: 4rem 0;
    background: #000;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: #111;
    border: 1px solid #e63946;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.25);
}

.product-image-placeholder {
    height: 220px;
    background: #222;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #fff8e1;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.6rem;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 0.8rem;
}

.desc {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 1.2rem;
    min-height: 60px;
}

.product-card .btn {
    background: #e63946;
    color: #000;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card .btn:hover {
    background: #ff4d4d;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .shop-hero h1 { font-size: 2.8rem; }
    .product-grid { gap: 2rem; }
}

.product-image {
    width: 10%;                /* fills the card width */
    max-width: 260px;           /* maximum size — change this to whatever you want */
    height: auto;               /* keeps proportions */
    display: block;
    margin: 0 auto 1.2rem;      /* centers it and adds bottom spacing */
    object-fit: contain;        /* shows full image without cropping */
    border-radius: 8px;
    background: #111;           /* fallback background if transparent */
}

/* Optional: Make it smaller on mobile */
@media (max-width: 768px) {
    .product-image {
        max-width: 220px;       /* smaller on phones — adjust as needed */
    }
}
