* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Segoe UI', sans-serif;
    height: 100%;
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    background-color: rgba(0, 0, 0, 0.6); /* keep your original transparency */
    z-index: 1000;
    width: 100%;
    color: white;
    backdrop-filter: blur(6px); /* optional: modern frosted glass effect */
}


.logo {
    font-size: 28px;
    font-weight: bold;
    color: #ff4500;
}

.nav-links a, .nav-right a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.cart {
    margin-left: 15px;
}

.cart-count {
    background: red;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 12px;
    vertical-align: super;
}

.hero-section {
  min-height: 100vh;
  flex-direction: row;
  flex-wrap: wrap;
    background: linear-gradient(to bottom right, #00000075, #000000);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    position: relative;
    overflow: hidden;
    background-size: cover;
background-position: center;

}

.hero-overlay {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #222;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
    color: white;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    color: white;
}

.hero-right {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    max-width: 600px;
}

.glow-bg {
    position: absolute;
    width: 380px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 119, 12, 0.6) 0%, rgba(255,122,0,0.05) 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.hero-img {
    max-width: 420px;
    width:100% ;
    margin-top: 200px;
    padding-bottom: 20px;
    z-index: 1;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    
    flex-direction: column;
    min-height: auto;
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    gap: 20px;
  }

  .hero-overlay {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-text {
    margin-bottom: 0;
    padding: 0 10px;
    margin-top: 200px;
  }

  .hero-text h1 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .btn {
    font-size: 16px;
    margin-top: 10px;
    padding: 10px 22px;
  }

  .hero-right {
    display: flex;
    justify-content: center; /* ✅ Center the image */
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-img {
    width: 90%;
    max-width: 300px;
    margin-top: 0;
    margin-bottom: 20px;
    transform: none; /* ✅ Remove offset */
}
desc
  .glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255,122,0,0.6) 0%, rgba(255,122,0,0.1) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
  } 
}
.btn {
    padding: 12px 25px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #e03e00;
}

/* === Admin Sidebar === */
.sidebar {
    width: 240px;
    background: #000000;
    height: 100vh; /* Full height of the viewport */
    padding-top: 20px;
    position: fixed;
    height: 100%;
    overflow-y: auto;           /* Enable vertical scroll */
    scrollbar-width: thin;      /* Firefox */
    scrollbar-color: #444 #111; 
    
}

.sidebar h2 {
    color: #ff4500;
    text-align: center;
    margin-bottom: 30px;
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: 0.3s;
    font-size: 15px;
}

.sidebar a i {
    width: 20px;
}

.sidebar a:hover {
    background: #1a1a1a;
    border-left: 4px solid #ff4500;
}

/* === Admin Topbar === */
.topbar {
    background: #1c1c1c;
    padding: 20px;
    padding-left: 260px;
    font-size: 18px;
    color: white;
}

/* === Admin Content Area === */
.content {
    margin-left: 240px;
    padding: 30px;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.2);
}

.card h3 {
    font-size: 14px;
    color: #aaa;
}

.card p {
    font-size: 26px;
    color: #ff4500;
    margin-top: 5px;
}
/* Admin-specific layout override */
.admin-body {
    background: white;
    color: white;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Ensure content panel isn't solid black */
.admin-body .content {
    background-color: white;
    padding: 30px;
    min-height: 100vh;
}

/* Keep sidebar solid black */
.admin-body .sidebar {
    background: #000000;
}
.admin-main {
  margin-left: 220px; /* Matches sidebar width */
  padding: 30px;
  background: #f5f5f5;
  min-height: 100vh;
  box-sizing: border-box;
}

.back-button {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 999;
}

.back-button button {
    background-color: #ff4500;
    color: white;
    border: none;
    padding: 10px 18px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-button button:hover {
    background-color: #e03e00;
}
/* Sidebar Styling */
.sidebar {
    width: 240px;
    background: #000;
    padding-top: 20px;
    position: fixed;
    height: 100vh;
    overflow-y: auto; /* Enables vertical scroll */
    top: 0;
    left: 0;
}

.sidebar h2 {
    color: #ff4500;
    text-align: center;
    margin-bottom: 30px;
}

.sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: 0.3s;
    font-size: 15px;
}

.sidebar a:hover {
    background-color: #1a1a1a;
    border-left: 4px solid #ff4500;
}

.sidebar a:visited {
    color: white;
}

.sidebar a:active {
    color: white;
}
.product-table {
    width: 80%;
    border-collapse: collapse;
    margin-top: 50px;
    margin-left: 250px;
    margin-right: 3px;
    margin-bottom: 30px;
    background: #1c1c1c;
    color: white;
}

.product-table th,
.product-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #333;
    font-size: 14px;
}

