:root {
  --black: #1c1c1c;
  --gold: #FFD700;
  --white: #ffffff;
  --gray: #2c2c2c;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: black;
  height: 100%;
  overflow-x: hidden;
  /* hides horizontal scroll only */
  overflow-y: auto;
  /* allows vertical scrolling */
  margin-top: 130px;
}

/* General Reset and Box Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-top {
  display: flex;
  flex-direction: column;
}

.logo-container {
  order: 4;
  /* default: logo first */
}

/* Hide by default */
.free-delivery-banner {
  display: none;
}

/* Show only on mobile (below 768px) */
@media (max-width: 768px) {
  .free-delivery-banner {
    display: block;
    width: 100%;
    background-color: #000;
    color: #ffd700;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    border-top: 1px solid #ffd700;
    border-bottom: 1px solid #ffd700;
    box-sizing: border-box;
  }
}

/* --- Header Layout --- */
header {
  background-color: black;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 999;
}

.header {
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Sticky Header */

header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  /* or any solid color */
  z-index: 1000;

}

.nav-left {
  display: flex;
  align-items: center;
}

.menu-toggle {
  font-size: 24px;
  color: gold;
  cursor: pointer;
  margin-right: 20px;
}

.logo img {
  height: 80px;
  /* Adjust logo size */
  width: auto;
}

.logo-wrapper {
  margin-bottom: 0;
  padding: 0;
}

.logo-wrapper img {
  height: 70px;
  width: auto;
  display: block;
  /* removes bottom whitespace from inline elements */
  margin-bottom: 0;
}

.main-nav {
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  /* Add spacing below the nav */
}

.main-nav a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin: 0 12px;
}

.main-nav a:hover {
  text-decoration: none;
  text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
}

.nav-divider {
  width: 100%;
  background-color: black;
  border: none;
  border-top: 2px solid gold;
  margin: -55px 0 0 0;
}

/* Hide on small screens (mobile) */
@media (max-width: 768px) {
  .nav-divider {
    display: none;
    margin: 0;
    padding: 0;
  }
}

/* Icons on the Right (Search, Login, Register, Cart) */

.icon {
  position: absolute;
  top: 60px;
  right: 30px;
}

.icon a {
  color: gold;
  font-size: 15px;
  margin-left: 15px;
}

.icon a:hover {
  color: #ffd700;
}

#chat-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(145deg, #f1c40f, #bfa100);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background 0.3s ease;
}

#chat-toggle-btn:hover {
  background: linear-gradient(145deg, #e6b800, #a38700);
}

/* Lock scroll */
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #111;
  color: gold;
  padding: 20px;
  transition: right 0.3s ease;
  z-index: 1002;
  box-shadow: -4px 0 10px rgba(255, 215, 0, 0.5);
  overflow-y: auto;
}

#cart-items {
  max-height: 60vh;     /* cart items area limited */
  overflow-y: auto;     /* scroll inside items section */
  margin-bottom: 15px;
}

.cart-sidebar.active {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar button {
  background: gold;
  color: black;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  margin-top: 20px;
}

/* Initially hide the search container */
.search-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111;
  padding: 20px 30px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  z-index: 9999;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-container input[type="text"] {
  flex: 1;
  padding: 12px 20px;
  background-color: #000;
  color: gold;
  border: 2px solid gold;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: 0.3s;
}

.search-container input:focus {
  border-color: #f1c40f;
  background-color: #222;
}

.search-container button[type="submit"] {
  background-color: gold;
  color: black;
  border: none;
  padding: 12px 16px;
  border-radius: 30px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.search-container form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 800px;
  margin: auto;
}

.search-container input {
  width: 80%;
  padding: 12px;
  background-color: #000;
  color: gold;
  border: 2px solid gold;
  border-radius: 30px;
  font-size: 16px;
}

.search-container button {
  background-color: transparent;
  border: none;
  color: gold;
  cursor: pointer;
  font-size: 22px;
  padding: 10px;
  margin-left: 10px;
}

.search-container button:hover {
  background-color: #ffd700;
}

#close-search {
  position: absolute;
  right: 4px;
  top: 4px;
  background: none;
  border: none;
  color: gold;
  font-size: 24px;
  cursor: pointer;
}

#close-search:hover {
  color: white;
}

@media (max-width: 600px) {
  #close-search {
    display: block !important;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #111;
  color: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu #mobileNavLinks li {
  margin: 20px 0;
}

