header .top-header {
  background-color: #fe6a13;
  padding: 10px 0
}

header .top-header .main-top-header {
  display: flex;
  justify-content: space-between;
  align-items: center
}

header .top-header .main-top-header ul {
  display: flex;
  align-items: center;
  gap: 20px
}

header .top-header .main-top-header ul li {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px
}

@media(max-width: 1200px) {
  header .top-header .main-top-header ul li {
    font-size: 14px
  }
}

@media(max-width: 500px) {
  header .top-header .main-top-header ul li {
    font-size: 13px
  }
}

header .top-header .main-top-header ul a {
  color: #fff
}

@media(max-width: 992px) {
  header .top-header .main-top-header {
    flex-direction: column
  }
}

@media(max-width: 768px) {
  header .top-header .main-top-header .business-hour {
    display: none
  }

  header .top-header .main-top-header .business-info ul {
    flex-direction: column;
    gap: 5px
  }

  header .top-header .main-top-header .business-info ul li:nth-child(2) {
    display: none
  }
}

header .bottom-header {
  padding: 15px 0;
  width: 100%;
  transition: all 0.3s ease;
}

header .bottom-header .main-bottom-header {
  display: flex;
  justify-content: space-between;
  align-items: center
}

header .bottom-header .main-bottom-header .primary-menu {
  transition: all .3s ease
}

header .bottom-header .main-bottom-header .primary-menu nav ul {
  display: flex;
  align-items: center;
  gap: 5px
}

header .bottom-header .main-bottom-header .primary-menu nav ul li a {
  padding: 10px 10px;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  position: relative
}

header .bottom-header .main-bottom-header .primary-menu nav ul li a::before {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fe6a13;
  transition: all .2s linear
}

header .bottom-header .main-bottom-header .primary-menu nav ul li a:hover::before {
  width: 100%
}

header .bottom-header .main-bottom-header .primary-menu nav ul li .active-menu::before {
  width: 100%
}

header .bottom-header .main-bottom-header .cart-icon {
  position: relative;
  color: #1a1a1a;
  font-size: 22px;
  cursor: pointer
}

header .bottom-header .main-bottom-header .cart-icon span {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 14px;
  background: #f4efe3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600
}

header .bottom-header .main-bottom-header .toggle-menu {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  position: relative
}

header .bottom-header .main-bottom-header .toggle-menu span {
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all .3s ease
}

header .bottom-header .main-bottom-header .toggle-menu.active-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

header .bottom-header .main-bottom-header .toggle-menu.active-toggle span:nth-child(2) {
  opacity: 0
}

header .bottom-header .main-bottom-header .toggle-menu.active-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px)
}

@media(max-width: 1200px) {
  header .bottom-header .main-bottom-header {
    gap: 15px
  }

  header .bottom-header .main-bottom-header .primary-btn {
    display: none
  }

  header .bottom-header .main-bottom-header .primary-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    height: 100vh;
    background-color: #fff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center
  }

  header .bottom-header .main-bottom-header .primary-menu nav ul {
    flex-direction: column;
    align-items: center
  }

  header .bottom-header .main-bottom-header .active-menu {
    right: 0
  }

  header .bottom-header .main-bottom-header .toggle-menu {
    display: flex
  }
}

.hero-section {
  position: relative;
  padding-top: 50px
}

.hero-section .main-hero-section {
  display: flex;
  align-items: center
}

.hero-section .main-hero-section .hero-content {
  width: 50%
}

.hero-section .main-hero-section .hero-content .main-title {
  font-size: 41px;
  text-decoration: underline;
  text-transform: uppercase;
  line-height: 1.5
}

@media(max-width: 1200px) {
  .hero-section .main-hero-section .hero-content .main-title {
    font-size: 52px
  }
}

@media(max-width: 500px) {
  .hero-section .main-hero-section .hero-content .main-title {
    font-size: 35px
  }
}

.hero-section .main-hero-section .hero-content .tagline {
  font-size: 37px;
  text-transform: uppercase;
  font-style: italic;
  color: #1a1a1a
}

@media(max-width: 500px) {
  .hero-section .main-hero-section .hero-content .tagline {
    font-size: 26px
  }
}

.hero-section .main-hero-section .hero-content .content-para {
  padding: 41px 50px;
  background: url(../uploads/texture/Vector-3.webp);
  background-repeat: no-repeat;
  background-color: rgba(252, 238, 206, .4392156863);
  margin-top: 50px
}

.hero-section .main-hero-section .hero-content .content-para .btn {
  text-transform: uppercase;
  margin-top: 15px
}

.hero-section .main-hero-section .hero-content .content-para .btn a {
  color: #fe6a13
}

@media(max-width: 500px) {
  .hero-section .main-hero-section .hero-content .content-para {
    padding: 10px 10px;
    margin-top: 20px
  }
}

.hero-section .main-hero-section .hero-img {
  width: 50%
}

.hero-section .main-hero-section .hero-img .img-box .item {
  position: relative
}

.hero-section .main-hero-section .hero-img .img-box .item img {
  position: relative;
  right: -60px
}

.hero-section .main-hero-section .hero-img .img-box .item .img-text {
  position: absolute;
  top: 85px;
  left: 22px
}

@media(max-width: 1400px) {
  .hero-section .main-hero-section .hero-img .img-box .item img {
    right: 0px
  }
}

@media(max-width: 500px) {
  .hero-section .main-hero-section .hero-img .img-box .item .img-text {
    top: -44px;
    left: 0px
  }
}

