/* Hero */
.amarant-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 60px 0;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-text h1 { font-size: 42px; font-weight: 700; color: #1b5e20; line-height: 1.2; margin-bottom: 16px; }
.hero-subtitle { font-size: 18px; color: #444; margin-bottom: 24px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; padding: 8px 14px; border-radius: 20px;
    font-size: 14px; color: #2e7d32; box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.tag .check { color: #2e7d32; font-style: normal; font-weight: 700; }
.hero-btn {
    display: inline-block; background: #2e7d32; color: #fff;
    padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 600;
}
.hero-btn:hover { background: #1b5e20; }
.hero-image img { border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

/* Common sections */
section { padding: 48px 0; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-header h2, .section-title { font-size: 28px; font-weight: 700; color: #1a1a1a; }
.section-link { font-size: 14px; color: #2e7d32; font-weight: 500; }

/* Categories */
.cats-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.cat-card {
    background: #fff; border-radius: 12px; padding: 16px; text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 16px rgba(0,0,0,0.08); }
.cat-img-wrap { width: 100%; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: #f5f5f5; margin-bottom: 10px; }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.cat-name { font-size: 13px; font-weight: 500; color: #333; }

/* Goals */
.amarant-goals { background: #fff; }
.goals-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.goal-card { text-align: center; padding: 24px 16px; border: 1px solid #eee; border-radius: 12px; }
.goal-card:hover { border-color: #2e7d32; }
.goal-icon { font-size: 32px; margin-bottom: 10px; }
.goal-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.goal-card p { font-size: 13px; color: #666; }

/* Bestsellers */
.amarant-bestsellers { background: #f8f9fa; }
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.product-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); display: flex; flex-direction: column;
}
.product-link { display: block; padding: 12px; flex: 1; }
.product-img { aspect-ratio: 1; background: #f5f5f5; border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-title {
    font-size: 14px; font-weight: 500; color: #333; line-height: 1.3; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-price { font-size: 16px; font-weight: 700; color: #1a1a1a; }
.add-to-cart-btn {
    display: block; text-align: center; background: #2e7d32; color: #fff;
    padding: 10px; font-size: 14px; font-weight: 500; margin: 0 12px 12px; border-radius: 6px;
}
.add-to-cart-btn:hover { background: #1b5e20; }

/* Why */
.amarant-why { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.why-item { text-align: center; padding: 20px; }
.why-icon { font-size: 28px; margin-bottom: 8px; }
.why-num { font-size: 24px; font-weight: 700; color: #2e7d32; margin-bottom: 4px; }
.why-text { font-size: 14px; color: #555; }

/* Reviews */
.amarant-reviews { background: #f8f9fa; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.review-card { background: #fff; padding: 24px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.review-stars { color: #ffb300; font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #444; margin-bottom: 16px; line-height: 1.5; }
.review-author { font-size: 14px; font-weight: 600; color: #1a1a1a; }

/* Shops */
.amarant-shops { background: #fff; }
.shops-subtitle { text-align: center; color: #666; margin-bottom: 24px; margin-top: -12px; }
.shops-btn-wrap { text-align: center; margin-top: 24px; }

/* Subscribe */
.amarant-subscribe { background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%); color: #fff; }
.subscribe-content { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.subscribe-text h2 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.subscribe-text p { opacity: 0.9; }
.subscribe-form { display: flex; gap: 12px; }
.subscribe-form input {
    padding: 12px 16px; border-radius: 8px; border: none;
    font-size: 14px; min-width: 280px; outline: none;
}
.subscribe-form button {
    padding: 12px 24px; background: #fff; color: #2e7d32;
    border: none; border-radius: 8px; font-weight: 600; cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
    .cats-grid { grid-template-columns: repeat(4, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .goals-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 28px; }
    .cats-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .goals-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .subscribe-content { flex-direction: column; text-align: center; }
    .subscribe-form { width: 100%; justify-content: center; }
    .subscribe-form input { min-width: 0; flex: 1; }
    section { padding: 32px 0; }
}