/* ---------- Global ---------- */
body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* ---------- Background ---------- */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background.jpg') no-repeat center center/cover;
    z-index: -1;
    filter: brightness(0.6);
}

/* ---------- Container ---------- */
.container {
    max-width: 1000px;
    margin: 80px auto 50px;
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ---------- Logo ---------- */
.logo img {
    width: 200px;
    margin-bottom: 20px;
    background-color: transparent;
    mix-blend-mode: multiply;
}

/* ---------- Headings ---------- */
h1, h2 {
    text-align: center;
    color: #111;
}

/* ---------- Inputs ---------- */
input[type="text"],
input[type="password"] {
    width: 80%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 16px;
}

/* ---------- Buttons ---------- */
button {
    padding: 12px 25px;
    margin-top: 15px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background: #ff4c00;
}

/* ---------- Error Messages ---------- */
.error {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}

/* ---------- Tagline ---------- */
.tagline {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-top: 15px;
}

/* ---------- Shop Products ---------- */
.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    width: 220px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.product img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.product h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.product p {
    font-size: 16px;
    margin-bottom: 10px;
}

.product input[type="checkbox"] {
    margin-top: 5px;
}

/* ---------- Checkout Table ---------- */
table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

table th {
    background: #111;
    color: #fff;
}

a {
    text-decoration: none;
    color: #111;
    font-weight: bold;
}

a:hover {
    color: #ff4c00;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid red;
}

.brand {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.nav-right {
    position: relative;
padding: 0px 20px 0px 0px;
}

.dropbtn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #1c1c1c;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.4);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a,
.dropdown-content p {
    color: white;
    padding: 12px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: red;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.balance {
    background: #111;
    font-weight: bold;
    border-bottom: 1px solid #333;
}

/* Prevent content hiding behind fixed navbar */
body {
    padding-top: 80px;
}