@media(max-width: 992px) {
  .hero-section .main-hero-section {
    flex-direction: column
  }

  .hero-section .main-hero-section .hero-content {
    width: 100%
  }

  .hero-section .main-hero-section .hero-img {
    width: 100%
  }
}

@media(max-width: 500px) {
  .hero-section .main-hero-section {
    flex-direction: column-reverse
  }
}

.hero-section .background-shape {
  position: absolute;
  right: 0;
  bottom: 200px;
  height: 470px;
  width: 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1
}

.hero-section .background-shape::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #fe6a13
}

@media(max-width: 500px) {
  .hero-section .background-shape {
    display: none
  }
}

.popular-choise {
  background-image: url(../uploads/other/popular-background.webp);
  background-color: #f6f4ef;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative
}

.popular-choise .main-popular-choise {
  position: relative;
  z-index: 1;
  background: rgba(245, 243, 239, .4117647059)
}

.popular-choise .main-popular-items {
  margin-top: 50px
}

.popular-choise .main-popular-items .item {
  margin: 139px 0 50px;
  padding: 0 15px 30px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  position: relative
}

.popular-choise .main-popular-items .item .item-img {
  margin-top: -65px
}

.popular-choise .main-popular-items .item .item-img img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0px 12px 16.8px 0px rgba(73, 73, 73, .38);
  transition: all .2s linear
}

.popular-choise .main-popular-items .item .item-img span {
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -50px;
  background: #fe6a13;
  font-size: .8em;
  padding: 5px 8px;
  cursor: default;
  transition: .4s;
  opacity: 0;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-transform: capitalize;
  margin: 0px 30px
}

.popular-choise .main-popular-items .item .item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center
}

.popular-choise .main-popular-items .item .item-content .menu-price {
  font-weight: 600;
  color: #fe6a13
}

.popular-choise .main-popular-items .item .item-content p {
  font-size: 16px
}

.popular-choise .main-popular-items .item .item-content .primary-btn {
  margin-top: 10px
}

.popular-choise .main-popular-items .item:hover .item-img img {
  rotate: 10deg
}

.popular-choise .main-popular-items .item:hover .item-img span {
  visibility: visible;
  opacity: 1;
  top: -105px
}

@media(max-width: 500px) {
  .popular-choise .main-popular-items .item {
    margin: 100px 0 0px
  }
}

.popular-choise .shape {
  position: absolute;
  top: 0;
  right: 0
}

.why-choose-us {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../uploads/other/why-choose-us.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover
}

.why-choose-us .main-choose-us {
  display: flex;
  align-items: center;
  gap: 50px
}

.why-choose-us .main-choose-us .why-choose-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: self-start
}

.why-choose-us .main-choose-us .why-choose-content p {
  color: #fff
}

.why-choose-us .main-choose-us .why-choose-content .section-heading {
  text-align: start
}

.why-choose-us .main-choose-us .why-choose-content .section-heading h3 {
  color: #fff
}

.why-choose-us .main-choose-us .why-choose-content ul {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.why-choose-us .main-choose-us .why-choose-content ul li {
  color: #fff
}

.why-choose-us .main-choose-us .why-choose-content ul li i {
  margin-right: 10px;
  color: #80d303
}

.why-choose-us .main-choose-us .why-choose-img {
  width: 50%
}

@media(max-width: 992px) {
  .why-choose-us .main-choose-us {
    flex-direction: column-reverse
  }

  .why-choose-us .main-choose-us .why-choose-content {
    width: 100%
  }
}

@media(max-width: 768px) {
  .why-choose-us .main-choose-us .why-choose-img {
    width: 100%
  }
}

.about-us {
  background: #f6f4ef;
  position: relative
}

.about-us .main-about-us {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  background: rgba(246, 244, 239, .8)
}

.about-us .main-about-us .about-img {
  width: 50%
}

.about-us .main-about-us .about-img img {
  width: auto;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(102, 102, 102, .2941176471)
}

.about-us .main-about-us .about-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us .main-about-us .about-content .section-heading {
  text-align: start
}

.about-us .main-about-us .about-content .group-item {
  display: flex;
  gap: 20px;
  margin-top: 15px
}

.about-us .main-about-us .about-content .group-item .call-btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 700
}

.about-us .main-about-us .about-content .group-item .call-btn a .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #f4efe3;
  color: #fe6a13;
  font-size: 28px;
  display: grid;
  place-items: center
}

@media(max-width: 1200px) {
  .about-us .main-about-us .about-content .group-item .call-btn a {
    font-size: 20px
  }
}

@media(max-width: 500px) {
  .about-us .main-about-us .about-content .group-item {
    flex-direction: column;
    gap: 10px;
    align-items: self-start
  }
}

@media(max-width: 992px) {
  .about-us .main-about-us {
    flex-direction: column
  }

  .about-us .main-about-us .about-content {
    width: 100%
  }
}

@media(max-width: 768px) {
  .about-us .main-about-us .about-img {
    width: 100%
  }

  .about-us .main-about-us .about-img img {
    width: 100%
  }
}

.about-us .shape .shape-1 {
  position: absolute;
  top: 50px;
  left: 0;
  width: auto
}

.about-us .shape .shape-2 {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: auto
}

.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0
}

@media(max-width: 768px) {
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
  }
}

@media(max-width: 500px) {
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr))
  }
}

.gallery-section .gallery-item {
  position: relative;
  overflow: hidden;
  height: 300px
}

@media(max-width: 500px) {
  .gallery-section .gallery-item {
    height: auto
  }
}

.gallery-section .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform .5s ease
}

.gallery-section .gallery-item:hover img {
  transform: scale(1.1)
}

.gallery-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease
}

