@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background: #180802;
  color: #fff;
}

body::-webkit-scrollbar {
  position: relative;
  display: none;
}

.website-body-container {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background: black url('../images/beans bg.png') top center/cover no-repeat;
  max-width: 1600px;
}

.user-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  height: 110px;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(to bottom,
      black 0%,
      black 80%,
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      black 0%,
      black 80%,
      transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  padding: 1rem;
  padding-top: 0.8rem;
}

header img {
  height: 60px;

}

.active {
  border-radius: 15px;
  background: #332117;
  border-bottom: 1px solid #fff;
}

.navigation-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1600px;
  background-color: transparent;
  z-index: 1001;
  height: 65px;
  border-radius: 35px;
}

.text-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-left: 20px;
}

.text-logo {
  width: 271px;
  height: auto;
}

nav.desktop-nav {
  display: flex;
  gap: 1rem;
}

nav.desktop-nav a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
  font-weight: 400;
  transition:
    background 0.35s cubic-bezier(0.4, 0.2, 0.2, 1),
    color 0.25s cubic-bezier(0.4, 0.2, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0.2, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0.2, 0.2, 1);
}

nav.desktop-nav a:hover {
  border-radius: 15px;
  background: #332117;
  border-bottom: 1px solid #fff;
}

.order-navigator-text {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: radial-gradient(circle at -50% -50%, #29160913, #7a4f1a59);
  backdrop-filter: blur(9px);
  border-radius: 15px;
  padding: 0.5rem 1rem;
  border: 1px solid #94864378;
  animation: move 1s ease-in-out infinite;
}


@keyframes move {
  0% {
    transform: translateY(0);
  } 50% {
    transform: translateY(-10px);
  } 100% {
    transform: translateY(0);
  }
}

.popup-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  z-index: 1500;
  display: none;
}

.order-navigator-container {
  display: flex;
  justify-content: flex-end;
  flex-direction: column-reverse;
  align-items: flex-end;
  width: 100%;
  gap: 1rem;
}

.order-navigator {
  background: #332117;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  gap: 0.8rem;
  max-width: fit-content;
  position: relative;
}

.order-navigator .close-icon {
  display: none;
}

.order-platform-container {
  display: none;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  background: #332117;
  padding: 1rem;
  border-radius: 15px;
}

.zomato-container,
.swiggy-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.7rem 1rem 1rem;
  background: #180802 url('../images/order-bg-img.png') center center/cover no-repeat;
}

.zomato-container {
  border-radius: 15px 15px 0 0;
}

.swiggy-container {
  border-radius: 0 0 15px 15px;
}

.order-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: #8a513d;
  border: none;
  border-radius: 15px;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  width: 100%;
}

.branch-name {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--secondary);
  border-radius: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  z-index: 1001;
  padding: 3rem 1rem;
  background: transparent;
}

.modify-a {
  text-decoration: none;
  color: white;
}

a {
  text-decoration: none;
}

.mobile-nav.active {
  pointer-events: auto;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: var(--secondary);
  cursor: pointer;
  transition: transform 0.2s ease;
  user-select: none;
  z-index: 1001;
}

.close-btn:hover {
  transform: scale(1.2);
}

.mobile-nav a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  text-align: center;
}

.mobile-nav a::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: var(--secondary);
  margin: 10px auto 0;
}

.index-main {
  min-height: fit-content;
  width: 100vw;
  background: #180802;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.first-section {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 3rem;
  padding-top: 130px;
  padding-bottom: 2rem;
  box-sizing: border-box;
  max-width: 1600px;
  background: transparent;
}

.first-section-left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5rem;
  align-items: center;
}

.first-section-left-text {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.first-section-left-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  width: 100%;
  font-weight: 400;
}

