
/* Basic reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }
a { color: #111; text-decoration: none; }

/* Hero section */
.hero { background: #f4f4f4; padding: 60px 20px; text-align: center; }
.hero .navbar { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero .logo { font-size: 24px; font-weight: bold; }
.hero .nav-links { list-style: none; display: flex; gap: 20px; }
.hero .nav-links a { font-weight: bold; }
.hero .hero-content { margin-top: 40px; }
.hero .hero-content h1 { font-size: 36px; margin-bottom: 20px; }
.hero .hero-content p { font-size: 18px; margin-bottom: 30px; }
.hero .cta-button { display: inline-block; background: #111; color: #fff; padding: 12px 25px; border-radius: 4px; transition: background 0.3s; }
.hero .cta-button:hover { background: #444; }

/* Sections */
.section { padding: 60px 20px; max-width: 1000px; margin: 0 auto; }
.section h2 { font-size: 28px; margin-bottom: 20px; text-align: center; }
.section p { margin-bottom: 20px; text-align: center; }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.product-item { background: #fafafa; padding: 20px; border: 1px solid #e0e0e0; text-align: center; border-radius: 4px; }
.product-item img { width: 100%; height: auto; border-radius: 4px; margin-bottom: 15px; }
.product-item h3 { margin-bottom: 10px; font-size: 20px; }
.product-item p { margin-bottom: 15px; }
.shop-button { display: inline-block; background: #111; color: #fff; padding: 10px 20px; border-radius: 4px; transition: background 0.3s; }
.shop-button:hover { background: #444; }

/* About */
.about p { text-align: left; max-width: 800px; margin: 0 auto 20px; line-height: 1.5; }

/* Contact */
.subscribe-form { display: flex; justify-content: center; gap: 10px; margin-bottom: 20px; }
.subscribe-form input { padding: 10px; border: 1px solid #ccc; border-radius: 4px; width: 250px; }
.subscribe-form button { padding: 10px 20px; background: #111; color: #fff; border: none; border-radius: 4px; cursor: pointer; transition: background 0.3s; }
.subscribe-form button:hover { background: #444; }
.social-links { display: flex; justify-content: center; gap: 15px; }
.social-links a { font-weight: bold; }

/* Links to various marketplace platforms for each product */
.platform-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.platform-links a {
    font-size: 14px;
    color: #111;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    transition: background 0.2s;
}

.platform-links a:hover {
    background: #e6e6e6;
}

/* Footer */
.footer { background: #f4f4f4; padding: 20px; text-align: center; font-size: 14px; }
