    /* Container Layout */
.products {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 Columns */
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* மொபைல் மற்றும் டேப்லெட் ரெஸ்பான்சிவ் டிசைன் */
@media (max-width: 1024px) {
    .products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .products { grid-template-columns: 1fr; }
}


/* Main White Card */
.elite-product-card {
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px; /* பட்டனுக்காகக் கீழே இடம் விடுகிறோம் */
}

.elite-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Product Image */
.elite-product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}


/* Content Area */
.product-details {
    padding: 15px;
    position: relative;
}

/* Title */
.product-title {
    margin: 0 0 10px 0;
}

.product-title a {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

/* Price */
.product-price-tag .price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* பழைய விலை (Strikethrough) */
.product-price-tag del {
    color: #999;
    font-size: 13px;
}

/* புதிய சலுகை விலை */
.product-price-tag ins {
    color: #0c4a28; /* Sona Foods பச்சை நிறம் */
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
}


/* Button Placement */
.sona-cart-action {
    position: absolute;
    bottom: 15px;
    right: 15px;
}

/* Circular '+' Button Design */
.sona-cart-action a.button {
    background: #2b5c23; /* Dark Green */
    color: #ffffff !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0;
    font-size: 0 !important; /* பழைய 'Add to Cart' எழுத்தை மறைக்க */
    box-shadow: 0 4px 8px rgba(43, 92, 35, 0.3);
}

/* '+' ஐகானை உருவாக்குதல் */
.sona-cart-action a.button::before {
    content: '+';
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
}

.sona-cart-action a.button:hover {
    background: #1a3c14; /* Hover Color */
}

/* சிவப்பு நிற Sale Badge */
.elite-product-card .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4d4f;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    z-index: 9;
    text-transform: uppercase;
}