.coffee {
  color: #c49a6c;
  font-weight: 500;
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

.first-section-left-navi-buttons {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.cta-btn {
  padding: 0.7rem 1.3rem;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-family: 'Poppins', Arial, sans-serif;
  background-color: transparent;
  color: #fff;
  font-weight: 400;
  border: 1px solid #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.cta-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transform: rotate(235deg);
}

.cta-btn:hover {
  background-color: #3d271b;
  border: 1px solid #3d271b;
}
.thestory-btn {
  padding: 13px 20px;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-family: 'Poppins', Arial, sans-serif;
  background-color: transparent;
  color: #fff;
  font-weight: 400;
  border: 1px solid #fff;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.first-section-right {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.2rem;
  padding-top: 40px;
}

.first-section-right img {
  width: 100%;
  max-width: 35vw;
  height: auto;
  object-fit: contain;
}

.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  max-width: 1600px;
  background: #332117;
  padding: 15px;
}

.scroll-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 15s linear infinite;
}


@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.scroll-content img {
  height: 40px;
  margin: 0 20px;
  vertical-align: middle;
}

.second-section {
  width: 100%;
  height: auto;
  padding: 3rem;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  background: transparent;
  padding-top: 1.5rem;
}

.second-section-heading {
  margin-bottom: 1.2rem;
}

.heading-capsule {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #33211799;
  border-radius: 15px;
  padding: 0.4rem 1rem;
  width: fit-content;
  box-shadow: 0 2px 12px #0007;
  border: 3px solid #bf886088;
}

.heading-capsule img {
  height: 22px;
  width: auto;
}

.heading-capsule h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.story-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.story-card {
  position: relative;
  background: rgba(30, 20, 10, 0.7);
  border-radius: 22px;
  box-shadow: 0 4px 32px #000a;
  overflow: hidden;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: box-shadow 0.2s;
  z-index: 0;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(180deg, #bf8760, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.coffee-story-part2 {
  height: 100%;
  width: 100%;
}

.white-linear-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(180deg, #a4a2a2, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 1;
}

.csp2 {
  width: 50%;
}

.story-card--mainimg {
  width: 100%;
  max-width: 100%;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.story-card--mainimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}

.story-card-row {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.story-card--text {
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  width: 50%;
  max-height: 340px;
}

.story-card--text p {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', sans-serif;
  text-align: justify;
}

.read-more-btn {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}

.read-more-btn:hover {
  background: #fff;
  color: #3a2517;
}

.story-card-row img {
  object-fit: cover;
  border-radius: 22px;
  display: block;
  max-height: 340px;
}

.gallery-section {
  width: 100%;
  height: auto;
  padding: 1rem 3rem;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  background: transparent;
  padding-top: 1.5rem;
}

.gallery-grid {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  max-width: 1600px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.gallery-card {
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 280px;
  background: #3d271b91;
  height: 340px;
  margin-right: 1.2rem;
  padding: 1.2rem;
}

.gallery-card:last-child {
  margin-right: 0;
}

.gallery-card img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.gallery-grid-scroll-top {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  animation: top-scroll 30s linear infinite;
  gap: 1rem;
  transition: all 0.3s ease;
}

@keyframes top-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.gallery-grid-scroll-bottom {
  width: 100%;
  display: inline-block;
  white-space: nowrap;
  animation: bottom-scroll 30s linear infinite;
  gap: 1rem;
  transition: all 0.3s ease;
}

@keyframes bottom-scroll {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (min-width: 1350px) {
  .first-section-right img {
    max-width: 550px;
  }
}

.reviews-section {
  width: 100%;
  padding: 3rem;
  padding-top: 1rem;
  background: transparent;
  box-sizing: border-box;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviews-cards {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  min-height: 220px;
  transition: min-height 0.2s;
  overflow: hidden;
  height: fit-content;
}

.review-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.514), rgb(107, 65, 27, 0.514));
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  height: fit-content;
  width: 33%;
  overflow: hidden;
}

.review-user,
.review-text {
  position: relative;
  z-index: 2;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.2rem;
}

.review-user-container {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.review-user-text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.review-user-icon {
  background: #bf8760;
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.review-user-name {
  font-weight: 700;
  font-size: 1.15rem;
}

.review-stars {
  color: #ffd700;
  font-size: 1.1rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.site-footer {
  background: #180802;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-wrapper {
  width: 100%;
  max-width: 1600px;
  height: auto;
  background: #3a2517;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  gap: 2rem;
  width: 100%;
  max-width: 1600px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  height: 48px;
  margin-bottom: 0.5rem;
}

.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-brand-desc {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.7rem;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.3rem;
}

.footer-socials a {
  color: #fff;
  font-size: 1.4rem;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #bf8760;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 120px;
}

.footer-col-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #bf8760;
}

.footer-bottom {
  background: #7a4e1a;
  color: #fff;
  text-align: center;
  padding: 0.7rem 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  width: 100%;
}

.footer-bottom-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.thestory-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 3rem;
  padding-top: 115px;
  box-sizing: border-box;
  background: transparent;
}

.thestory-heading {
  margin-bottom: 1.2rem;
}

.thestory-content-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.thestory-text-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.514), rgb(107, 65, 27, 0.514));
  border-radius: 18px;
  box-shadow: 0 4px 32px #000a;
  border: 1px solid #bf8760;
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  width: 55%;
}