.mobile-menu a {
  color: gold;
  text-decoration: none;
  font-size: 18px;
  display: block;
}

.mobile-menu a:hover {
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
}

/* Close Button for Mobile Menu */
.mobile-menu .close-btn {
  font-size: 30px;
  color: gold;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  /* Close button aligned to the right */
  border: none;
  background: none;
  /* Remove any background or border */
}

.mobile-menu .close-btn:hover {
  color: #ffd700;
}

/* ------------------- Responsive Styles ------------------- */
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    position: relative;
    padding: 15px;
  }

  .logo img {
    height: 60px;
  }

  @media (max-width: 768px) {

    /* Hide the login and register icons on mobile */
    .icon a:nth-child(2),
    /* Login icon */
    .icon a:nth-child(3) {
      /* Register icon */
      display: none;
    }

    @media (max-width: 768px) {
      .icon {
        display: flex;
        justify-content: flex-end;
        /* Align icons to the right */
        position: absolute;
        top: 25px;
        /* Move the icons lower */
        right: 20px;
        /* Align to the right side */
        width: auto;
        z-index: 1000;
      }

      .icon a {
        font-size: 18px;
        /* Adjusted icon size for better mobile view */
        margin-left: 10px;
        /* Adjusted spacing between icons */
        color: gold;
        display: inline-block;
        transition: color 0.3s ease;
      }

      .icon a:hover {
        color: #ffd700;
      }

      header {
        padding: 10px 20px;
        /* Adjust padding to reduce unnecessary space */
      }
    }
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  width: 250px;
  /* or your preferred width */
  height: 100vh;
  /* subtract top offset to fit remaining height */
  background-color: #000;
  /* just an example */
  overflow-y: auto;
  /* optional: adds scroll inside the sidebar if content overflows */
  z-index: 1000;
  /* ensure it stays above other content if needed */
  transition: transform 0.3s ease-in-out;
}

.sidebar .logo {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  top: 60px;
  color: gold;
  margin-bottom: 10px;
  font-family: 'Georgia', serif;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: black;
}

.sidebar ul li {
  margin: 30px 0;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  padding: 12px 25px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.sidebar ul li a:hover {
  background-color: gold;
  color: #000;
  border-left: 5px solid #fff;
}

.sidebar ul li a i {
  margin-right: 15px;
  font-size: 18px;
  min-width: 20px;
}

.sidebar .footer {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  padding: 15px;
  margin-top: auto;
}

/* Mobile: Hide sidebar by default, slide in when active */
@media (max-width: 768px) {
  .sidebar {
    width: 80%;
    max-width: 300px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }
}

/* Content */
.main-content {
  margin-left: 250px;
  padding: 30px;
  flex: 1;
  transition: margin-left 0.3s ease;
}

/* Toggle Button */
.menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: gold;
  cursor: pointer;
  z-index: 1100;
}

@media (max-width: 768px) {
  .menu-toggle {
    top: 20px !important;
    /* pull it closer to the top */
    left: 15px !important;
    /* optional: adjust horizontally */
    position: absolute !important;
    /* make sure it's not being pushed by flexbox */
    z-index: 1100;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    left: 0;
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .menu-toggle {
    display: block;
  }
}

.close-btn {
  position: absolute;
  top: 0;
  right: 5px;
  background: none;
  border: none;
  color: gold;
  font-size: 24px;
  cursor: pointer;
  z-index: 1101;
  display: none;
  /* Hidden by default */
}

.sidebar.active .close-btn {
  display: block;
}

/* This will hide the bars icon when the sidebar is active */
.sidebar.active+.menu-toggle {
  display: none !important;
}

@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
}

/* Hide sidebar by default on desktop */
.sidebar {
  display: none;
}

/* Show sidebar in mobile view only */
@media (max-width: 768px) {
  .sidebar {
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }
}

.main {
  background-color: black;
  padding: 20px;
  text-align: center;
  margin-bottom: 2px;
}

.main a {
  padding-left: 30px;
  display: inline;
  color: gold !important;
  font-weight: bold;
}

.main a:hover {
  color: gold !important;
  text-shadow: 0px 0px 8px gold !important;
}

.gold-line {
  height: 2px;
  background-color: #ffd700;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Wrapper that holds everything */
.menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  padding: 20px 10px;
  overflow: hidden;
  position: relative;
}