.product-table th {
    background-color: #181818;
    color: #ff4500;
    font-weight: bold;
}

.product-img {
    width: 40px;
    height: auto;
    border-radius: 4px;
}

.btn {
    padding: 8px 14px;
    background: #ff4500;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
}

.btn.delete {
    background: #dc3545;
    margin-left: 6px;
}

.btn:hover {
    opacity: 0.9;
}
.top-bar-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.add-btn {
    background-color: #ff4500;
    color: white;
    padding: 12px 20px;
    margin-top: 12px;
    margin-right: 12px;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    position:right;
}

.add-btn:hover {
    background-color: #e03e00;
    text-decoration: none;
}
.form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #1c1c1c;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(255, 69, 0, 0.1);
    color: white;
    margin-right: 220px;
}

.form-container h2 {
    margin-bottom: 20px;
    color: #ff4500;
}

.form-container input,
.form-container textarea,
.form-container select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
}

.form-container textarea {
    height: 100px;
    resize: vertical;
}

.form-container .btn {
    background-color: #ff4500;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.form-container .btn:hover {
    background-color: #e03e00;
}

.success {
    color: lime;
    text-align: center;
}

.error {
    color: red;
    text-align: center;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start;
    margin-top: 30px;
}

.product-card {
    background: #1c1c1c;
    color: white;
    padding: 15px;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(255, 69, 0, 0.15);
    text-align: center;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: scale(1.03);
}

.product-card img {
    width: 100%;
    height: 150px;         /* limit height */
    object-fit: cover;     /* crop nicely */
    border-radius: 6px;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #ff4500;
}

.product-card p {
    font-size: 14px;
    margin-bottom: 0;
}
.product-listing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
}

.product-tile {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  width: 180px; /* ✅ consistent width */
  height: 300px; /* ✅ consistent height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}


.product-tile:hover {
    transform: translateY(-5px);
}

.product-tile img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 10px;
}


.product-tile h4 {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.product-tile p {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    margin: 0;
}
.product-detail {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background: #1c1c1c;
    color: white;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(255, 69, 0, 0.1);
}

.product-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.product-info {
    flex: 1;
}

.product-info h2 {
    color: #ff4500;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
    color: lime;
}

.product-info .desc {
    margin: 20px 0;
    line-height: 1.6;
}

.product-info input[type="number"] {
    padding: 10px;
    width: 80px;
    margin-right: 10px;
    border-radius: 5px;
    border: none;
}

.product-info .btn {
    background-color: #ff4500;
    padding: 12px 20px;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.product-info .btn:hover {
    background-color: #e03e00;
}
.item-page-container {
    padding-top: 180px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 180px;
    display: flex;
    justify-content: center;
}

.item-card {
    display: flex;
    gap: 40px;
    background: #1c1c1cd8;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 14px rgba(255, 69, 0, 0.1);
    color: white;
}

.item-image img {
    width: 280px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-details h2 {
    color: #ff4500;
    margin-bottom: 10px;
    font-size: 24px;
}

.item-details .price {
    font-size: 22px;
    color: lime;
    font-weight: bold;
    margin: 10px 0;
}

.item-details .category {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
}

.item-details .desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #868480;
}

.item-details input[type="number"] {
    padding: 10px;
    width: 80px;
    margin-right: 10px;
    border-radius: 6px;
    border: none;
}

.item-details .btn {
    background-color: #ff4500;
    padding: 12px 20px;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.item-details .btn:hover {
    background-color: #e03e00;
}
.item-details .sku {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 10px;
}
.category-search {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    margin-top: 50px;
    margin-left: 260px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    margin-bottom: 20px;
    background: #2a2a2a;
    color: white;
    outline: none;
}
.category-search::placeholder {
    color: #999;
}

.box {
    width:50px;
    margin-top: 200px;
    margin-left: 500px;
}
.confirm-wrapper {
    display: flex;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 200px;
    justify-content: center;
    align-items: center;
    height: 85vh;
    background-color: white;
    color: white;
}

.confirm-box {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.confirm-box h2 {
    margin-bottom: 20px;
    color: #ff4500;
}

.confirm-box .btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.delete-btn {
    background-color: #ff4500;
    color: white;
}

.delete-btn:hover {
    background-color: #cc3700;
}

.cancel-btn {
    background-color: #555;
    color: white;
}

.cancel-btn:hover {
    background-color: #777;
}
.product-search {
    width: 100%;
    max-width: 400px;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
    border: none;
    margin-top: 200px;
    margin-left: 200px;
    display: block;
    background: #2a2a2a;
    color: white;
}

.product-search::placeholder {
    color: #aaa;
}
.category-menu {
    margin: 30px 0;
    padding: 20px;
    background: #1c1c1c;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.1);
}

.category-menu h3 {
    color: #ff4500;
    margin-bottom: 10px;
}

.category-menu ul {
    list-style: none;
    padding-left: 10px;
}

.category-menu li {
    margin-bottom: 6px;
}

.category-menu li strong {
    color: #ffffff;
    display: block;
    margin-top: 10px;
}

.category-menu a {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
}

.category-menu a:hover {
    color: #ff4500;
}
.store-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px 20px;
}

.category-sidebar {
    width: 250px;
    background: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
    color: white;
    height: fit-content;
}

.category-sidebar h3 {
    margin-bottom: 15px;
    color: #ff4500;
    font-size: 18px;
}

.category-tree {
    list-style: none;
    padding-left: 0;
}

.category-tree .parent-item {
    margin-bottom: 10px;
    position: relative;
}

.category-tree .parent-item span {
    display: block;
    font-weight: bold;
    background: #2a2a2a;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.subcategory-list {
    display: none;
    margin-top: 5px;
    padding-left: 15px;
}

.parent-item:hover .subcategory-list {
    display: block;
}

.subcategory-list li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 6px 10px;
    border-radius: 5px;
}

.subcategory-list li a:hover {
    background: #ff4500;
    color: white;
}

.product-display {
    flex: 1;
}
.tab-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #1c1c1c;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.tab-container button {
  background: transparent;
  border: 2px solid #ff4500;
  color: #ff4500;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.tab-container button.active,
.tab-container button:hover {
  background: #ff4500;
  color: white;
}

.parcel-card {
  display: none;
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: #1c1c1cdc;
  border-radius: 10px;
  color: white;
  box-shadow: 0 0 10px rgba(255, 69, 0, 0.2);
  gap: 40px;
  align-items: center;
}

.parcel-card.active {
  display: flex;
}

.parcel-card img {
  width: 220px;
  height: auto;
  border-radius: 10px;
}

.parcel-info {
  flex: 1;
  font-size: 16px;
}

.parcel-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ff4500;
}

.parcel-info input[type="number"] {
  width: 60px;
  padding: 6px;
  border-radius: 6px;
  border: none;
  margin-left: 10px;
}

.btn-orange {
  background-color: #ff4500;
  border: none;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.btn-orange:hover {
  background-color: #e03e00;
}
.delivery-header {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.delivery-header h2 {
  font-size: 26px;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.delivery-header p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.delivery-address-fields {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap; /* ensures side by side */
  max-width: 800px;
  margin: 0 auto;
}


