/* Product Card Styling - New Design */
/* Tab Navigation Styling */
.products h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.new-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.new-tab-btn {
    background: transparent !important;
    border: none;
    padding: 10px 20px;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    text-align: center;
    outline: none;
    box-shadow: none;
}

.new-tab-btn:hover {
    color: #6A8A28;
    background: transparent !important;
}

.new-tab-btn.active {
    color: #6A8A28 !important;
    font-weight: 600;
    background: transparent !important;
}

.new-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    min-width: 60px;
    height: 3px;
    background-color: #6A8A28;
}

/* Product Grid Styling */
.product-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.product-card-new {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.product-card-new img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-new .card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-new .card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.product-card-new .card-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-card-new .card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-card-new .card-price {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.product-card-new .card-btn {
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.product-card-new .card-btn:hover {
    background: #c0392b;
}

.view-all-btn {
    display: block;
    width: max-content;
    margin: 30px auto;
    background-color: #6A8A28;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #566f1f;
}