/* Wrap scrollable area only */
.menu-scroll-area {
  overflow: hidden;
  flex: 1;
  position: relative;
}

/* Scrollable container */
.menu-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  max-width: 100%;
}

.menu-container::-webkit-scrollbar {
  display: none;
}

.menu-container {
  -ms-overflow-style: none;
}

/* Category links */
.menu-items {
  display: inline-flex;
  gap: 30px;
  padding: 10px 0;
}

.menu-items a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu-items a:hover {
  color: gold;
  text-shadow: 0 0 8px gold;
}

/* Arrows */
/* Arrows (Font Awesome icons) */
.arrow {
  color: gold;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

/* Hover effect for arrows/icons */
.arrow:hover {
  color: gold;
  transform: scale(1.1);
  /* Slight zoom effect on hover */
}

.prev {
  margin-right: 10px;
}

.next {
  margin-left: 10px;
}

/* Responsive font for smaller screens */
@media (max-width: 768px) {
  .menu-items a {
    font-size: 14px;
  }

  .arrow {
    font-size: 20px;
  }
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  /* ensures the full image is visible */
  transition: 0.1s all ease;
  background-color: #000;
  /* optional: fill any empty space */
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 300px;
    /* Smaller height for mobile if 50vh is too much */
  }
}

.menu-category {
  color: gold;
  font-size: 1.8em;
  font-family: 'Cinzel', serif;
  /* Elegant, unique font */
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px;
}

.item h4 {
  font-size: 1.3em;
  color: gold;
  margin: 10px 0;
  font-weight: bold;
}

.item p b {
  font-size: 1.1em;
  color: #FFD700;
}