.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  background: white;
  max-width: 350px;
  width: 100%;
}

.input-group input {
  border: none;
  padding: 12px 15px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.input-group button {
  background: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.input-group button i {
  color: #333;
  font-size: 16px;
}

.progress-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #c94b02;
}

.dot.blue {
  background: #ff5c1c;
}

.dot.lightblue {
  background: #fc8f00;
}

.dot.red {
  background: #ff6b6b;
}
.input-group-wrapper {
  flex: 1;
  max-width: 50%;
}

.suggestion-box {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  list-style: none;
  padding: 0;
  margin: 0;
}

.suggestion-box li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.suggestion-box li:hover {
  background-color: #f5f5f5;
}
.cart-count-badge {
    background: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
    position: absolute;
    top: -8px;
    right: -10px;
}
/* DROPPER dropdown: vertical menu on hover */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content-horizontal {
  display: none;  /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
  padding: 10px 0;
  border-radius: 8px;
  flex-direction: column; /* 🧍‍♂️ One below the other */
  gap: 5px;
  z-index: 999;
  min-width: 220px;
}

.dropdown:hover .dropdown-content-horizontal {
  display: flex;  /* Show on hover */
}

.dropdown-content-horizontal a {
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  text-align: left; /* Optional: can change to center if you want */
  width: 100%; /* full width for vertical alignment */
}

.dropdown-content-horizontal a:hover {
  background-color: #ff4500;
}

.cart-preview-wrapper {
  position: relative;
}

.cart-hover-preview {
  display: none;
  position: absolute;
  right: 0;
  top: 35px;
  width: 320px;
  background: white;
  color: #000;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  font-family: 'Segoe UI', sans-serif;
}


.cart-preview-wrapper:hover .cart-hover-preview {
  display: block;
}

.cart-hover-preview ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
}

.cart-hover-preview li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.cart-hover-preview img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-preview-total {
  text-align: right;
  margin-top: 16px;
  font-size: 16px;
}
.cart-preview-total .btn {
  background-color: #ff4500;
  color: white;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}
 /* Floating Cart Card */
