
@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.4;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 9/14;
    width: 100%;
    height: auto;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 4px;
    background: #eee;
    cursor: pointer;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-secondary {
    background: #f2f2f2;
}

/* HEADER */
.site-header {
    border-bottom: 1px solid #e5e5e5;
}

.top-bar {
    background: #111;
    color: #fff;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    padding: 6px 16px;
}

.header-main {
    padding: 12px 0;
}

.header-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo strong {
    font-size: 22px;
	font-family: "Momo Signature", cursive;
}

.main-nav ul {
    display: flex;
    gap: 18px;
	list-style: none;
}

.header-actions {
    display: flex;
    gap: 14px;
    position: relative;
}

.cart-count {
    background: red;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
    position: absolute;
    top: -6px;
    right: -10px;
}

.benefits{
    position: relative;
    margin: 20px 0px;
}
.benefit img, h2{
	margin: 0px 0px 10px 0px;
}

a.category-card span{
	margin: 10px 0px 0px 0px;
	font-weight: bold;
	display: flex;
}

/* HERO */
.hero {
    padding: 60px 0;
    background: #f7f7f7;
    text-align: center;
}

.hero h1 {
    font-size: 34px;
    margin-bottom: 12px;
}

.hero-subtitle {
    margin-bottom: 20px;
    color: #666;
}

/* GRIDS */
.products-grid,
.categories-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

/* PRODUCT CARD */
.product-card {
    border: 1px solid #eee;
    padding: 10px;
}

.product-card h3 {
    font-size: 16px;
    margin: 8px 0;
}

.price {
    font-weight: bold;
}

/* FOOTER */
.site-footer {
    background: #111;
    color: #ccc;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 16px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 10px;
}
.footer-col h4#footer__logo{
	font-family: "Momo Signature", cursive;
}
.footer-col ul{
	list-style: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 10px 0;
    font-size: 13px;
    text-align: center;
}

/* FORMS */
input, select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    margin-top: 4px;
}

label {
    display: block;
    margin-bottom: 12px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

/* MOBILE */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}
