* {
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background: #e5d7b2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* خلفية */
#sandwich-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.sandwich {
    position: absolute;
    width: 50px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    50% { transform: translateY(-20px); }
}

/* الصفحة الرئيسية */
.card {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 400px;
    background: #e2d09d;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
}

.profile {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: #000;
    margin-bottom: 15px;
}

h1 { color: #643a02; 
    font-size: 22px;   /* كان كبير – الآن أنسب */
    margin-bottom: 8px;
}
p { color: #92adbe}

.link {
    display: block;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.link {
    display: block;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* عند المرور بالماوس */
.link:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
}

/* عند الضغط */
.link:active {
    transform: scale(0.95);
}


.menu {
    background: linear-gradient(135deg, #000, #2c2c2c);
    border: 2px solid #fff;
}

.tiktok { background: linear-gradient(45deg, #00f2ea, #ff0050); }
.instagram { background: linear-gradient(45deg, #fd1d1d, #e1306c, #fcb045); }
/* زر قيمنا بخلفية ألوان جوجل */
.rate {
    background: linear-gradient(
        90deg,
        #4285F4,
        #EA4335,
        #FBBC05,
        #34A853
    );
    color: #fff;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* النجوم الذهبية */
.rate .stars i {
    color: gold;
    font-size: 14px;
}

/* تحسين بسيط عند المرور */
.rate:hover {
    transform: scale(1.06);
    box-shadow: 0 0 18px rgba(0,0,0,0.35);
}


/* صفحة المنيو */
.menu-page {
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, #d38f37, #644009);
    overflow-y: auto;
}

.back-top {
    position: fixed;
    top: 15px;
    right: 15px;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}

.menu-title {
    text-align: center;
    color: #fff;
    margin: 50px 0 20px;
}

/* التبويبات */
.tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 18px;
    border-radius: 20px;
    border: none;
    background: #fff;
    font-weight: bold;
    cursor: pointer;
}

.tab.active {
    background: #000;
    color: #fff;
}

/* المنتجات */
.items {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 10px;
}


.item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.info {
    padding: 10px;
    text-align: center;
}

.price {
    font-weight: bold;
    color: #128C7E;
}

.cal {
    font-size: 13px;
    color: #555;
}