.gallery-section .gallery-item:hover .overlay {
  opacity: 1
}

.gallery-section .primary-btn {
  transition: all .3s ease;
  transform: translateY(20px);
  opacity: 0
}

.gallery-section .gallery-item:hover .primary-btn {
  transform: translateY(0);
  opacity: 1
}

.gallery-section .primary-btn:hover {
  transform: scale(1.05)
}

.order-online-section {
  padding-top: 100px;
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)), url(../uploads/other/order-background.jpg);
  background-position: center;
  background-size: cover
}

.order-online-section .main-order-section {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1
}

.order-online-section .main-order-section .order-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start
}

.order-online-section .main-order-section .order-content .section-heading {
  text-align: start
}

.order-online-section .main-order-section .order-content p {
  color: #000
}

.order-online-section .main-order-section .order-content ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
  gap: 20px
}

.order-online-section .main-order-section .order-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000
}

.order-online-section .main-order-section .order-content ul li .icon-box {
  border: 1px solid #efefef;
  background: #f4efe3;
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fe6a13;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal
}

@media(max-width: 1200px) {
  .order-online-section .main-order-section .order-content ul {
    grid-template-columns: repeat(auto-fit, minmax(46%, 1fr))
  }
}

.order-online-section .main-order-section .order-img-box {
  width: 50%;
  display: flex;
  justify-content: center
}

.order-online-section .main-order-section .order-img-box img {
  width: auto
}

@media(max-width: 992px) {
  .order-online-section .main-order-section {
    flex-direction: column
  }

  .order-online-section .main-order-section .order-content {
    width: 100%
  }
}

@media(max-width: 768px) {
  .order-online-section .main-order-section .order-img-box {
    width: 100%
  }

  .order-online-section .main-order-section .order-img-box img {
    width: 100%
  }
}

.order-online-section .shape-4 {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: auto
}

@media(max-width: 500px) {
  .order-online-section {
    padding-top: 50px
  }
}

.testimonial-section {
  background: #f4efe3
}

.testimonial-section .main-testimonia-section {
  margin-top: 40px
}

.testimonial-section .main-testimonia-section .item {
  text-align: center
}

.testimonial-section .main-testimonia-section .item p {
  font-size: 22px;
  color: #000
}

.testimonial-section .main-testimonia-section .item .author {
  font-size: 22px;
  font-weight: 600;
  color: #fe6a13;
  display: inline-block;
  margin-top: 20px
}

@media(max-width: 768px) {
  .testimonial-section .main-testimonia-section .item p {
    font-size: 16px
  }
}

.testimonial-section .group-btn {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px
}

.testimonial-section .group-btn .review-btn {
  width: 250px;
  text-align: start;
  padding: 10px;
  border: none;
  background-color: #fe6a13
}

.testimonial-section .group-btn .review-btn a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 16px
}

.testimonial-section .group-btn .review-btn a img {
  width: 40px;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px
}

@media(max-width: 500px) {
  .testimonial-section .group-btn {
    margin-top: 20px;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center
  }
}

footer {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../uploads/other/footer-background.jpg);
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 40px 0;
  position: relative
}

footer .logo {
  text-align: center
}

footer .logo img {
  width: auto
}

@media(max-width: 500px) {
  footer .logo img {
    width: 100%
  }
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.footer-img img {
  width: 150px
}

.contact-details {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 30px
}

.contact-box {
  width: 400px;
  display: flex;
  align-items: center;
  gap: 20px
}

.contact-box p {
  display: flex;
  flex-direction: column;
  text-align: start;
  color: #fff
}

.contact-box p a {
  color: #fff
}

@media(max-width: 768px) {
  .contact-box p {
    font-size: 16px
  }
}

.icon {
  border: 2px solid #ff914d;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff914d;
  font-size: 20px
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #fff;
  text-align: center
}

.footer-bottom a {
  color: #fff
}

.footer-bottom img {
  margin-top: 10px
}

.float-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 99;
  animation: floatAnimation 2.5s ease-in-out infinite
}

.float-btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px
}

.float-btn img {
  width: 100px
}

.float-btn p {
  padding: 6px;
  background: #fe6a13;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2)
}

@media(max-width: 500px) {
  .float-btn img {
    width: 75px
  }

  .float-btn p {
    font-size: 14px
  }
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(-10px)
  }
}

.gallery-page .gallery-section .gallery-grid {
  gap: 20px
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px
}

.contact-page .contact-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  transition: transform .3s, box-shadow .3s;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.contact-page .contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12)
}

.contact-page .contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #fe6a13
}

.contact-page .contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fe6a13, #ff8a4b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(254, 106, 19, .3)
}

.contact-page .contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark)
}

.contact-page .contact-card p {
  margin-bottom: 15px;
  color: #666
}

.contact-page .contact-card a {
  color: #fe6a13;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s
}

.contact-page .contact-card a:hover {
  color: var(--spice)
}

@media(max-width: 768px) {
  .contact-page .hero-content h1 {
    font-size: 2.5rem
  }

  .contact-page .form-section {
    padding: 40px 20px
  }

  .contact-page .contact-hero {
    height: 50vh
  }
}

@media(max-width: 480px) {
  .contact-page .hero-content h1 {
    font-size: 2rem
  }

  .contact-page .contact-card {
    padding: 30px 20px
  }

  .contact-page .hours-container h2,
  .contact-page .form-container h2 {
    font-size: 2rem
  }
}

.contact-page .map-section {
  display: flex
}

.contact-page .map-section iframe {
  width: 100%;
  height: 400px
}

.contact-page .main-contact-form-hours.section-padding {
  padding-top: 0
}

