/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

/* Footer Styling (Now Header) */
footer {
    background-color: #be6f5c;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #002244;
    border-radius: 20px; /* Makes the corners rounded */
}
footer img {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    filter: brightness(0) invert(1);
}
footer p {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
}

/* Product Photo Section */
.product-photo-section {
    text-align: center;
    padding: 10px 0px;
}
.product-photo-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Product Overview Section */
.product-overview {
    padding: 0px;
    background-color: #fff;
    text-align: left;
    font-size: 16px;
    color: #333;
    margin-top: 5px;
}

/* Alert Section */
.alert {
    font-size: 14px;
    color: #d32f2f;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.alert span {
    margin-left: 5px;
}

/* Headline and Subheadline */
.product-overview h1 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin: 10px 0;
}

.subheadline {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

/* Rating Section */

.rating {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 10px 0;
}

.stars {
    color: #FFD700; /* Gold color for stars */
    font-size: 16px;
    margin-right: 5px;
}

.rating-value, .review-count {
    color: #1976d2; /* Blue color */
    font-weight: bold; /* Make text bold */
}

.review-count {
    margin-left: 8px; /* Add spacing between "4.8/5" and "based on" */
}

.rating span {
    margin-right: 5px; /* Ensure spacing between elements */
}



/* Benefits List */
.benefits-list {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}
.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #4caf50; /* Green color for checkmarks */
    font-weight: bold;
}
.benefits-list li::before {
    content: "✔";
    margin-right: 8px;
    color: #4caf50;
}


/* Options Section */
.options-section {
    text-align: left;
    padding: 15px 20px;
}
.options-section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

/* Options Container */
.options-container {
    display: flex;
    gap: 10px;
}

/* Individual Option Styles */
.option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 100px;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.option:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.option.active {
    border-color: #ffa500;
    background-color: #fff8e1;
}

/* Badge Styles */
.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
}
.badge.red {
    background-color: #d32f2f;
}
.badge.blue {
    background-color: #1976d2;
}

/* Best Value Option Style */
.recommended {
    border-color: #d32f2f;
}
.best-value {
    border-color: #1976d2;
}/* Size Section */
.size-section {
    text-align: left;
    padding: 15px 20px;

}
.small-text {
    font-size: 0.8em; /* or any size you prefer */
    color: #555; /* optional: adjust color for subtlety */
}

.size-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.size-header h2 {
    font-size: 18px;
    color: #333;
    margin: 0;
}
.size-chart-link {
    font-size: 14px;
    color: #888;
    text-decoration: none;
}
.size-chart-link:hover {
    text-decoration: underline;
}

/* Size Options */
.size-option.active {
    border: 2px solid #000;
    background-color: #f0f0f0;
}

.size-options {
    display: flex;
    gap: 10px;
}
.size-option {
    flex: 1;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s;
}
.size-option:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.size-option.active {
    border-color: #ffa500;
    background-color: #fff8e1;
    color: #333;
    
}
/* Pricing Section */
.pricing-section {
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 14px;
    color: #333;
}

/* Regular Price */
.regular-price {
    color: #999;
    margin: 0;
    font-size: 14px;
}
.regular-price span {
    text-decoration: line-through;
}

/* Discounted Price and Badge */
.discounted-price {
    font-size: 24px;
    color: #d32f2f;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 5px 0;
}
.discount-badge {
    background-color: #1976d2;
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 10px;
}

/* Stock Information */
.stock-info {
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}
.in-stock {
    color: #2e7d32;
    font-weight: bold;
}
.timer {
    font-weight: bold;
    color: #d32f2f;
}#timer {
    font-weight: bold;
    color: #d32f2f; /* Red color for emphasis, matching your example */
}

.delivery-date {
    font-weight: bold;
    color: #333;
}

/* Order Now Button */
.order-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    background-color: #4caf50;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}
.order-button:hover {
    background-color: #388e3c;
}
.cart-icon {
    margin-right: 8px;
    font-size: 20px;
}

