.featured-product {
    max-width: 1100px;
    margin: 48px auto;
    padding: 0 20px;
}

/* ---------- Promo banner carousel (Daraz-style scrolling ad banners) ---------- */
.promo-carousel {
    position: relative;
    margin-bottom: 48px;
    border-radius: 16px;
    overflow: hidden;
    background: #173b24;
}

.promo-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.promo-track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.promo-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: block;
    line-height: 0;
    height: 320px;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.promo-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.15s ease, width 0.15s ease;
}

.promo-dot.active {
    width: 22px;
    border-radius: 4px;
    background: #fff;
}

@media (max-width: 640px) {
    .promo-slide {
        height: 180px;
    }
}

.category-section {
    margin-bottom: 48px;
}

.category-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.category-section-title h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #173b24;
    white-space: nowrap;
}

.category-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e0e8e2;
}

.category-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 14px;
    border: 1px solid #e5efe7;
    border-radius: 10px;
    text-decoration: none;
    transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.category-icon-card:hover {
    border-color: #198754;
    box-shadow: 0 8px 20px rgba(31, 78, 43, 0.1);
    transform: translateY(-2px);
}

.category-icon-frame {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border: 1px solid #e5efe7;
    border-radius: 8px;
    overflow: hidden;
}

.category-icon-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon-label {
    color: #173b24;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 900px) {
    .category-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .category-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.featured-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.featured-eyebrow {
    margin: 0 0 8px;
    color: #198754;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.featured-heading h1 {
    margin: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border: 1px solid #d8e8dc;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 78, 43, 0.12);
}

.product-image {
    display: grid;
    min-height: 220px;
    place-items: center;
    background: #f4f6f5;
    color: #174b2a;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.product-details {
    padding: 20px;
}

.product-title {
    margin: 0 0 8px;
    color: #173b24;
    font-size: 1.3rem;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-description {
    margin-bottom: 16px;
    color: #55705d;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-price {
    color: #198754;
    font-size: 1.2rem;
    font-weight: 700;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.product-actions button {
    flex: 1 1 0;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.shop-cart-btn {
    border: 0;
    background: #198754;
    color: #fff;
}

.shop-cart-btn:hover {
    background: #146c43;
}

.shop-wishlist-btn {
    border: 1px solid #198754;
    background: #fff;
    color: #198754;
}

.shop-wishlist-btn:hover {
    background: #e9f5ee;
}

/* ---------- Latest News ---------- */
.latest-news-section {
    margin-top: 56px;
}

.latest-news-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.latest-news-title h2 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #173b24;
    white-space: nowrap;
}

.latest-news-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e0e8e2;
}

.latest-news-nav {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.related-nav-btn {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #d8e8dc;
    border-radius: 8px;
    background: #fff;
    color: #55705d;
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease;
}

.related-nav-btn:hover {
    border-color: #198754;
    color: #198754;
}

.latest-news-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.latest-news-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.latest-news-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 300px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #d8e8dc;
    box-shadow: 0 8px 24px rgba(31, 78, 43, 0.07);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    display: flex;
    flex-direction: column;
}

.latest-news-card:hover {
    box-shadow: 0 12px 28px rgba(31, 78, 43, 0.14);
    transform: translateY(-2px);
}

.latest-news-image {
    display: grid;
    place-items: center;
    height: 190px;
    background: #f4f6f5;
    color: #174b2a;
    font-weight: 800;
    text-align: center;
    padding: 12px;
}

.latest-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-news-date {
    margin: 16px 20px 0;
    color: #8a8f8a;
    font-size: 0.78rem;
}

.latest-news-card h3 {
    margin: 8px 20px 8px;
    font-size: 1.05rem;
    line-height: 1.35;
}

.latest-news-card p {
    margin: 0 20px 20px;
    color: #55705d;
    font-size: 0.88rem;
    line-height: 1.55;
}

@media (max-width: 560px) {
    .latest-news-card {
        width: 250px;
    }
}