.contact-page .contact-form-hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem
}

.contact-page .contact-form-box,
.contact-page .business-hours-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  transition: transform .3s
}

.contact-page .contact-form-box:hover,
.contact-page .business-hours-box:hover {
  transform: translateY(-4px)
}

.contact-page .contact-form-box h3,
.contact-page .business-hours-box h3 {
  color: #fe6a13;
  margin-bottom: 1.5rem;
  font-size: 1.5rem
}

.contact-page .contact-form .form-group {
  margin-bottom: 1rem
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem
}

.contact-page .contact-form textarea {
  resize: vertical
}

.contact-page .btn-submit {
  background-color: #fe6a13;
  color: #fff;
  padding: .8rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .3s
}

.contact-page .btn-submit:hover {
  background-color: #e25b0f
}

.contact-page .business-hours-list {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #444
}

.contact-page .business-hours-list span {
  font-weight: 600;
  color: #fe6a13;
  display: inline-block;
  width: 120px
}

.catering-page .catering-request {
  padding: 80px 0;
  background-color: #f4efe3
}

.catering-page .container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto
}

.catering-page .catering-request__wrapper {
  display: flex;
  justify-content: center
}

.catering-page .catering-request__form {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  width: 100%;
  max-width: 800px
}

.catering-page .form-header {
  margin-bottom: 30px;
  text-align: center
}

.catering-page .form-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 10px
}

.catering-page .form-header p {
  color: #74787c;
  font-size: 1.05rem
}

.catering-page .catering-form {
  display: grid;
  gap: 25px
}

.catering-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.catering-page .form-group label {
  font-weight: 500;
  color: #1a1a1a;
  font-size: .95rem
}

.catering-page .required {
  color: #fe6a13;
  font-size: .85rem
}

.catering-page .catering-form input,
.catering-page .catering-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all .3s
}

.catering-page .catering-form input:focus,
.catering-page .catering-form textarea:focus {
  outline: none;
  border-color: #fe6a13;
  box-shadow: 0 0 0 3px rgba(254, 106, 19, .1)
}

.catering-page .double-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.catering-page .radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 5px
}

.catering-page .delivery-options {
  grid-template-columns: 1fr 1fr
}

.catering-page .radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer
}

.catering-page .radio-option input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 50%;
  transition: all .2s;
  position: relative;
  cursor: pointer;
  padding: 0
}

.catering-page .radio-option input[type=radio]:checked {
  border-color: #fe6a13
}

.catering-page .radio-option input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #fe6a13;
  border-radius: 50%
}

.catering-page .radio-label {
  font-weight: 400;
  color: #1a1a1a
}

.catering-page textarea {
  min-height: 100px;
  resize: vertical
}

.catering-page .delivery-address-group {
  display: none
}

.catering-page input[type=radio][value=delivery]:checked~.form-group .delivery-address-group {
  display: flex
}

.catering-page .submit-btn {
  background: #fe6a13;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background .3s, transform .2s;
  margin-top: 10px
}

.catering-page .submit-btn:hover {
  background: #e05a0b;
  transform: translateY(-2px)
}

@media(max-width: 768px) {
  .catering-page .catering-request {
    padding: 50px 0
  }

  .catering-page .catering-request__form {
    padding: 30px
  }

  .catering-page .double-fields {
    grid-template-columns: 1fr
  }

  .catering-page .radio-group {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width: 480px) {
  .catering-page .catering-request__form {
    padding: 25px 20px
  }

  .catering-page .form-header h2 {
    font-size: 1.8rem
  }

  .catering-page .radio-group {
    grid-template-columns: 1fr
  }
}

.menu-page {
  background-color: #f4efe3
}

.menu-page .menu-header {
  text-align: center;
  margin-bottom: 50px
}

.menu-page .menu-header h3 {
  font-size: 3rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block
}

.menu-page .menu-header h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fe6a13
}

.menu-page .menu-header p {
  color: #74787c;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem
}

.menu-page .menu-container {
  display: flex;
  gap: 30px
}

.menu-page .menu-sidebar {
  width: 280px;
  position: sticky;
  top: 20px;
  height: -moz-fit-content;
  height: fit-content
}

.menu-page .menu-categories {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
  padding: 20px
}

.menu-page .menu-categories h3 {
  color: #fe6a13;
  margin-bottom: 20px;
  font-size: 1.3rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee
}

.menu-page .category-list {
  list-style: none
}

@media(max-width: 992px) {
  .menu-page .category-list {
    display: flex;
    overflow-x: scroll
  }
}

.menu-page .category-item {
  margin-bottom: 12px
}

.menu-page .category-item a {
  display: block;
  padding: 10px 15px;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 6px;
  transition: all .3s;
  font-weight: 500
}

@media(max-width: 992px) {
  .menu-page .category-item a {
    width: -moz-max-content;
    width: max-content;
    padding: 10px;
    font-size: 16px
  }
}

.menu-page .category-item a:hover,
.menu-page .category-item a.active {
  background: rgba(254, 106, 19, .1);
  color: #fe6a13
}

.menu-page .category-item a.active {
  font-weight: 600
}

.menu-page .menu-content {
  flex: 1
}

.menu-page .menu-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
  padding: 30px;
  margin-bottom: 30px
}

@media(max-width: 500px) {
  .menu-page .menu-section {
    padding: 30px 10px
  }
}

.menu-page .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee
}

.menu-page .section-header h3 {
  color: #fe6a13;
  font-size: 1.8rem
}

.menu-page .section-header .discount-badge {
  background: #fe6a13;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600
}

