.sm-shop-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Ensure max 3 columns on large screens for overview */
@media (min-width: 1024px) {
    .sm-shop-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sm-shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.sm-shop-category-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.sm-shop-product-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sm-shop-category-card:hover,
.sm-shop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.sm-shop-card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

.sm-shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sm-shop-category-card:hover .sm-shop-card-image img {
    transform: scale(1.05);
}

.sm-shop-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sm-shop-card-title {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.sm-shop-card-text {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #666;
    flex-grow: 1;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sm-shop-card-price-wrapper {
    margin-top: auto;
    margin-bottom: 15px;
}

.sm-shop-card-legal-note {
    display: block;
    font-size: 0.75em;
    color: #888;
    margin-top: 4px;
    line-height: 1.2;
}

.sm-shop-card-link {
    display: block;
    padding: 12px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.sm-shop-card-link:hover {
    background-color: #333;
    color: #fff;
}

.sm-shop-back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.sm-shop-back-link:before {
    content: '←';
    margin-right: 8px;
}

.sm-shop-back-link:hover {
    color: #000;
}

.sm-shop-empty {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    color: #666;
}

/* Custom Order Column in Admin */
.column-term_order {
    width: 100px;
    text-align: center !important;
}