.item {
  width: 300px;
  background-color: #121212;
  border: 1px solid gold;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item button {
  background-color: rgb(156, 56, 19);
  color: gold;
  border: none;
  padding: 10px 20px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.item button:hover {
  background-color: gold;
  color: rgb(156, 56, 19);
}

.item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  border-color: #FFD700;
}

@media (max-width: 600px) {
  .items {
    padding: 10px;
    gap: 10px;
  }

  .item {
    flex: 0 0 48%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    background-color: #121212;
    border: 1px solid gold;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    
  }

  .item img {
    width: 100%;
    height: 180px;
    /* Slightly reduce image height */
    object-fit: cover;
    flex-shrink: 0;
  }

  .item h3,
  .item p {
    margin: 6px 12px 4px;
    /* Further reduce margins */
    font-size: 0.9em;
    /* Slightly smaller font */
  }

  .item button {
    padding: 5px 8px;
    /* Reduced padding */
    font-size: 0.8em;
    /* Smaller font for button */
    margin: 6px auto 10px;
  }
}

.full-gold-line {
  width: 100%;
  height: 4px;
  background-color: gold;
  margin: 50px 0;
  /* Adjust space as needed */
}

.reservation-section {
  background-color: #000;
  /* Black background */
  color: #ffd700;
  /* Gold heading */
  padding: 40px;
  text-align: center;
}

.reservation-form {
  display: grid;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

.reservation-form input,
.reservation-form button {
  padding: 10px;
  border: none;
  font-size: 16px;
  border-radius: 5px;
}

.reservation-form input {
  background-color: #333;
  /* Dark grey */
  color: #fff;
}

.reservation-form input::placeholder {
  color: #ccc;
}

.reservation-form button {
  background-color: #ffd700;
  /* Gold button */
  color: #000;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reservation-form button:hover {
  background-color: #c5a200;
  /* Darker gold on hover */
}

.feedback-section {
  background-color: #fff;
  /* White background */
  color: #333 !important;
  /* Dark text for readability */
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid gold;
}

.feedback-heading {
  font-size: 36px;
  font-weight: bold;
  color: gold;
  margin-bottom: 30px;
  letter-spacing: 1px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.feedback-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feedback-form input,
.feedback-form textarea {
  padding: 15px;
  background-color: #f9f9f9;
  /* Light background for input */
  border: 1px solid #ccc;
  /* Lighter border for white theme */
  border-radius: 8px;
  color: #333;
  /* Darker text for readability */
  font-size: 16px;
  resize: none;
  transition: border-color 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: gold;
}

.feedback-form button {
  background-color: gold;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.feedback-form button:hover {
  background-color: #ffdf00;
  transform: scale(1.05);
}

@media (max-width: 600px) {

  .feedback-form input,
  .feedback-form textarea {
    font-size: 14px;
  }

  .feedback-heading {
    font-size: 28px;
  }
}

/* Review Section Styling */
.review-section {
  background-color: #111;
  /* Dark black background for the section */
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 50px;
  /* Space before footer */
  border-top: 5px solid gold;
  /* Gold accent at the top */
}

.review-heading {
  font-size: 36px;
  font-weight: bold;
  color: gold;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Review Cards Container */
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns layout */
  gap: 30px;
  justify-items: center;
  padding: 0 20px;
}

/* Review Card Styling */
.review-card {
  background-color: #2b2b2b;
  /* Darker grey background for cards */
  padding: 25px;
  border-radius: 15px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  /* Subtle shadow effect */
  color: #ccc;
  /* Light grey text color */
}

.review-card p {
  font-size: 16px;
  line-height: 1.6;
}

.review-card span {
  font-size: 18px;
  font-weight: bold;
  color: gold;
}

.review-card:hover {
  background-color: gold;
  /* Gold background on hover */
  color: black;
  /* Change text to black */
  transform: translateY(-10px);
  /* Slight lift effect */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
  /* Enhanced shadow on hover */
}

.review-card:hover p {
  color: black;
  /* Change review text to black */
}

.review-card:hover span {
  color: #fff;
  /* Make name white when hovered */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .review-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }

  /* Adjust grid layout for smaller screens */
  .review-cards {
    grid-template-columns: 1fr 1fr;
    /* Two columns for smaller screens */
    gap: 20px;
  }

  .review-card {
    width: 100%;
    padding: 20px;
  }
}

@media (max-width: 480px) {

  /* Single column layout for very small screens */
  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-heading {
    font-size: 28px;
  }
}

.hidden-review {
  display: none;
}

#toggle-reviews-btn {
  background: linear-gradient(135deg, #FFD700, #B8860B);
  /* bright gold to dark goldenrod */
  color: #1a1a1a;
  /* dark text for contrast */
  border: 1px solid #8B7500;
  /* dark gold border */
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  box-shadow:
    0 4px 8px rgba(184, 134, 11, 0.6),
    inset 0 -2px 5px rgba(255, 255, 224, 0.6);
  transition: background 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin: 20px auto;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

#toggle-reviews-btn:hover {
  background: linear-gradient(135deg, #FFC300, #996515);
  /* lighter gold on hover */
  color: #000000;
  border-color: #6B5500;
  box-shadow:
    0 6px 12px rgba(184, 134, 11, 0.9),
    inset 0 -3px 7px rgba(255, 255, 224, 0.8);
}

#toggle-reviews-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(255, 215, 0, 0.7);
}

@media (max-width: 480px) {
  .review-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px;
  }

  .review-card {
    flex: 0 0 auto;
    width: 80%;
    scroll-snap-align: center;
  }
}


/* Feedback Section Styling */

/* Footer Styling */
/* Footer Styling */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  /* Removes top margin, keeps bottom margin */
}

.footer-card {
  flex-grow: 1;
  flex-basis: 22%;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  background-color: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-card h3 {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 30px;
  color: gold;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  /* Adding text-shadow transition */
}

.footer-card h3:hover {
  color: #ffd700;
  /* Stronger gold color on hover */
  text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
  /* Glow effect */
}

.footer-card p,
.footer-card ul {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  margin: 0;
}

.footer-card ul {
  list-style: none;
  padding: 0;
}

.footer-card a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  /* Added transform transition for a smooth effect */
}

.footer-card a:hover {
  color: gold;
  /* Gold highlight */
  text-decoration: underline;
  transform: scale(1.1);
  /* Slight scaling effect on hover */
}

.footer-card ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-card:nth-child(2) {
  margin-left: 30px;
}

.follow-us ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}




.follow-us li {
  margin: 10px;
}

.follow-us a {
  font-size: 24px;
  color: gold;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.follow-us a:hover,
.follow-us a:focus {
  color: #ffd700;
  transform: scale(1.1);
  text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
  border-bottom: 2px solid #ffd700;
  /* Underline effect */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: gold;
  font-size: 14px;
}

@media (max-width: 600px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 10px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-card {
    flex: 0 0 45%;
    max-width: 45%;
    min-width: unset;
    padding: 12px;
    box-sizing: border-box;
    text-align: center;
  }

  .footer-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .footer-card p,
  .footer-card ul {
    font-size: 13px;
    line-height: 1.4;
  }

  .footer-card:nth-child(2) {
    margin-left: 0;
  }

  .follow-us ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 20px;
    text-align: center;
  }
}