.menu-page .menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px
}

.menu-page .menu-item {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s
}

.menu-page .menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1)
}

.menu-page .item-image {
  height: 180px;
  overflow: hidden;
  position: relative
}

.menu-page .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform .5s
}

.menu-page .menu-item:hover .item-image img {
  transform: scale(1.05)
}

.menu-page .item-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(254, 106, 19, .9);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 600;
  z-index: 1
}

.menu-page .item-details {
  padding: 20px
}

.menu-page .item-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px
}

.menu-page .item-title h3 {
  color: #1a1a1a;
  font-size: 1.2rem
}

.menu-page .item-price-options {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.menu-page .item-price-options span {
  font-weight: 600;
  color: #fe6a13;
  font-size: 15px
}

.menu-page .menu-subsection {
  margin-bottom: 40px
}

.menu-page .subsection-title {
  color: #fe6a13;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #fe6a13
}

.menu-page .item-price {
  color: #fe6a13;
  font-weight: 600
}

.menu-page .item-desc {
  color: #74787c;
  font-size: .95rem;
  line-height: 1.5;
  margin-bottom: 15px
}

.menu-page .item-footer {
  padding: 15px 20px;
  background: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.menu-page .item-rating {
  color: #fe6a13;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px
}

.menu-page .add-to-cart {
  background: #fe6a13;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background .3s;
  display: flex;
  align-items: center;
  gap: 8px
}

.menu-page .add-to-cart:hover {
  background: #e05a0b
}

.menu-page .add-to-cart i {
  font-size: .9rem
}

@media(max-width: 992px) {
  .menu-page .menu-container {
    flex-direction: column
  }

  .menu-page .menu-sidebar {
    width: 100%;
    position: sticky;
    top: 10px;
    z-index: 99
  }
}

@media(max-width: 768px) {
  .menu-page .menu-header h3 {
    font-size: 2.2rem
  }

  .menu-page .menu-items {
    grid-template-columns: 1fr
  }

  .menu-page .item-image {
    height: 220px
  }
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, .1);
  transform: translateX(100%);
  transition: transform .3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column
}

.cart-sidebar.open {
  transform: translateX(0)
}

.cart-sidebar .cart-items {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column
}

.cart-sidebar .cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee
}

.cart-sidebar .cart-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #1a1a1a
}

.cart-sidebar .cart-header .close {
  font-size: 1.2rem;
  cursor: pointer;
  color: #74787c
}

.cart-sidebar .cart-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  overflow-x: scroll
}

.cart-sidebar .cart-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin: 0px 10px 10px 0;
}

.cart-sidebar .item {
  display: flex;
  gap: 10px;
  align-items: center
}

.cart-sidebar .item .item-img img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px
}

.cart-sidebar .item-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #74787c;
  font-size: .9rem
}

.cart-sidebar .quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden
}

.cart-sidebar .quantity-btn {
  width: 25px;
  height: 25px;
  background-color: #f4efe3;
  border: none;
  color: #1a1a1a;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s
}

.cart-sidebar .quantity-btn:hover {
  background-color: #e6dabe
}

.cart-sidebar .quantity-btn:active {
  background-color: #ded0ac
}

.cart-sidebar .quantity {
  width: 30px;
  text-align: center;
  padding: 0 5px
}

.cart-sidebar .item-price {
  font-weight: bold;
  color: #1a1a1a;
  margin-top: 10px;
  display: block
}

.cart-sidebar .item-info h4 {
  margin: 0 0 8px 0;
  font-size: 1rem;
  color: #1a1a1a
}

.cart-sidebar .item-quantity {
  display: flex;
  justify-content: space-between;
  color: #74787c;
  font-size: .9rem
}

.cart-sidebar .item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  justify-content: space-between
}

.cart-sidebar .remove-btn {
  background: none;
  border: none;
  color: #74787c;
  cursor: pointer;
  transition: transform .2s, color .2s
}

.cart-sidebar .remove-btn:hover {
  color: #fe6a13;
  transform: scale(1.1)
}

.cart-sidebar .close-cart {
  cursor: pointer
}

@keyframes fadeOut {
  to {
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0
  }
}

.cart-sidebar .cart-item.removing {
  animation: fadeOut .3s forwards
}

.cart-sidebar .points-earned {
  margin: 15px 0;
  padding: 10px;
  background-color: #f4efe3;
  border-radius: 5px;
  text-align: center;
  font-size: .85rem;
  color: #74787c
}

.cart-sidebar .cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  padding-top: 15px;
  border-top: 1px solid #eee
}

.cart-sidebar .cart-subtotal h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #1a1a1a
}

.cart-sidebar .subtotal-amount {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a1a1a
}

.cart-sidebar .activation-notice {
  margin: 15px 0;
  text-align: center;
  font-size: .8rem;
  color: #74787c
}

.cart-sidebar .activation-notice p {
  margin: 5px 0
}

.cart-sidebar .checkout-btn {
  display: block;
  background-color: #fe6a13;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color .3s;
  margin-top: auto;
  margin-bottom: 20px;
  text-align: center
}

.cart-sidebar .checkout-btn:hover {
  background-color: #dd5201
}

.checkout-page .main-checkout-page {
  padding: 40px 0;
  background: #f9f5f0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif
}

.checkout-page .checkout-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative
}

.checkout-page .checkout-steps::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 3px;
  background: #ddd;
  z-index: 1
}

.checkout-page .step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 25%
}

.checkout-page .step-number {
  width: 30px;
  height: 30px;
  background: #ddd;
  color: #777;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: bold;
  border: 3px solid #fff
}

