/* Order Page Image Section with Overlay Text (Similar to Slider Section) */
.order-image-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.order-image-section img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image */
    animation: zoomInOut 10s infinite ease-in-out;
}

.order-text-overlay {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.order-text-overlay h1 {
    font-size: 3.75vw;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0400a4;
    text-shadow: 0 0 12px rgba(255, 252, 160, 0.9);
}

/* Button with price in the slider section */
.order-now-price-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background-color: #28a745;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.order-now-price-button:hover {
    background-color: #218838;
}

/* Price and Order Button Section Under the Slider */
.order-details {
    text-align: center;
    margin: 40px auto;
}

.price-text {
    font-size: 2.5em;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

.order-now-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #28a745;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.order-now-button:hover {
    background-color: #218838;
}

.discount-now-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FFA500;
    color: #fff;
    font-size: 1.5em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.discount-now-button:hover {
    background-color: #d7de09;
}

/* Keyframes for Zoom In and Out Animation */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Responsive Design for Order Page */
@media (max-width: 768px) {
    .order-text-overlay h1 {
        font-size: 6vw;
    }

    .price-text {
        font-size: 3em;
    }

    .order-now-price-button,
    .order-now-button {
        font-size: 1.2em;
        padding: 12px 30px;
    }
/* Logo styling under the ORDER NOW button */
.order-logo {
    display: block;
    margin: 20px auto; /* Center the logo */
    width: 150px; /* Adjust the size as needed */
}

/* Explanatory text styling */
.order-explanation-text {
    text-align: center;
    font-size: 2.5em; /* Same size as PRICE 249€ text */
    color: #333;
    margin-top: 15px;
    padding: 0 20px;
    max-width: 700px;
    margin: 15px auto; /* Center the text */
}
.order-explanation-text {
    text-align: justify;
    font-size: 1em;
    color: #333;
    margin: 15px auto; /* Centers the text horizontally */
    padding: 0 20px;
    max-width: 800px; /* Set a maximum width of 800px */
}
}
