
.fds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.fds-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}
.fds-card:hover {
    transform: translateY(-5px);
}
.fds-logo {
    max-height: 40px;
    margin-bottom: 10px;
}
.fds-discount {
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
}
.fds-code {
    background: #f3f3f3;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 0;
}
.fds-expiry {
    font-size: 14px;
    color: #666;
}
.fds-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, #2196f3, #9c27b0, #ff9800);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}
.fds-btn:hover {
    opacity: 0.85;
}

/* Slider */
.fds-slider {
    width: 100%;
    padding: 30px 0;
}
.swiper-slide {
    display: flex;
    justify-content: center;
}