.checkout-page .step.active .step-number {
  background: #ff6b6b;
  color: #fff
}

.checkout-page .step.completed .step-number {
  background: #138808;
  color: #fff
}

.checkout-page .step-title {
  font-size: .9rem;
  color: #777
}

.checkout-page .step.active .step-title,
.checkout-page .step.completed .step-title {
  color: #333;
  font-weight: 500
}

.checkout-page .step-content {
  display: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  padding: 25px;
  margin-bottom: 25px
}

.checkout-page .step-content h2 {
  margin-bottom: 20px
}

@media(max-width: 500px) {
  .checkout-page .step-content {
    padding: 10px
  }
}

.checkout-page .step-content.active {
  display: block
}

.checkout-page .form-group {
  margin-bottom: 20px
}

.checkout-page .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
  font-size: .95rem
}

.checkout-page .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  transition: all .3s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .05)
}

.checkout-page .form-control:focus {
  border-color: #ff6b6b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, .1)
}

.checkout-page textarea.form-control {
  min-height: 100px;
  resize: vertical
}

.checkout-page .form-row {
  display: flex;
  gap: 15px
}

.checkout-page .form-row .form-group {
  flex: 1
}

.checkout-page .payment-method {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all .3s;
  background: #fff
}

.checkout-page .payment-method.selected {
  border-color: #ff6b6b;
  background: #fff9f9;
  box-shadow: 0 0 0 1px #ff6b6b
}

.checkout-page .payment-method label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0
}

.checkout-page .payment-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 50%;
  background: #f5f5f5;
  padding: 8px
}

.checkout-page .payment-method h4 {
  margin: 0 0 5px 0;
  color: #333
}

.checkout-page .payment-method p {
  margin: 0;
  color: #666;
  font-size: .9rem
}

.checkout-page .checkout-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 20px
}

.checkout-page .btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s
}

.checkout-page .btn-prev {
  background: #f0f0f0;
  border: 1px solid #ddd;
  color: #555
}

.checkout-page .btn-prev:hover {
  background: #e0e0e0
}

.checkout-page .btn-next {
  background: #ff6b6b;
  border: 1px solid #ff6b6b;
  color: #fff
}

.checkout-page .btn-next:hover {
  background: #e05e10
}

.checkout-page .thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.checkout-page .thank-you-popup.active {
  opacity: 1;
  pointer-events: all
}

.checkout-page .thank-you-content {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: popIn .4s
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

.checkout-page .thank-you-icon {
  font-size: 60px;
  color: #138808;
  margin-bottom: 20px
}

.checkout-page .thank-you-title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333
}

.checkout-page .thank-you-message {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6
}

.checkout-page .order-details {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  text-align: left
}

.checkout-page .order-number {
  font-weight: bold;
  color: #ff6b6b
}

.checkout-page .btn-close-popup {
  display: block;
  background: #ff6b6b;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  margin: 15px auto 0
}

.checkout-page .btn-close-popup a {
  padding: 12px 30px;
  color: #fff
}

@media(max-width: 768px) {
  .checkout-page .step-title {
    font-size: .7rem
  }

  .checkout-page .step-number {
    width: 25px;
    height: 25px;
    font-size: .8rem
  }

  .checkout-page .form-row {
    flex-direction: column;
    gap: 0
  }

  .checkout-page .payment-method label {
    flex-direction: column;
    align-items: flex-start
  }

  .checkout-page .payment-icon {
    margin-right: 0;
    margin-bottom: 10px
  }
}

.checkout-page .order-confimation-section .review-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px
}

@media(max-width: 500px) {
  .checkout-page .order-confimation-section .review-container {
    padding: 20px 10px
  }
}

.checkout-page .order-confimation-section .review-heading {
  text-align: center;
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px
}

.checkout-page .order-confimation-section .review-heading:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #ff6b6b, #ff9933)
}

.checkout-page .order-confimation-section .order-summary-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  padding: 25px;
  margin-bottom: 25px
}

.checkout-page .order-confimation-section .summary-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0
}

.checkout-page .order-confimation-section .summary-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.checkout-page .order-confimation-section .section-heading {
  font-size: 18px;
  color: #34495e;
  margin-bottom: 15px;
  display: flex;
  align-items: center
}

.checkout-page .order-confimation-section .section-icon {
  margin-right: 10px;
  font-size: 20px
}

.checkout-page .order-confimation-section .items-list {
  margin-top: 15px
}

.checkout-page .order-confimation-section .order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5
}

.checkout-page .order-confimation-section .order-item:last-child {
  border-bottom: none
}

.checkout-page .order-confimation-section .item-info {
  display: flex;
  flex-direction: column
}

.checkout-page .order-confimation-section .item-name {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px
}

.checkout-page .order-confimation-section .item-quantity {
  font-size: 13px;
  color: #7f8c8d
}

.checkout-page .order-confimation-section .item-price {
  font-weight: 600;
  color: #2c3e50
}

.checkout-page .order-confimation-section .delivery-details {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px
}

.checkout-page .order-confimation-section .detail-row {
  display: flex;
  margin-bottom: 8px;
  line-height: 1.5
}

.checkout-page .order-confimation-section .detail-row:last-child {
  margin-bottom: 0
}

.checkout-page .order-confimation-section .detail-label {
  font-weight: 500;
  color: #7f8c8d;
  min-width: 80px
}

.checkout-page .order-confimation-section .detail-value {
  color: #2c3e50;
  flex: 1
}

.checkout-page .order-confimation-section .payment-details {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px
}

.checkout-page .order-confimation-section .payment-method {
  display: flex;
  align-items: center
}

