/* Arriving Soon Products — Grid & Card Styles */

.asp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 16px 0;
}

.asp-product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.asp-product-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Image */
.asp-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}

.asp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.asp-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Info */
.asp-product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Title */
.asp-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
    line-height: 1.3;
    color: #222;
}

.asp-product-title a {
    color: inherit;
    text-decoration: none;
}

.asp-product-title a:hover {
    color: #0073aa;
    text-decoration: underline;
}

/* Meta — Dates */
.asp-product-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
}

.asp-meta-item strong {
    color: #333;
}

/* Countdown Timer */
.asp-countdown-wrapper {
    margin-bottom: 14px;
    text-align: center;
}

.asp-countdown-heading {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 6px;
}

.asp-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.asp-cd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f0f4f8;
    border-radius: 6px;
    padding: 6px 10px;
    min-width: 48px;
}

.asp-cd-num {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    color: #1a1a2e;
}

.asp-cd-unit {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    margin-top: 2px;
}

.asp-cd-sep {
    font-size: 1.2rem;
    font-weight: 700;
    color: #bbb;
    line-height: 1;
    padding-bottom: 12px;
}

.asp-countdown-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a8c1a;
}

/* Enquire Button */
.asp-enquire-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #0073aa;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s ease;
    box-sizing: border-box;
}

.asp-enquire-btn:hover {
    background: #005a87;
    color: #fff;
    text-decoration: none;
}

/* Empty state */
.asp-no-products {
    text-align: center;
    padding: 40px 20px;
    font-size: 1rem;
    color: #888;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
    .asp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive — Mobile */
@media (max-width: 600px) {
    .asp-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