.checkout-page {
  max-width: 800px;
  background-color: #111;
  padding: 40px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.checkout-page h1 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  text-align: center;
  color: #ffd700;
  margin-bottom: 30px;
}

.section {
  margin-bottom: 30px;
}

.section h2 {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 15px;
  border-bottom: 1px solid #ffd70033;
  padding-bottom: 5px;
}

.cart-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-items li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed #444;
}

.promo-code input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ffd700;
  background-color: #000;
  color: #ffd700;
  border-radius: 6px 0 0 6px;
}

.promo-code button {
  padding: 10px 16px;
  background-color: #ffd700;
  color: #000;
  border: none;
  border-radius: 0 6px 6px 0;
  font-weight: bold;
  cursor: pointer;
}

.promo-code button:hover {
  background-color: #e6c200;
}

.totals p {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin: 5px 0;
}

.payment-options {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.payment-options label {
  font-size: 15px;
}

.checkout-form [type="text"],
select {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px;
  border: 1px solid #ffd700;
  background-color: #000;
  color: #ffd700;
  border-radius: 6px;
}

.checkout-button {
  background-color: #ffd700;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.checkout-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.confirmation {
  display: none;
  text-align: center;
  color: #ffd700;
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
  background-color: #111;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.full-gold-line {
  height: 4px;
  background-color: #ffd700;
  margin: 40px 0 0;
}
/* ---------------------
   Header & Navigation
---------------------- */

.site-header {
  background-color: var(--black);
  color: var(--gold);
  padding: 15px 20px;
  position: relative;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
  text-decoration: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.site-nav li a {
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gold);
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    background-color: var(--black);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    z-index: 999;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 0;
  }

  .site-nav li {
    padding: 15px;
    border-bottom: 1px solid #333;
    text-align: center;
  }
}

/* ---------------------
   Main Profile Content
---------------------- */

.main-content2 {
  padding: 30px;
  color: var(--white);
  transition: margin-left 0.3s ease;
  min-height: 100vh;
}

/* Centered Headings */
.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2%;
}

/* Editable Fields */
.heading {
  font-size: 20px;
  font-weight: bolder;
  color: var(--gold);
  margin: 15px 0px 5px 0px;
}

.values {
  margin-left: 8%;
}

.editable-field {
  position: relative;
}

.edit-icon {
  cursor: pointer;
  margin-left: 10px;
}

/* Save Button */
.add-btn {
  color: black;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  background-color: var(--gold);
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.add-btn:hover {
  background-color: var(--black);
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* ---------------------
   Table Styling (Dark)
---------------------- */

.custom-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #111;
  box-shadow: 0 0 10px var(--gold);
  color: var(--white);
  margin-bottom: 40px;
}

.custom-table th {
  background-color: var(--gold);
  color: var(--black);
  padding: 10px;
  text-align: center;
}

.custom-table td {
  padding: 10px;
  border: 1px solid var(--gold);
}

.custom-table tr:nth-child(even) {
  background-color: #1c1c1c;
}

/* Responsive Table */
.table-responsive {
  overflow-x: auto;
}

/* ---------------------
   Popup Overlay & Box
---------------------- */

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-box {
  background-color: var(--black);
  padding: 30px 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 10px var(--gold);
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
}

.popup-box h2 {
  font-size: 22px;
  color: var(--white);
  text-align: center;
  margin-top: 0;
}

.popup-box input,
.popup-box textarea,
.popup-box select {
  width: 100%;
  padding: 10px;
  margin: 5px 0 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  background-color: #222;
  color: var(--white);
}

.popup-box select {
  background-color: var(--black);
  color: var(--gold);
}

/* Submit Button */
.popup-box button[type="submit"] {
  background-color: var(--gold);
  color: var(--black);
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.popup-box button:hover {
  background-color: var(--black);
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 22px;
  color: var(--white);
  cursor: pointer;
}

/* ---------------------
   Back to Home Sticky
---------------------- */

.back-home-sticky {
  position: sticky;
  top: 0;
  background-color: black;
  padding: 12px 20px 12px 80px;
  z-index: 1000;
  text-align: left;
}

.back-home-sticky a {
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.back-home-sticky a:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* ---------------------
   Animations
---------------------- */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}