.checkout-page .order-confimation-section .payment-icon {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  -o-object-fit: contain;
  object-fit: contain
}

.checkout-page .order-confimation-section .order-total-section {
  margin-top: 25px;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px
}

.checkout-page .order-confimation-section .total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #7f8c8d
}

.checkout-page .order-confimation-section .grand-total {
  font-weight: 700;
  font-size: 18px;
  color: #2c3e50;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0
}

.checkout-page .order-confimation-section .checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px
}

.checkout-page .order-confimation-section .back-button {
  background: #fff;
  border: 1px solid #ddd;
  color: #7f8c8d;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center
}

.checkout-page .order-confimation-section .back-button:hover {
  background: #f5f5f5
}

.checkout-page .order-confimation-section .place-order-button {
  background: linear-gradient(to right, #ff6b6b, #ff9933);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(255, 107, 107, .25)
}

.checkout-page .order-confimation-section .place-order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, .35)
}

.checkout-page .order-confimation-section .fas {
  margin: 0 5px;
  font-size: 14px
}

@media(max-width: 768px) {
  .checkout-page .order-confimation-section .review-heading {
    font-size: 24px
  }

  .checkout-page .order-confimation-section .order-summary-box {
    padding: 15px
  }

  .checkout-page .order-confimation-section .checkout-actions {
    flex-direction: column
  }

  .checkout-page .order-confimation-section .back-button,
  .checkout-page .order-confimation-section .place-order-button {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px
  }

  .checkout-page .order-confimation-section .back-button {
    order: 2
  }

  .checkout-page .order-confimation-section .place-order-button {
    order: 1
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000
}

.popup-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, .2);
  position: relative;
  animation: popSlide .4s ease;
  text-align: center
}

.popup-box h3 {
  margin-top: 10px;
  font-size: 26px;
  color: #333
}

.popup-box p {
  margin: 20px 0;
  font-size: 17px;
  color: #666
}

.popup-btn {
  background-color: #28a745;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color .3s ease
}

.popup-btn:hover {
  background-color: #218838
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 26px;
  color: #888;
  cursor: pointer;
  transition: color .3s ease
}

.popup-close:hover {
  color: #000
}

@keyframes popSlide {
  from {
    opacity: 0;
    transform: translateY(-50px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.login-main {
  padding: 60px 0;
  background: #f4f4f4
}

.login-main .auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center
}

.login-main .auth-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
  width: 100%;
  max-width: 450px
}

.login-main .auth-box .tab-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px
}

.login-main .auth-box .tab-header .tab-btn {
  flex: 1;
  padding: 12px;
  background: #eee;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 6px 6px 0 0;
  transition: background .3s
}

.login-main .auth-box .tab-header .tab-btn.active {
  background: #fe6a13;
  color: #fff
}

.login-main .auth-box .tab-content .tab-panel {
  display: none
}

.login-main .auth-box .tab-content .tab-panel.active {
  display: block
}

.login-main .auth-box .auth-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px
}

.login-main .auth-box .auth-form .form-group {
  margin-bottom: 20px
}

.login-main .auth-box .auth-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500
}

.login-main .auth-box .auth-form .form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px
}

.login-main .auth-box .auth-form .form-group input:focus {
  border-color: #fe6a13;
  outline: none
}

.login-main .auth-box .auth-form .password-group {
  position: relative
}

.login-main .auth-box .auth-form .password-group .toggle-password {
  position: absolute;
  right: 12px;
  top: 38px;
  cursor: pointer;
  font-size: 18px;
  color: #888
}

.login-main .auth-box .auth-form .form-check {
  display: flex;
  align-items: center
}

.login-main .auth-box .auth-form .form-check input {
  margin-right: 8px
}

.login-main .auth-box .auth-form .form-check label {
  font-size: 14px
}

.login-main .auth-box .auth-form .btn.primary {
  width: 100%;
  padding: 12px;
  background: #fe6a13;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background .3s
}

.login-main .auth-box .auth-form .btn.primary:hover {
  background: #e25503
}

.auth-form .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px
}

.auth-form .form-footer .forgot-link {
  font-size: 14px;
  color: teal;
  text-decoration: none;
  transition: color .3s
}

.auth-form .form-footer .forgot-link:hover {
  color: #004d4d
}

.auth-form .or-divider {
  text-align: center;
  margin: 20px 0;
  position: relative
}

.auth-form .or-divider span {
  background: #fff;
  padding: 0 10px;
  position: relative;
  z-index: 1
}

.auth-form .or-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #ccc;
  left: 0;
  z-index: 0
}

.auth-form .google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-weight: 500;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  gap: 10px;
  cursor: pointer;
  transition: background .3s
}

.auth-form .google-btn img {
  width: 20px;
  height: 20px
}

.auth-form .google-btn:hover {
  background: #f1f1f1
}

.checkout-page .tabs {
  font-family: Arial, sans-serif;
  width: 100%
}

.checkout-page .tab-nav {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0
}

.checkout-page .tab-item {
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #ddd;
  flex-grow: 1;
  background-color: #fff;
  color: #333;
  transition: background-color .3s
}

.checkout-page .tab-item.active {
  background-color: #fe6a13;
  color: #fff
}

.checkout-page .tab-item:hover {
  background-color: #f3a346
}

.checkout-page .tab-content {
  margin-top: 20px
}

.checkout-page .tab-pane {
  display: none
}

.checkout-page .tab-pane.active {
  display: block
}

.checkout-page .tabs {
  font-family: Arial, sans-serif;
  width: 100%
}

.checkout-page .tab-nav {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0
}