.floating-cart-wrapper {
    
    background: #fff;
    max-width: 700px;
    margin-top: 0px;
    margin-bottom: 100px;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.floating-cart-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.floating-cart-wrapper th,
.floating-cart-wrapper td {
    padding: 16px 12px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.floating-cart-wrapper th {
    background-color: #f8f8f8;
    color: #333;
    font-weight: 600;
}

.floating-cart-wrapper img {
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.floating-cart-wrapper h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #222;
}

.floating-cart-wrapper h3 {
    font-size: 20px;
    margin-top: 20px;
    color: #111;
}

.floating-cart-wrapper input[type="number"] {
    width: 60px;
    padding: 6px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.floating-cart-wrapper .btn {
    padding: 10px 18px;
    background-color: #ff4500;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    border: none;
}

.floating-cart-wrapper .btn:hover {
    background-color: #e03e00;
}

.floating-cart-wrapper .btn.delete {
    background-color: #dc3545;
}



.cart-line-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.cart-line-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-total {
    text-align: right;
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}
.toast-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #333;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease-in-out;
}

.toast-popup.show {
  opacity: 1;
  pointer-events: auto;
}

.login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.login-modal.active {
  display: flex;
}

.login-box {
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-family: sans-serif;
}

.login-box h2 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #222;
}

.login-box input[type="text"],
.login-box input[type="email"],
.login-box input[type="password"],
.login-box input[name="name"],
.login-box input[name="phone"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  background: white;
  color: #333;
  outline: none;
  transition: border 0.3s, box-shadow 0.3s;
}

.login-box input[type="text"]:focus,
.login-box input[type="email"]:focus,
.login-box input[type="password"]:focus,
.login-box input[name="name"]:focus,
.login-box input[name="phone"]:focus {
  border-color: #ff4500;
  box-shadow: 0 0 5px rgba(255, 69, 0, 0.5);
}
.password-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.password-wrapper input {
  width: 100%;
  padding: 12px;
  padding-right: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.eye-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #555;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.eye-icon:hover {
  opacity: 1;
}


.login-box button {
  width: 100%;
  background: #ff4500;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  margin-bottom: 20px;
}

.login-box .social-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.login-box .social-btns button {
  flex: 1;
  padding: 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: white;
  cursor: pointer;
}

.login-box .social-btns img {
  width: 14px;
  vertical-align: middle;
  margin-right: 6px;
}

.login-box .footer-text {
  text-align: center;
  font-size: 13px;
  margin-top: 15px;
}

/* Autofill Fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #333 !important;
  background-color: white !important;
}




/* Mobile navigation styling */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0; left: 0;
    width: 75%; height: 100%;
    background: #333;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-links {
    list-style: none;
    margin: 0; padding: 60px 20px;
  }

  .nav-links li {
    margin-bottom: 20px;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
  }

  .dropdown-content-horizontal {
    display: none;
    padding-left: 10px;
  }

  .dropdown.open > .dropdown-content-horizontal {
    display: block;
  }
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.order-table thead {
  background: #ff4500;
  color: #fff;
  font-size: 15px;
}
.order-table th, .order-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.order-table tr:hover {
  background: #f9f9f9;
}
.order-table form {
  display: flex;
  gap: 6px;
  align-items: center;
}
.order-table select {
  padding: 6px 8px;
  font-size: 13px;
}
.order-table button {
  padding: 6px 10px;
  background: #28a745;
  border: none;
  color: white;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}
.order-table button:hover {
  background: #1e7e34;
}
.status-dropdown {
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
}

.status-dropdown option[value="Pending"] { background: #f0ad4e; color: black; }
.status-dropdown option[value="Confirmed"] { background: #5bc0de; color: black; }
.status-dropdown option[value="Completed"] { background: #5cb85c; color: white; }

.bookings-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.booking-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.booking-card:hover {
  transform: translateY(-4px);
}

.booking-card h3 {
  margin-top: 0;
  color: #ff4500;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 13px;
  color: white;
}

.status-badge.Pending { background: #f0ad4e; }
.status-badge.Confirmed { background: #5bc0de; }
.status-badge.Completed { background: #5cb85c; }

.flash-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 14px 22px;
  padding-right: 40px;
  font-size: 15px;
  color: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  animation: fadein 0.4s ease, fadeout 0.4s ease 3.6s;
}

.flash-message .flash-close {
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 8px;
  right: 14px;
  cursor: pointer;
}

.flash-message.success { background-color: #4CAF50; }
.flash-message.error { background-color: #f44336; }
.flash-message.warning { background-color: #ff9800; }
.flash-message.info { background-color: #2196F3; }

@keyframes fadein {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeout {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}



