* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

body.rtl {
    direction: rtl;
}

body.rtl .brand-info {
    text-align: right;
}

body.rtl .header-content {
    flex-direction: row-reverse;
}

body.rtl .language-menu {
    left: auto;
    right: 0;
}

body.rtl .label {
    text-align: right;
}

body.rtl .value {
    text-align: left;
}

body.rtl .info-row.align-top {
    flex-direction: column-reverse;
}

header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('background_placeholder.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 10px;
    height: 180px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 8px;
    padding: 5px;
}

.brand-info h1 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.brand-info p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.language-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
}

.language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    min-width: 90px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    padding: 0;
}

.language-menu button {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 6px 14px;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
}

.language-menu button:hover {
    background: #f1f1f1;
}

main {
    padding: 0 15px;
    margin-top: -30px;
}

.order-type-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.order-card {
    background: white;
    padding: 20px 10px;
    text-align: center;
}
.order-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #000;
}
.order-card img {
    width: 100%
}

.store-info {
    margin-top: 40px;
}
.store-info h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.info-card {
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.info-row.align-top {
    flex-direction: column;
}
.label {
    color: #666;
    min-width: 150px;
}
.value {
    color: #333;
    text-align: right;
}
.value.phone {
    color: #999;
    text-decoration: none;
}
.value.address {
    text-align: left;
    margin-top: 4px;
    color: #888;
    line-height: 1.4;
    text-decoration: none;
}

@media (max-width: 360px) {
    .brand-info h1 { font-size: 0.9rem; }
    .label { font-size: 0.8rem; }
}