body {
    background: #f8d7da;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
.store-header {
    text-align: center;
    padding: 30px 20px;
    background: #d62828;
    color: white;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

/* Navbar */
.navbar {
    margin-top: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 18px;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.hero-section h2 {
    font-size: 36px;
    color: #d62828;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Shop Button */
.shop-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #d62828;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
}

.shop-btn:hover {
    background: white;
    color: #d62828;
    border: 2px solid #d62828;
}

/* Featured Section */
.featured-section {
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
}

.featured-section h2 {
    color: #d62828;
    font-size: 32px;
}

/* Product Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Product Cards */
.featured-card {
    background: white;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
}

.featured-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

.featured-card h3 {
    font-size: 22px;
    margin-top: 15px;
    color: #222;
}

.featured-card p {
    font-size: 18px;
    font-weight: bold;
    color: #d62828;
}
/* Featured Card Buttons */
.featured-card button {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    background: #d62828;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.featured-card button:hover {
    background: white;
    color: #d62828;
    border: 2px solid #d62828;
}
.cart-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #d62828;
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.stock-status {
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
    color: #444;
}

.sold-out {
    color: red;
    font-size: 18px;
}

/* Footer */
.site-footer {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
    background: #d62828;
    color: white;
    font-size: 14px;
    font-weight: bold;
}
.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
}

.footer-links a:hover {
    text-decoration: underline;
}