@font-face {
    font-family: "Minecraftia";
    src: url("../font/yekan/ttf/iranyekanwebblackfanum.ttf");
}

/* General Page Styling */
body {
    font-family: 'Minecraftia', sans-serif;
    background-color: #1a1a1a;
    color: #00ffee;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Cart Container */
.cart-container, .info-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #111;
    border: 4px solid #00ffee;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5);
    border-radius: 10px;
}

h1, h2 {
    font-size: 24px;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background: #222;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: 2px solid #00ffee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

/* Buttons */
button, .back-btn {
    background: linear-gradient(135deg, #007BFF, #003d80);
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 10px 15px;
    margin: 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.5);
}

button:hover, .back-btn:hover {
    background: linear-gradient(135deg, #0056b3, #001f4d);
    transform: scale(1.05);
}

.remove-item {
    background: #ff4c4c;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.remove-item:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Input Fields */
input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 2px solid #00ffee;
    background: #222;
    color: white;
}
