@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;700&display=swap');

    
.menu-buttons {
      position: absolute;
      bottom: 20px; /* Adjust as needed */
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 15px;
      z-index: 1000;
      pointer-events: none; /* Let clicks pass through container */
    }

    .menu-button {
      pointer-events: auto; /* Enable clicks on buttons */
      background-color: #5a3c3d;
      color: #fff;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: normal;
      border-radius: 25px;
      cursor: pointer;
      box-shadow: 0px 4px 6px rgba(0,0,0,0.3);
      transition: transform 0.1s, background-color 0.2s;
      border: 2px solid #f1d384;
    }

    .menu-button:active {
      transform: scale(0.95);
    }
    
    .menu-button:hover {
      background-color: #e0c273;
    }

    .logo-container {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}

.logo-container img {
  max-width: 160px; /* Adjust as needed */
  height: auto;
  pointer-events: auto;
  filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 1));
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #000;
  font-family:
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 0;
}

body {
  background: url("../images/background.jpg");
  background-size: 200px 200px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.admin-body {
  align-items: unset !important;
  padding-top: 120px;
  padding-bottom: 50px;
  height: unset !important;
  background-attachment: fixed;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper {
  width: 90vw;
  height: 70vh;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background-color: #5a3c3d;
  overflow: hidden;
}

    .swiper-slide .image {
      width: 100%;
      flex: 1;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #382627;
      padding: 50px 0px;
    }

    .swiper-slide .rb {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 25px;
      height: 25px;
      background-color: #f1d384;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8em;
      font-weight: bold;
      color: #382627;
    }

    .swiper-slide .image img {
      width: 90%;
      height: auto;
      object-fit: contain;
      max-height: 100%;
      filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.5));
    }

    .swiper-slide .bottom {
      width: 100%;
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 20px;
      box-sizing: border-box;
    }

    .swiper-slide .info {
      width: 100%;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;
      background: rgba(255,255,255,0.1);
      padding: 20px;
      box-sizing: border-box;
      border-radius: 10px; /* added for better look */
            box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
      border: 5px solid rgba(255,255,255,0.05);
    }

    .swiper-slide .info h2 {
      margin-top: 0;
      font-size: 1.5em;
      border-bottom: 1px solid #f1d384;
      padding-bottom: 10px;
      margin-bottom: 10px;
      flex: 0 0 auto;
      line-height: 1;
    }

    .swiper-slide .info .description {
      font-size: 0.7em;
      font-weight: 300;
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swiper-slide .info .price {
      font-size: 1.8em;
      font-weight: bold;
      margin-top: 10px;
      flex: 0 0 auto;
      display: flex;
      align-items: baseline;
      justify-content: center;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }

    .swiper-slide .info .price span {
      font-size: 0.7em;
      color: #f1d384;
      display: inline-block;
      margin-left: 5px;
    }

.admin-section {
            background: #382627; /* Similar to slide info bg */
            border-radius: 18px;
            padding: 20px;
            margin-bottom: 40px;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            color: #fff;
        }

        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        th {
            background-color: rgba(0,0,0,0.2);
            font-weight: bold;
            color: #f1d384;
        }

        input, textarea, select {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            border-radius: 5px;
            box-sizing: border-box;
            font-family: inherit;
        }
        
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #f1d384;
        }

        button {
            padding: 10px 20px;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            transition: opacity 0.2s;
        }
        
        button:hover {
            opacity: 0.9;
        }

        .btn-primary {
            background-color: #f1d384;
            color: #382627;
        }

        form > .btn-primary {
            margin-left: auto;
            display: block;
        }

        .btn-danger {
            background-color: #ff4d4d;
            color: white;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .grid-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .full-width {
            grid-column: span 2;
        }