/* Benefits List */
.benefits-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0 0;
    font-size: 14px;
}
.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #333;
}
.icon {
    margin-right: 8px;
}
.highlight {
    color: #4caf50;
    font-weight: bold;
}
/* Money-Back Guarantee Section */
/* Money-Back Guarantee Section */
.money-back-section {
    display: flex;
    align-items: center;
    background-color: #fff8e1; /* Light yellow background */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.badge-icon {
    width: 50px; /* Size of the badge icon */
    height: auto;
    margin-right: 15px;
    display: inline-block;
}

.money-back-content p {
    margin: 0;
    color: #333;
}

.money-back-content p:first-child {
    font-weight: bold;
    font-size: 16px;
}

.money-back-content p:last-child {
    font-size: 14px;
    color: #555;
}
/* Feature Section */
.feature-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.feature-item {
    text-align: center;
}

.feature-item h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.feature-image {
    width: 100%;
    max-width: 2000px; /* Adjust max width as needed */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Order Form Styling */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.order-form label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.order-form input[type="text"],
.order-form input[type="tel"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.order-form input[type="text"]:focus,
.order-form input[type="tel"]:focus {
    border-color: #1976d2; /* Blue color for focus */
}
/* Shipping Timer Section */
.shipping-timer {
    text-align: center;
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin: 20px 0;
}

.shipping-timer p {
    margin: 0;
}

#countdown {
    font-size: 22px; /* Make the countdown timer bigger */
    color: #d32f2f; /* Red color for the countdown */
    font-weight: bold;
    display: inline-block;
    margin: 0 5px; /* Space around countdown for readability */
}
//* Purchase Section */
.purchase-section {
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Quantity Options */
.options-container {
    display: flex;
    gap: 10px;
}

.option {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 100px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    background-color: #fff;
    transition: all 0.3s;
    position: relative;
}

.option.recommended { border-color: #d32f2f; }
.option.best-value { border-color: #1976d2; }

.badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); padding: 4px 8px; border-radius: 4px; font-weight: bold; color: #fff; }
.badge.red { background-color: #d32f2f; }
.badge.blue { background-color: #1976d2; }

/* Size Options */
.size-options { display: flex; gap: 10px; }
.size-option { padding: 10px; border: 2px solid #ddd; border-radius: 8px; text-align: center; cursor: pointer; }

/* Price and Timer */
.regular-price { color: #999; text-decoration: line-through; }
.discounted-price { font-size: 24px; color: #d32f2f; font-weight: bold; }
.stock-info .in-stock { color: #2e7d32; font-weight: bold; }
#countdown1, #countdown2 { color: #d32f2f; }

/* Order Form */
.order-form { margin: 20px 0; }
.order-form label { display: block; font-size: 14px; color: #333; margin-bottom: 5px; }
.order-form input { padding: 10px; font-size: 14px; border: 1px solid #ddd; border-radius: 5px; width: 100%; }

/* Order Button */
.order-button { width: 100%; padding: 15px; font-size: 18px; color: #fff; background-color: #4caf50; border: none; border-radius: 8px; cursor: pointer; display: flex; justify-content: center; font-weight: bold; }
/* Footer Styling */
.site-footer {
    background-color: #be6f5c;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #002244;
    color: #ffffff;
}

.footer-logo {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    filter: brightness(0) invert(1); /* Invert colors for visibility on dark background */
}

.site-footer p {
    font-size: 14px;
    color: #ffffff;
    margin: 5px 0;
}

.footer-link {
    color: #ffd04f; /* Highlighted link color */
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Copyright Text */
.site-footer .copyright {
    font-size: 12px;
    color: #ffffff;
    margin-top: 5px;
}
/* Style for the shipping countdown timer only */
#shippingCountdown {
    color: #d32f2f; /* Red color for shipping timer */
    font-weight: bold;
    font-size: 24px; /* Larger font size for shipping timer */
}

/* Optional: Style the shipping timer container for better layout */
.shipping-timer {
    text-align: center;
    padding: 10px;
}
/* Order Button Styling */
.order-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    background-color: #4caf50; /* Green background for the button */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    margin-top: 10px; /* Add spacing between button and preceding elements */
}

.order-button .cart-icon {
    margin-right: 8px;
}

/* Hover effect for button */
.order-button:hover {
    background-color: #45a049; /* Slightly darker green on hover */
}
.discount-button-section {
    margin-bottom: 20px; /* Adjust this value as needed for spacing */
}

.order-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    background-color: #4caf50; /* Green background */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    margin-top: 10px; /* Spacing between button and preceding elements */
}

/* Hover effect for button */
.order-button:hover {
    background-color: #45a049; /* Darker green on hover */
}
/* Shared Styling for Both Buttons */
.order-button {
    width: 100%;
    max-width: 300px; /* Optional: limits button width on larger screens */
    padding: 15px;
    font-size: 18px;
    color: #fff;
    background-color: #4caf50; /* Green background */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-align: center;
    margin: 10px auto; /* Centers the button and adds vertical spacing */
}

/* Icon Spacing */
.order-button .cart-icon {
    margin-right: 8px;
}

/* Hover Effect */
.order-button:hover {
    background-color: #45a049; /* Slightly darker green on hover */
}


/* Tablet Screens */
@media (min-width: 768px) {
    .product-photo-section img {
        max-width: 50%;
        margin: 0 auto;
    }

    .options-container {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .size-options {
        justify-content: center;
        gap: 20px;
    }

    .pricing-section {
        max-width: 800px;
        margin: 0 auto;
    }

    .feature-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-item img {
        max-width: 100%;
    }
}

/* Desktop Screens */
@media (min-width: 1200px) {
    .product-overview {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
        padding: 40px;
    }

    .feature-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .order-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-section {
        max-width: 1000px;
        margin: 0 auto;
    }

    .product-photo-section img {
        max-width: 40%;
        margin: 0 auto;


}

    }
    /* Adjust container spacing if necessary */
    .discount-button-section, .pricing-section {
        padding: 10px 5px;
    }
    
    .my-custom-scroll-button {
    width: 100%;
    max-width: 300px; /* Limit width on larger screens */
    padding: 15px; /* Adjust padding */
    font-size: 18px; /* Font size */
    color: #ffffff; /* Text color */
    background-color: #4caf50; /* Custom blue background */
    border: none; /* Remove border */
    border-radius: 8px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    display: flex; /* Center content */
    align-items: center;
    justify-content: center;
    font-weight: bold; /* Bold text */
    text-align: center;
    margin: 20px auto; /* Center button */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
}

.my-custom-scroll-button:hover {
    background-color: #4caf50; /* Darker blue on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

.my-custom-scroll-button .cart-icon {
    margin-right: 8px; /* Space between icon and text */
}
@media (max-width: 768px) {
    .my-custom-scroll-button {
        width: calc(100% - 40px); /* Full-width minus padding */
        padding: 12px; /* Slightly smaller padding */
        font-size: 16px; /* Reduce font size */
        margin: 10px auto; /* Adjust margin */
    }
}
/* Site Container Styles */
.site-container {
    max-width: 1200px; /* Set the maximum width of the site */
    width: 100%; /* Allow responsiveness for smaller screens */
    margin: 0 auto; /* Center horizontally */
    padding: 20px; /* Add some padding around the content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    background-color: #ffffff; /* Optional: Set a background color */
}

/* Ensure full background color for the page */
body {
    background-color: #f4f4f4; /* Light background color */
}
@media (max-width: 768px) {
    .site-container {
        max-width: 95%; /* Use most of the screen width */
        padding: 10px; /* Reduce padding for smaller screens */
    }
}

