﻿.article-section {
    padding: 80px 0;
}

.article-section h1 {
    font-size: 96px;
    text-align: left;
    margin-bottom: 40px;
    font-weight: 900;
    padding: 32px 5%;
}

/* grid สินค้า */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 48px;
    padding: 0 60px;
}

/* link ครอบทั้ง card */
.store-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* hover ทั้ง card */
.store-link:hover img {
    transform: translateY(-6px);
}

.store-link:hover p {
    text-decoration: underline;
}

/* card */
.store-item {
    text-align: center;
}

.store-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.store-item p {
    margin-top: 12px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}

/* see all */
.store-seeall {
    margin-top: 50px;
    text-align: center;
}

.seeall-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: #000;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.3s ease;
    min-width: 180px;
}

.seeall-btn:hover {
    background: #333;
}
