/* Product Grid */
.fsu-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Product Item */
.fsu-product-item {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Show 4 Products on Desktop */
@media (min-width: 768px) {
    .fsu-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Show Only 2 Products on Mobile */
@media (max-width: 767px) {
    .fsu-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hide Extra Products on Mobile */
@media (max-width: 767px) {
    .fsu-product-item:nth-child(n+3) {
        display: none;
    }
}

/* Product Item */
.fsu-product-item {
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Smaller Product Title */
.fsu-product-title {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0;
}

/* Price Styling */
.fsu-product-price {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* "Check" Button Styling */
.fsu-check-button {
    display: inline-block;
    padding: 8px 12px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
/* Bigger Checkout Button and More Space */
.fsu-checkout-button-container {
    text-align: center;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

/* Ensure Checkout Button is Bigger */
.fsu-checkout-button {
    background: #ff6600 !important;
    color: #fff !important;
    padding: 20px 35px !important;
    font-size: 30px !important;
    font-weight: bold !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15) !important;
    transition: background 0.3s ease !important;
}
@media (min-width: 768px) {
.fsu-checkout-button-container {
    text-align: center;
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}
}
/* Hover Effect */
.fsu-checkout-button:hover {
    background: #e65c00 !important;
}

/* Responsive Design */
@media (min-width: 768px) {
    .fsu-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .fsu-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Progress Bar Container */
.fsu-progress-container {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

/* Progress Bar Background */
.fsu-progress-bar {
    width: 100%;
    max-width: 600px;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.1);
}

/* Animated Progress Fill */
.fsu-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6600, #ff9900);
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

/* Progress Bar Text */
.fsu-progress-text {
    margin-top: 10px;
    font-size: 16px;
    color: #444;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .fsu-progress-container {
        font-size: 16px;
    }
}

/* Fully center-align the Free Shipping title */
.fsu-page-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}