.thestory-text-card p {
  text-align: justify;
  font-size: clamp(0.6rem, 1.2vw, 1.1rem);
}

.thestory-gallery {
  width: 509px;
}

.thestory-image {
  max-width: 550px;
  width: 40%;
}

.menu-section {
  background: transparent;
  max-width: 1600px;
  padding: 3rem;
  padding-top: 110px;
  width: 100%;
  position: relative;
}

.menu-container {
  display: flex;
  gap: 1.2rem;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}

.menu-part-1,
.menu-part-2 {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.menu-hero-part-1,
.menu-regular-part-1,
.menu-hero-part-2,
.menu-regular-part-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  border-radius: 15px;
}

.menu-item {
  list-style-type: none;
  display: flex;
  width: 100%;
  min-width: fit-content;
  border-bottom: 1px dashed #ffd86e6b;
  padding: 0.4rem;
  justify-content: space-between;
  gap: 0.7rem;
}


.menu-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  background: transparent;
  padding: 1rem;
  border-radius: 15px;
  height: fit-content;
  padding-left: 0;
  padding-top: 0.7rem;
}

.menu-heading-capsule {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem;
  background: linear-gradient(90deg, #bf8860b1, transparent);
  font-weight: bolder;
  border-radius: 15px;
  width: fit-content;
  margin-top: 0.7rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.menu-heading-capsule img {
  width: 30px;
  height: auto;
}

.menu-name-price-container {
  background: linear-gradient(90deg, #463122b1, transparent);
  padding: 0.7rem;
  border-radius: 12px;
  width: 100%;
  backdrop-filter: blur(6px);
}

.menu-name {
  font-weight: 500;
  letter-spacing: 0.5px;
  word-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-price {
  color: #ffbe6e;
  white-space: nowrap;
}

.menu-name-price-container ul {
  width: 100%;
}

.contactus-section {
  width: 100%;
  max-width: 1600px;
  padding: 3rem;
  padding-top: 110px;
  background: transparent;
}

.contactus-content {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  height: auto;
  margin-top: 1.5rem;
  gap: 2rem;
}

.form-result-msg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.form-result-container {
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: auto;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1rem;
}

.timer-container {
  width: 100%;
  height: 15px;
  background: #8a513d;
  border-radius: 30px;
}

.timer {
  width: 100%;
  height: 15px;
  background: #3d271b;
  animation: timer 5s ease-in-out forwards;
  border-radius: 30px;
}

@keyframes timer {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

.form-result-message {
  background: #33211799;
  border-radius: 15px;
  padding: 0.7rem;
  width: fit-content;
  box-shadow: 0 2px 12px #0007;
  border: 3px solid #bf886088;
  font-size: 0.8rem;
  color: #ffbe6e;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  max-width: fit-content;
  height: auto;
  position: relative;
  z-index: 9999;
}

.contactus-content-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(24, 8, 2, 0.591);
  border: 1px solid #fff;
  padding: 1.5rem;
  border-radius: 20px;
  max-width: 630px;
  justify-content: space-between;
}

.contactus-content-left-header {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contactus-content-left-header h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);

}

.contactus-content-left-header p {
  width: 100%;
  font-size: 1rem;
  text-align: justify;
}

.contactus-content-left-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contactus-left-email-container,
.contactus-left-phone-container,
.contactus-left-address-container {
  display: flex;
  flex-direction: column;
}

.contactus-body-left-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.addresschatbutton {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.addresschatbutton p {
  width: 50%;
}

.addresschatbutton button {
  padding: 8px 15px;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #bf8860bb, transparent);
  color: #fff;
  font-weight: 400;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  gap: 1rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.contactus-content-right {
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.514), rgb(107, 65, 27, 0.514));
  padding: 1.5rem;
  border-radius: 22px;
  position: relative;
  z-index: 0;
}

.contactus-content-right form {
  width: 100%;
  max-width: 500px;
}

.name-phone-container {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.form-phone-container,
.form-name-container,
.form-email-container,
.form-message-container {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  margin-bottom: 1rem;
}

.form-input {
  padding: 0.5rem 0.8rem;
  width: 100%;
  outline: none;
  background: rgb(51, 33, 23);
  border: 1px solid #ffc88571;
  border-radius: 9px;
  color: white;
  transition: border,box-shadow 0.3s ease;
}

.form-input:focus {
  border: 1px solid #977d5efa;
  box-shadow: 0 5px 6px #ffbe6e71;
}

.form-message-container textarea:focus {
  box-shadow: 0 5px 6px #ffbe6e71;
}

.form-message-container textarea {
  min-height: 90px;
  resize: vertical;
  padding: 0.5rem 0.8rem;
  width: 100%;
  background: rgb(51, 33, 23);
  border: 1px solid #ffffff82;
  border-radius: 9px;
  color: #fff;
}

.form-button-container {
  width: 100%;
  margin-top: 1.2rem;
}

.form-submit-btn {
  width: 100%;
  padding: 0.8rem;
  background: #180802;
  border-radius: 12px;
  border: 2px solid #ffffff6c;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.7 ease;
}

.form-submit-btn:hover {
  transform: scale(1.020);
  box-shadow: 0 5px 6px #ffbe6e71;
}

.gallery-section-page {
  width: 100%;
  height: auto;
  padding: 3rem;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  background: black url('../images/beans bg forward.png') center center/cover no-repeat;
  padding-top: 110px;
}

.gallery-container {
  width: min(400px, 100%);
  columns: 3 100px;
  column-gap: 8px;
  margin-top: 1rem;
}

.gallery-container img {
  display: block;
  margin-bottom: 8px;
  width: 100%;
  border-radius: 5px;
}

.locations-section {
  width: 100%;
  height: auto;
  padding: 3rem;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  background: black url('../images/beans bg forward.png') center center/cover no-repeat;
  padding-top: 110px;
}

.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  min-width: 320px;
  max-width: 420px;
  color: #f5f1ee;
}

.location-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.location-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ffffff;
}

.location-title span {
  display: flex;
  gap: 15px;
}

.location-title i {
  font-size: 1.2rem;
  opacity: 0.85;
  cursor: pointer;
}

.footer-locations p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  text-align: justify;
}


.small-heading {
  background: #bf8760;
  color: #332121;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-size: 1rem;
}

.franchise-options-container{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

.franchise-option{
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: transparent;
  backdrop-filter: blur(6px);
}

.franchise-option h4{
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  width: fit-content;
  border-bottom: 2px dotted #e3dbd5b1;
}

.franchise-option span{
  padding: 0.1rem 0.3rem;
  margin: 0.4rem;
  border-radius: 5px;
  background: #bf8860b1;
}


/* =========================
   RESPONSIVE ONLY
========================= */

@media (max-width: 1024px) {
  .footer-locations {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-locations {
    align-items: flex-start;
    text-align: center;
  }

  .location-title {
    justify-content: flex-start;
    gap: 12px;
  }
  
  .review-user-name {
  font-weight: 600;
  font-size: 0.9rem;
}
}


@media (max-width: 1100px) {
  nav.desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .thestory-content-row {
    gap: 1rem;
    align-items: center;
  }

  .menu-section {
    padding: 1.8rem;
    padding-top: 110px;
  }

}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 1rem 1rem 1rem;
  }

  .menu-card {
    padding: 0;
  }

  .menu-part-1,
  .menu-part-2 {
    width: 100%;
    gap: 0;
  }

  .menu-container {
    flex-direction: column;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 2rem;
  }

  .contactus-content {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
  
  .name-phone-container {
    flex-direction: column;
    gap: 0;
  }

  .contactus-content-right form {
    max-width: 100%;
  }

  .contactus-section {
    padding: 2rem;
    padding-top: 110px;
  }

  .contactus-content-left,
  .contactus-content-right {
    max-width: 100%;
    width: 100%;
  }

  .contactus-content-left {
    padding: 1.2rem;
  }

  .contactus-content-right {
    padding: 1.2rem;
  }

  .addresschatbutton p {
    width: 100%;
  }

  .addresschatbutton button {
    width: 100%;
    text-align: center;
    padding: 0.6rem;
  }

  .addresschatbutton {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .heading-capsule {
    padding: 0.5rem;
    gap: 0.5rem;
    border-radius: 10px;
    border: 1px solid #bf886088;
  }

  .scroll-container {
    padding: 11px;
  }

  .first-section-left-navi-buttons {
    flex-direction: column;
  }

  .first-section {
    flex-direction: column-reverse;
    padding: 120px 2rem 1.5rem 2rem;
    justify-content: flex-end;
  }

  .first-section-left {
    width: 100%;
    gap: 2rem;
  }

  .first-section-right {
    width: 100%;
    justify-content: center;
    padding: 0 0 1.5rem 0;
  }

  .first-section-right img {
    max-width: 80vw;
  }

  .first-section-left h1 {
    text-align: left;
    font-size: clamp(1.5rem, 11vw, 5rem);
  }

  .cta-btn,
  .thestory-btn {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0.6rem;
  }

  .story-main-img {
    height: auto;
    width: 100%;
  }

  .csp2 {
    display: none;
  }

  .second-section {
    padding: 1.2rem;
  }

  .story-card--text {
    width: 100%;
    max-height: none;
  }

  .heading-capsule h3 {
    font-size: 1rem;
  }

  .reviews-cards {
    flex-direction: column;
    gap: 1rem;
  }

  .review-card {
    width: 100%;
    min-width: 250px;
  }

  .reviews-section {
    padding: 1rem;
    padding-top: 0;
  }

  .gallery-section {
    padding: 1rem;
  }

  .menu-columns {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .thestory-section {
    padding: 1rem;
    padding-top: 95px;
  }

  .thestory-text-card {
    font-size: 0.98rem;
    padding: 0.8rem 0.7rem 0.7rem 0.7rem;
    border-radius: 12px;
    width: 100%;
  }

  .thestory-gallery {
    gap: 0.7rem;
    align-items: flex-start;
  }

  .thestory-text-card p {
    font-size: 1rem;
  }

  .thestory-image {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .main-logo {
    display: none;
  }

  .text-logo-container {
    margin: 0;
    gap: 0;
  }

  .text-logo {
    height: auto;
    width: 40vw;
    min-width: 200px;
  }

  .navigation-container {
    height: 52px;
  }

  .first-section {
    padding: 120px 1.5rem 1.5rem 1.5rem;
  }

  .first-section-left-navi-buttons {
    gap: 1rem;
    align-items: flex-start;
  }

  .scroll-content img {
    height: 30px;
    margin: 0 10px;
  }

  .footer-main {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    gap: 1.2rem;
  }

  .footer-brand-title {
    font-size: 1.3rem;
  }

  .footer-logo {
    height: 36px;
  }

  .footer-col-title {
    font-size: 1rem;
  }

  .footer-col {
    min-width: 90px;
  }

  .gallery-card {
    width: 198px;
    height: 242px;
    padding: 0.8rem;
  }

  .gallery-card img {
    width: 172px;
    height: 218px;
  }

  .menu-section {
    padding: 1rem;
    padding-top: 77px;
  }

  .menu-columns {
    flex-direction: column;
  }

  .contactus-section {
    padding: 1rem;
    padding-top: 95px;
  }

  .contactus-content-left-header h3 {
    font-size: 1.2rem;
  }

  .contactus-content-left-header p {
    font-size: 0.9rem;
  }

  .contactus-left-email-container h5,
  .contactus-left-phone-container h5,
  .contactus-body-left-footer-heading h5 {
    font-size: 1rem;
  }

  .contactus-left-email-container p,
  .contactus-left-phone-container p,
  .addresschatbutton p {
    font-size: 0.9rem;
  }

  .contactus-content-right form h4 {
    font-size: 1rem;
  }

  .form-input,
  .form-message-container textarea {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }

  .form-submit-btn {
    font-size: 0.9rem;
    padding: 0.6rem;
  }

  .user-header {
    height: 90px;
  }
}


/*-----------------------admin-panel-styling----------------------------*/

.login-bg-wrapper {
  height: 100vh;
  width: 100vw;
  background: black url('../images/beans bg forward.png') center center/cover no-repeat;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

.alert-box {
  position: fixed;
  right: 30px;
  top: 20px;
  color: white;
  background-color: #000000ad;
  backdrop-filter: blur(12px);
  border-radius: 11px;
  padding: 0.7rem 1rem;
  border: 1px solid #725757;
  font-size: 1.2rem;
  z-index: 999;
  display: none;
}

.admin-timer {
  position: absolute;
  border-radius: 11px;
  top: 0;
  left: 0;
  background: rgb(56 42 42);
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: admin-timer 5s ease-in-out forwards;
}

@keyframes admin-timer {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

.alert-box h5 {
  position: relative;
  z-index: 2;
}

.login-glass-container {
  display: flex;
  gap: 48px;
  background: rgb(140 130 130 / 10%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.13);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  max-width: 464px;
  margin: 20px auto;
  flex-wrap: wrap;
}

.cred-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-form-section {
  flex: 2 1 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
  max-width: 480px;
}

.login-main-heading {
  font-size: 1.5rem;
  font-family: 'Poppins', serif;
  color: #fff;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.login-subheading {
  color: rgb(214, 190, 194);
  font-size: 1.1rem;
  margin-bottom: 1.3rem;
  font-family: 'Poppins', serif;
  font-weight: 300;
  letter-spacing: 1px;
  border-bottom: 0.5px solid #72585bf4;
  padding-bottom: 0.7rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-weight: 500;
  color: rgb(214, 190, 194);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-family: 'Poppins', Arial, sans-serif;
  text-align: left;
  background: linear-gradient(90deg, #473737, transparent);
  padding: 0.2rem 0.6rem;
  max-width: fit-content;
  border-radius: 8px;
}

.login-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #473737, transparent);
  padding: 0.5rem;
  border-radius: 22px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #453535;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffffbe;
  transition: border 0.2s, background 0.2s;
  box-shadow: none;
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #725757;
}

.login-btn {

  background: #473737;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
  width: 100%;
  transition: all 0.2s;
}

.login-btn:hover {
  scale: 1.02;
  animation: pebble 1s linear infinite;
}

.login-logo {
  width: 20%;
  min-width: 320px;
  max-width: 500px;
  height: auto;
  margin-bottom: 4px;
}

.login-logo-gui {
  width: 50px;
  height: 50px;
}

nav.admin-desktop-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
  width: 100%;
}

.desktop-nav-top a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  padding: 0.6rem 1rem;
  padding-left: 0;
  font-weight: 400;
  letter-spacing: 1px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7rem;
}

.desktop-nav-top a:hover {
  border-left: 2px solid rgb(183, 178, 180);
  padding-left: 0.8rem;
  background: #3b2c2c;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
  transition: all 0.2s ease-in-out;
}

.desktop-nav-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.6rem;
  color: white;
  width: 100%;
}

.desktop-nav-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.6rem;
  color: white;
  width: 100%;
}

.desktop-nav-bottom a {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
  padding: 0.8rem;
  letter-spacing: 1.2px;
}

.admin-logout-btn {
  width: 100%;
  background: #3b2c2c;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(93, 72, 78, 0.434);
  transition: all 0.2s ease-in-out;
  padding: 1rem;
}


.header-logo {
  margin-bottom: 1.2rem;
}

.admin-header-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  padding-left: 0;
  color: #fff;
  font-size: 1.5rem;
}

.admin-header-logo img {
  width: auto;
  height: 30px;
}

.admin-dashboard-main {
  padding: 1rem;
  padding-left: 340px;
  width: 100%;
  max-width: 1700px;
  height: 100%;
  background: #000000 url('../../assets/images/Notex.png') center center/cover no-repeat;
  position: relative;
}

.admin-header {
  background-color: rgba(53, 53, 53, 0.47);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1.5rem;
  padding-top: 0.9rem;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 300px;
  margin: 1rem;
  margin-right: 0;
  border-radius: 12px;
}

.admin-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.admin-active-page {
  border-left: 2px solid rgb(183, 178, 180);
  padding-left: 0.8rem !important;
  background: #3b2c2c;
  border-bottom-right-radius: 12px;
  border-top-right-radius: 12px;
}

.admin-body-container {
  width: 100%;
  overflow-y: auto;
  height: 100%;
}

.admin-title-container {
  width: 100%;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-page-title-pill {
  font-weight: 500;
  font-size: 1.5rem;
  background: linear-gradient(90deg, #3b2c2c, transparent);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  letter-spacing: 1px;
}

.admin-data-table {
  max-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  background: linear-gradient(180deg, #3b2c2c, transparent);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  position: relative;
  margin-top: 1rem;
}

.admin-data-table tbody {
  display: block;
  max-height: calc(100vh - 10rem);
  overflow: auto;
  width: 100%;
}

.admin-data-table tbody::-webkit-scrollbar {
  display: none;
}

.admin-data-table thead {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.admin-data-table tr {
  display: table;
  width: 100%;
  table-layout: fixed;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.admin-data-table th,
.admin-data-table td {
  box-sizing: border-box;
}

.admin-data-table th,
.admin-data-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  color: #fff;
  font-size: 1.08rem;
}

.admin-data-table th {
  background: linear-gradient(180deg, #2c2121, transparent);
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  border-bottom: 1px solid #ffffff61;
}

.admin-data-table tr {
  transition: all 0.3s ease;
}

.admin-data-table td {
  border-bottom: 1px solid #5b5b5b;
  text-align: center;
}

.admin-data-table a {
  text-decoration: none;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border: 1px solid #725d7e;
  background: #725757;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.manage-actions {
  display: flex;
  gap: 0.5rem;
}

.highlight-price {
  background: rgb(128, 101, 39);
  padding: 0.2rem 0.4rem;
  border-radius: 9px;
  white-space: nowrap;
}

.add-menu-item-btn {
  background: #473737;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.1rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
  transition: all 0.2s;
  position: absolute;
  right: 50px;
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  z-index: 1000;
}

.add-menu-item-text {
  display: none;
}

.add-item-category-select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #453535;
  font-size: 1rem;
  font-family: 'Poppins', Arial, sans-serif;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffffbe;
  transition: border 0.2s, background 0.2s;
  border-radius: 12px;
}

.add-item-category-select option {
  background-color: #332121;
  color: #fff;
}

.add-item-category-select option:hover {
  background-color: #473737;
}

.add-item-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(13px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.6);
}

.add-item-modal h2 {
  background: #473737;
  width: 33%;
  max-width: 350px;
  color: rgb(214, 190, 194);
  font-size: 1.3rem;
  font-family: 'Poppins', serif;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.4rem 1.4rem;
  border-radius: 0.5rem;
  border-bottom-right-radius: 1.9rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.close-add-item-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #372e1e;
  padding: 1rem;
  border-radius: 12px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 30px;
}

.add-item-modal .login-form {
  width: 33%;
  max-width: 350px;
}

.edit-form-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
  margin-top: 1.5rem;
}

.view-user-messages-btn {
  background: #473737;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(106, 27, 154, 0.09);
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
  margin: auto;
}

.view-message-modal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 50%;
  min-width: 400px;
  padding: 1.5rem;
  text-align: justify;
  min-height: fit-content;
  background: linear-gradient(180deg, #473737, transparent);
}

.admin-messages-container .admin-data-table {
  max-width: 700px;
  width: 50%;
  min-width: 400px;
  margin-top: 0;
  max-height: fit-content;
}

.admin-table-and-view-container {
  display: flex;
  gap: 1rem;
  width: 100%;
  padding-top: 1.5rem;
  height: fit-content;
}

.user-message-in-table {
  background: #725757;
  padding: 0.2rem 0.4rem;
  border-radius: 9px;
  white-space: nowrap;
}

.admin-name {
  font-weight: bold;
}

.profile-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 0.7rem;
}

.profile-wrap i {
  color: #fff;
  font-size: 1.2rem;
  background: #3b2c2c;
  padding: 0.5rem;
  border-radius: 50%;
}

.user-sent-messages {
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #453535;
  padding: 0.5rem;
  border-radius: 12px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"] {
  appearance: textfield;
}

.admin-delete-btn {
  text-decoration: none;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border: 1px solid #725d7e;
  background: #725757;
  border-radius: 10px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}

.rnr-gallery-wrapper {
  width: 100%;
  height: auto;
  padding: 2rem 0;
  margin: 0 auto;
  padding-top: 110px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.rnr-section {
  width: 100%;
  padding: 1rem 2rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
  background: transparent;
}

.rnr-section-header h3 {
  display: inline-block;
  background: #3b2b20;
  color: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 1rem;
}

.rnr-grid {
  display: grid;
  gap: 25px;
  margin-top: 25px;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

/* responsive columns: show 4 items per row on small screens, more on larger screens */
@media (max-width: 767px) {
  .rnr-grid {
    grid-template-columns: repeat(2, 2fr);
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .rnr-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.rnr-item {
  border-radius: 12px;
  overflow: hidden;
  background: #3d271b91;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 120px;
  padding: 0.6rem;
}

.rnr-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* inline video styling */
.rnr-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* hidden items when collapsed */
.rnr-hidden {
  display: none !important;
}

/* See more control */
.rnr-controls {
  margin-top: 12px;
}

.rnr-see-more-btn {
  background: #6b3f26;
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .rnr-gallery-wrapper {
    padding-top: 70px;
  }
}

/* small adjustments */
@media (max-width: 480px) {
  .rnr-section {
    padding: 0.8rem 1rem 1.2rem;
  }

  .rnr-section-header h3 {
    font-size: 0.95rem;
    padding: 5px 10px;
  }
}