* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Inter, sans-serif;
}

/* Loading Overlay  */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; 
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out; 
  opacity: 1;
  visibility: visible;
}

#loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 150px !important; 
  height: auto;
  animation: pulseRotate 2s infinite ease-in-out; 
}

@keyframes pulseRotate {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1) rotate(5deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.7;
  }
}

header {
  background-color: #f8d000;
  height: 170.208px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.headcontainerone {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  font-size: 16px;
  position: relative;
  line-height: 16px;
  height: auto;
  flex-grow: 1;
  font-weight: 400;
  text-align: left;
  width: 100%;
}

.headcononeflex {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 8px;
  padding-right: 8px;
  display: flex;
  align-items: center;
  position: relative;
  text-align: left;
  width: 100%;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.headlogo {
  position: absolute;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
  height: 146.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hlogo {
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 146.5px;
  overflow: hidden;
}

.hlogo img {
  height: 250px;
  width: auto;
  display: block;
  transform: scale(0.5866);
  transform-origin: center center;
  position: relative;
}

.logo-link {
  display: inline-flex;
  height: 100%;
  align-items: center;
  text-decoration: none;
}

.headcontainertwo {
  display: flex;
  align-items: center;
  line-height: 16px;
  margin: 0;
  padding-bottom: 0px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 0px;
  position: relative;
  max-width: none;
}

.headcontwo {
  display: flex;
}

.address {
  font-size: 14px;
  line-height: 22.1053px;
  font-weight: 400;
}

.contwobox {
  display: grid;
  align-items: center;
  row-gap: 2px;
  column-gap: 2px;
}

.time {
  font-size: 14px;
  line-height: 22.1053px;
}

.mainconent,
.rowmaincontent,
.maincolcontent,
.stickycontentrow {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-width: 0;
}

.rowmaincontent {
  margin: 0;
}
.maincolcontent {
  padding: 0;
}

.orderonlinegrid {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 1000px) 1fr;
  grid-template-rows: 0px 80px auto 24px;
  width: 100%;
  background-color: #fff;
  color: black;
}

.categorynavigationsection {
  grid-column: 1 / span 3;
  grid-row: 2;
  z-index: 1000;
  width: 100%;
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.category-nav-inner-wrapper {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 1000px) 1fr;
  grid-template-rows: 80px;
  height: 80px;
  align-items: center;
  flex-wrap: nowrap;
  padding: 16px 0px;
  color: black;
}

.navbox {
  font-family: "Carter One", system-ui;
  grid-column: 2;
  flex-grow: 3;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.navbox::-webkit-scrollbar {
  display: none;
}

.navlist {
  list-style-type: none;
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  min-width: fit-content;
}

.navlistoption,
.navlistoptionm {
  letter-spacing: 1.26px;
  font-weight: 400;
  line-height: 22.1053px;
  text-decoration: none;
  padding: 4px 0px;
  font-size: 16px;
  flex-shrink: 0;
}

.navlistoption {
  margin: 0px 16px;
}

.navlistoptionm {
  margin-left: 0px;
  margin-right: 16px;
}

.navlistoptionm a,
.navlistoption a {
  color: black;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  white-space: nowrap;
}

.navlistoptionm a::after,
.navlistoption a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f8d000;
  left: 0;
  bottom: 0;
  transition: width 0.3s ease-in-out;
}

.navlistoptionm a:hover::after,
.navlistoption a:hover::after {
  width: 100%;
}

.navlistoptionm a:hover,
.navlistoption a:hover {
  color: #f8d000;
}

.navlistoptionm a.active-link,
.navlistoption a.active-link {
  color: #f8d000;
}

.navlistoptionm a.active-link::after,
.navlistoption a.active-link::after {
  width: 100%;
}

/* Coming Soon Section Styles (Now the main content area) */
#coming-soon-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f2f2f2;
  color: #333;
  padding: 50px 20px;
  box-sizing: border-box;
}

.coming-soon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.coming-soon-logo {
  width: 200px; 
  height: auto;
  margin-bottom: 30px;
  animation: rotateAndScale 3s infinite ease-in-out;
}

@keyframes rotateAndScale {
  0% {
    transform: scale(0.9) rotateY(0deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1) rotateY(180deg);
    opacity: 1;
  }
  100% {
    transform: scale(0.9) rotateY(360deg);
    opacity: 0.8;
  }
}

.coming-soon-heading {
  font-family: "Carter One", system-ui;
  font-size: 4em;
  color: #f8d000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.coming-soon-text {
  font-family: Inter, sans-serif;
  font-size: 1.5em;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #555;
}

.loading-animation {
  display: flex;
  gap: 10px;
}

.loading-animation span {
  width: 15px;
  height: 15px;
  background-color: #f8d000;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.loading-animation span:nth-child(2) {
  animation-delay: -0.16s;
}

.loading-animation span:nth-child(3) {
  animation-delay: -0.32s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.footer {
  background-color: #ffd700;
  height: 221px;
  width: 100%;
  border-radius: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.footer-inner-container {
  height: 100%;
  width: calc(100% - (2 * 108.333px));
  max-width: 1200px;
  margin: 0 108.333px;
  padding: 48px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-left h1 {
  font-family: "Carter One", system-ui;
  color: #000000;
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: normal;
}

.footer-right {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease-in-out;
}

.social-icon:hover {
  transform: scale(1.1);
}

.footer-line {
  width: 100%;
  border: none;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  margin: 0;
}

.footer-bottom {
  width: 100%;
  text-align: right;
}

.footer-bottom p {
  font-size: 1.1em;
  color: #333;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-inner-container {
    margin: 0 50px;
    width: calc(100% - (2 * 50px));
    padding: 30px 0;
  }

  .footer-left h1 {
    font-size: 2.2em;
  }

  .coming-soon-heading {
    font-size: 3em;
    letter-spacing: 3px;
  }
  .coming-soon-text {
    font-size: 1.3em;
  }
  .coming-soon-logo {
    width: 180px;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 10px 0;
  }

  .headcontainerone {
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: column;
    align-items: center;
  }

  .headcononeflex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .headlogo {
    position: static;
    transform: none;
    height: auto;
    width: 100%;
    text-align: center;
    order: 1;
  }

  .hlogo img {
    height: 150px;
    transform: none;
    width: auto;
  }

  .headcontainertwo {
    width: 100%;
    order: 2;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contwobox {
    text-align: center;
  }

  .address,
  .time {
    font-size: 12px;
    line-height: 18px;
  }

  .categorynavigationsection {
    display: block;
    grid-row: auto;
    grid-column: auto;
    width: 100%;
  }

  .category-nav-inner-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 16px 0px;
    background-color: #fff;
  }

  .navbox {
    grid-column: auto;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .navlistoption,
  .navlistoptionm {
    margin: 0px 10px;
    font-size: 15px;
  }

  #coming-soon-main {
    padding: 30px 10px;
  }
  .coming-soon-logo {
    width: 150px;
    margin-bottom: 20px;
  }
  .coming-soon-heading {
    font-size: 2em;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
  .coming-soon-text {
    font-size: 1.1em;
    margin-bottom: 25px;
  }
  .loading-animation span {
    width: 12px;
    height: 12px;
  }

  .footer {
    height: auto;
  }

  .footer-inner-container {
    margin: 0 20px;
    width: calc(100% - (2 * 20px));
    padding: 20px 0;
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .footer-left {
    margin-bottom: 15px;
  }

  .footer-right {
    gap: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .footer-left h1 {
    font-size: 2em;
  }

  .footer-bottom p {
    font-size: 1em;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #coming-soon-main {
    padding: 20px 5px;
  }
  .coming-soon-logo {
    width: 120px;
    margin-bottom: 15px;
  }
  .coming-soon-heading {
    font-size: 1.5em;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .coming-soon-text {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
  .loading-animation span {
    width: 10px;
    height: 10px;
  }

  .footer-inner-container {
    margin: 0 10px;
    width: calc(100% - (2 * 10px));
    padding: 15px 0;
  }

  .footer-left h1 {
    font-size: 1.8em;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .footer-bottom p {
    font-size: 0.9em;
  }
}
