/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #9e9cba; /* Soft lavender background */
    color: #533B4D; /* Muted dark purple for text */
    font-size: 18px;
}

body {
    padding: 3px;
    box-sizing: border-box;
}

/* Links */
a {
    color: #533B4D; /* Muted dark purple */
    text-decoration: none;
    font-size: 1em;
}

a:hover {
    text-decoration: underline;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: 533B4D; /* Muted dark purple */
    margin-bottom: 20px;
    font-weight: normal;
}

h1 {
    font-size: 2em;
    font-weight: bold;
}

h2 {
    font-size: 1.5em;
    font-weight: bold;
}

h3 {
    font-size: 1.2em;
}

p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1em;
}

/* Layout */
.container {
    max-width: 780px;
    margin: 0 auto;
    padding: 10px;
}

.header, .footer {
    background-color: #533B4D; /* Soft accent purple */
    color: #FFFFFF;
    text-align: center;
    padding: 20px;
    font-size: 1em;
}

.main-content {
    background-color: #FFFFFF; /* White background */
    padding: 5px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Forms */
input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea, select {
    max-width: 90%;
    padding: 10px;
    margin: 14px 0;
    border: 1px solid #533B4D; /* Lavender border */
    border-radius: 5px;
    font-size: 0.7em;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
    border-color: #533B4D;
    outline: none;
}

label {
    font-weight: bold;
    display: block;
    font-size: 0.9em;
}

/* Buttons */
button, input[type="submit"], .btn {
    background-color: #533B4D; /* Muted dark purple */
    color: #FAFD67;
    padding: 18px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s;
}

button:hover, input[type="submit"]:hover, .btn:hover {
    background-color: #533B4D; /* Lavender on hover */
}

/* Table */
table {
    width: 95%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 1em;
}

table, th, td {
    border: 1px solid #B6A3D5; /* Soft accent purple */
    padding: 16px;
    text-align: center;
}

th {
    background-color: #5D4D7A;
    color: #FFFFFF;
}

tr:nth-child(even) {
    background-color: #E9E6F3;
}

/* Navigation */
.navbar {
    background-color: #5D4D7A;
    overflow: hidden;
    text-align: center;
}

.navbar a {
    display: inline-block;
    color: #FFFFFF;
    padding: 16px 22px;
    text-decoration: none;
    font-size: 1em;
}

.navbar a:hover {
    background-color: #B6A3D5;
    color: #FFFFFF;
}

/* Responsive Layout */
@media (max-width: 768px) {
    body {
        font-size: 20px;
    }

    h1 {
        font-size: 1.4em;
    }

    h2 {
        font-size: 1.2em;
    }

    h3 {
        font-size: 1em;
    }

    p, input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea, select {
        font-size: 1em;
        width: 100%;
    }

    .navbar a {
        display: block;
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    table, th, td {
        font-size: 1em;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.4em;
    }

    h2 {
        font-size: 1.1em;
    }

    .container {
        max-width: 98%;
        padding: 10px;
    }

    input[type="text"], input[type="email"], input[type="password"], input[type="number"], textarea, select {
        font-size: 1em;
    }
}

/* Center the items-container */
.items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
}

/* Update item-card styling */
.item-card {
    border: 1px solid #B6A3D5;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
}

/* Style the item-title */
.item-title {
    font-size: 0.8em;
    font-weight: bold;
    color: #533B4D;
    margin: 10px 0;
    line-height: 1;
    height: 2.2em;
    overflow: hidden;
}

.item-card img {
    max-width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

/* Center the order form */
.order-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    max-width: 780px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Payment Options */
.payment-option {
    background-color: #FFFFFF;
    border: 1px solid #B6A3D5;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.payment-option:hover {
    background-color: #9e9cba;
}

/* Language Switcher */
.language-switcher {
    text-align: center;
    margin: 20px 0;
    font-size: 1em;
}

.language-switcher a {
    color: #5D4D7A;
    text-decoration: none;
    font-weight: bold;
}

.language-switcher a:hover {
    text-decoration: underline;
}



    .admin-menu {
        margin: 20px 0;
    }

    .admin-menu ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .admin-menu li {
        display: inline;
        margin-right: 15px;
    }

    .admin-menu li a {
        text-decoration: none;
    font-weight: bold;
        font-size: 18px;
    }

    .admin-menu li a:hover {
    font-weight: bold;
    }
