/* Body */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: rgb(255, 255, 255);
    padding-top: 60px;
}

/* Header */
header {
    background-color: rgb(255, 255, 255);
    color: #2f38b6;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

header .logo a {
    font-size: 24px;
    font-family: 'Charmonman';
    font-weight: bold;
    text-decoration: none;
    color: #2f38b6;
}

header .logo h3 {
    font-size: 10%;
    font-family: 'Times New Roman';
    color: #000000;
    margin: 2px;
    line-height: 1.5;
}

.info h3 {
    font-family: 'Times New Roman';
    font-style: italic;
}

/* Footer Styles */
footer {
    background-color: #ffffff;
    color: #333;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 20px auto;
}

.footer-section {
    flex: 1;
    margin: 0 1rem;
    min-width: 200px;
    text-align: center;
}

.footer-section h3 {
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #8e68e7;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    margin-top: 1rem;
    justify-content: center;
}

.social-icon {
    margin: 0 0.5rem;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

/* Contact Form Styles */
#contact-form {
    background-color: rgb(255, 255, 255);
    padding: 20px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 410px;
    margin: 20px auto;
    margin-top: 5px !important; /* Reduce space above the form */
    padding-top: 5px; /* Reduce padding */
}

/* Input Fields Styling */
#contact-form input[type="text"],
#contact-form input[type="tel"] {
    width: 80%;
    padding: 12px;
    margin: 0;
    border: 2px solid #ccc;
    font-family: Arial, sans-serif;
    border-radius: 1px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

/* Focus Effect on Inputs */
#contact-form input[type="text"]:focus,
#contact-form input[type="tel"]:focus {
    border-color: #2f38b6;
    outline: none;
}

/* Label Styling */
#contact-form label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

/* Dropdown Styling */
#contact-form select {
    width: 87%;
    padding: 12px;
    margin: 0;
    font-size: 14px;
    font-family: Arial, sans-serif;
    border: 2px solid #ccc;
    border-radius: 1%;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

/* Focus Effect on Select */
#contact-form select:focus {
    border-color: #2f38b6;
    outline: none;
}

/* Default Option Styling */
#contact-form select option {
    font-size: 16px;
    font-family: 'Times New Roman', serif;
    padding: 10px;
    color: black;
    background-color: white;
}

/* Selected Option Styling */
#contact-form select option:checked {
    background-color: #2f38b6;
    color: white;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
}

/* Submit Button */
.but {
    background: #2f38b6;
    color: white;
    padding: 10px 100px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Payment Options Styling */
.payment-options {
    margin-top: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #fff;
}

.radio-option input {
    margin-right: 10px;
}

.radio-option img {
    width: 30px;
    margin-left: 5px;
}

.extra {
    color: gray;
    font-size: 12px;
    margin-left: 5px;
}

/* Order Box Styling */
.order-box {
    border: 2px solid #000;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    background: #fcfbef;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

/* Price Details */
.price-details {
    font-size: 14px;
}

.price-details p {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
}

.discount {
    color: green;
}

.total {
    font-weight: bold;
    font-size: 16px;
}

.header1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.logo1 {
    font-size: 24px;
    font-weight: bold;
}

.order-sum {
    text-align: right;
}

.order-sum span {
    display: block;
}

.original-price {
    text-decoration: line-through;
    color: grey;
}

.discounted-price {
    font-size: 20px;
    font-weight: bold;
    color: blue;
}
