/* Product List Styles */

.pro_list {
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pro_list:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #2c5f2d;
}

.pro_list td.prd {
    padding: 10px;
    background: #fafafa;
}

.pro_list td.prd a {
    display: block;
    text-decoration: none;
}

.pro_list td.prd img {
    display: block;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.pro_list:hover td.prd img {
    transform: scale(1.05);
}

.pro_list td a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    display: block;
    padding: 8px 5px;
}

.pro_list td a:hover {
    color: #2c5f2d;
    font-weight: bold;
}

.pro_list .price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 14px;
}

/* Product Grid Layout */
table[cellpadding="4"] tr {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

table[cellpadding="4"] tr td {
    flex: 0 0 calc(20% - 8px);
    min-width: 130px;
}

@media (max-width: 768px) {
    table[cellpadding="4"] tr td {
        flex: 0 0 calc(50% - 8px);
    }
}

/* Text styles */
.11gray_01 {
    font-size: 11px;
    color: #666;
}

.11red_01 {
    color: #e74c3c;
}

.11red_01 strong {
    font-weight: bold;
    font-size: 13px;
}