.checkout-page .tab-item {
  padding: 10px 20px;
  cursor: pointer;
  text-align: center;
  border: 1px solid #ddd;
  flex-grow: 1;
  background-color: #fff;
  color: #333;
  transition: background-color .3s
}

.checkout-page .tab-item.active {
  background-color: #fe6a13;
  color: #fff
}

.checkout-page .tab-item:hover {
  background-color: #f3a346
}

.checkout-page .tab-content {
  margin-top: 20px
}

.checkout-page .tab-pane {
  display: none
}

.checkout-page .tab-pane.active {
  display: block
}

.checkout-page .radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.checkout-page .radio-group label {
  font-size: 14px;
  cursor: pointer
}

.checkout-page .radio-group input[type=radio] {
  margin-right: 10px
}

.item-footer .form-control {
  padding: 8px 15px;

  margin: 10px 0px;

  color: #fff;

  background: #3d3d3d;

  border-radius: 5px;

  border: none;
}

item-variations p {
  color: #000;
}

.item-variations strong {
  color: #fe6a13;

}

.cart-sidebar .cart-body::-webkit-scrollbar {
  width: 4px;
}

.cart-sidebar .cart-body::-webkit-scrollbar-thumb {
  background-color: #dbdbdb;
  border-radius: 4px;
}

.sticky {
  position: fixed;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
}


.d-none {
  display: none;
}

.blog-page .blog-container {
  padding: 60px 0;
}

.blog-item {
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 3px solid #fe6a13 ;
}
.blog-item .img{
  overflow: hidden;
  width: 100%;
}

.blog-item p a {
  font-size: 20px;
  font-weight: 600;
  color: rgb(17, 17, 17);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.blog-item img{
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}
.blog-item:hover img{
  transform: scale(1.2);
}

.blog-item h3 a:hover {
  color: #fe6a13;
}

.blog-sidebar{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 1rem;
}
.blog-sidebar h3{
  border-bottom: 1px solid #535353;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.blog-sidebar .item img{
  width: 120px;
  object-fit: cover;
}
.blog-sidebar .item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.blog-sidebar .item div p a{
 font-size: 14px;
 color: #333;
 font-weight: 500;
}
.blog-items .blog-main-title{
  font-size: 24px;
  font-weight: 700;
}
.blog-item .content p a{
  color: #fe6a13;
  font-size: 16px;
}



/* FAQ Section Styles */
.section_padding {
    padding: 80px 0;
}

.faq_accordion {
    max-width: 970px;
    display  : block;
    margin   : 0 auto;
}

.title_area {
    margin-bottom: 40px;
    position     : relative;
    z-index      : 1;
    text-align   : center;
}

.animate_title {
    position      : relative;
    font-size     : 32px;
    font-weight   : 700;
    color         : #000;
    padding-bottom: 20px;
    display       : inline-block;
    /*opacity       : 0;*/
    transform     : translateY(30px);
}

.animate_title::before,
.animate_title::after {
    content         : "";
    position        : absolute;
    height          : 3px;
    width           : 50px;
    background-color: red;
    bottom          : 0;
    transition      : 0.4s ease;
}

.animate_title::before {
    left: 0;
}

.animate_title::after {
    right: 0;
}

.animate_title:hover::before,
.animate_title:hover::after {
    width           : 80px;
    background-color: #ff6b35;
}

/* Accordion Styles */
.accordion_card {
    transition         : 0.4s ease-in-out;
    overflow           : hidden;
    /* background-color: #f0ebeb; */
    position           : relative;
    z-index            : 3;
    border-radius      : 8px;
    box-shadow         : 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom      : 24px;
}

.accordion_header {
    position: relative;
}

.accordion_button {
    width           : 100%;
    font-size       : 18px;
    font-weight     : 600;
    border          : 0;
    color           : #000;
    background-color: #ffffff;
    letter-spacing  : 0.02em;
    padding         : 24px 60px 24px 48px;
    text-align      : left;
    transition      : 0.3s;
    position        : relative;
    border-radius   : 8px 8px 0 0;
    cursor          : pointer;
    display         : flex;
    align-items     : center;
}

.accordion_button.active {
    color              : #000;
    /* background-color: #f0ebeb; */
    padding-bottom     : 15px;
}

.accordion_button h1,
.accordion_button h2,
.accordion_button h3 {
    font-size  : 18px;
    font-weight: 600;
    margin     : 0;
    color      : inherit;
}

.accordion_button::after {
    content    : "+";
    position   : absolute;
    right      : 30px;
    font-size  : 20px;
    font-weight: 500;
    color      : red;
    transition : 0.3s ease-in-out;
}

.accordion_button.active::after {
    content: "-";
    color  : orangered;
}

.accordion_collapse {
    max-height: 0;
    overflow  : hidden;
    transition: max-height 0.3s ease-out;
}

.accordion_collapse.show {
    max-height: 1000px;
    /* Adjust based on content */
}

.accordion_body {
    padding      : 0 48px 24px;
    border-radius: 0 0 8px 8px;
}

.faq_text {
    margin-bottom: 15px;
    color        : #000;
    line-height  : 1.6;
}

.faq_text ul {
    margin-top  : 10px;
    padding-left: 20px;
}

.accordion_body ul li {
    margin-bottom: 8px;
    color        : #111111;
}

.faq_text a {
    color          : orangered !important;
    text-decoration: none;
    font-weight    : 600;
}

.faq_text a:hover {
    text-decoration: underline;
}
.seo-none{
  display: none;
}
/* Animation */
@keyframes fadeUp {
    to {
        opacity  : 1;
        transform: translateY(0);
    }
}

