@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}
body {
  --display-font: 'Poppins', sans-serif;
  --display-font-weight: 400;

  --heading-font: 'Poppins', sans-serif;
  --heading-font-weight: 400;
  --heading-color: var(--bs-dark);
  --heading-line-height: 1.24;

  --swiper-theme-color: var(--bs-primary);
  --swiper-pagination-bottom: 20px;
  --swiper-pagination-bullet-inactive-color: #d7d7d7;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 15px;
  --swiper-pagination-bullet-size: 7px;
  --swiper-pagination-bullet-width: 7px;

  --custom-easing: cubic-bezier(0.17, 0.67, 0.83, 0.67);

  /* bootstrap */
  --bs-body-font-family: Roboto, sans-serif;
  --bs-body-font-size: 1.2rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.7;
  --bs-body-color: #8f8f8f;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #e73c13;
  --bs-primary-dark: #be3b1a;
  --bs-secondary: #6c757d;
  --bs-black: #020202;
  --bs-light: #f1f1f0;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 231, 60, 19;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 2, 2, 2;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: var(--bs-dark);
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-hover-color-rgb: 17, 17, 17;
}

@media only screen and (max-width: 991px) {
  body {
    --bs-body-font-size: 1.2rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  font-family: var(--display-font);
  font-weight: var(--display-font-weight);
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

/* Dropdown */
.dropdown-menu {
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
}

.dropdown-item {
  --bs-dropdown-item-padding-y: 0.5rem;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-link-color: var(--bs-black);
  --bs-dropdown-item-border-radius: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  --bs-dropdown-link-active-color: var(--bs-light);
  --bs-dropdown-link-active-bg: var(--bs-secondary);
}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
}

/* breadcrumb */
.breadcrumb {
  --bs-breadcrumb-item-padding-x: 1em;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* form control */
.form-control:focus {
  border-color: #ccc;
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, 0.25);
}

/* dark theme */
[data-bs-theme='dark'] {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-link-color: #cccccc;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-color-rgb: 204, 204, 204;
  --bs-link-hover-color-rgb: var(--bs-primary-rgb);
  --bs-body-color: #d1d1d1;
  --bs-body-bg: #020202;
  --bs-body-bg-rgb: 2, 2, 2;
}

.form-control {
  color: var(--bs-dark);
  background-color: var(--bs-light);
}

/* end of Bootstrap Color Theme */

/* letter spacing */
.ls-1 {
  letter-spacing: 0.1em;
}
.ls-2 {
  letter-spacing: 0.2em;
}

/* ============================================
	 TOP NAVIGATION (BAKERY, RESTO, KOPITIAM)
	 ============================================ */

#header .col-md-4:first-child ul {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  height: 100%;
}

#header .col-md-4:first-child ul li {
  position: relative;
  padding: 0;
  margin: 0;
}

#header .col-md-4:first-child ul li a {
  display: inline-block;
  padding: 12px 20px;
  color: #662a0c;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

/* Separator Between Items */
#header .col-md-4:first-child ul li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(98, 65, 30, 0.3),
    transparent
  );
}

/* Hover Effect */
#header .col-md-4:first-child ul li a::before {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e78b26, #662a0c);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#header .col-md-4:first-child ul li a:hover {
  color: #e78b26;
  transform: translateY(-2px);
}

#header .col-md-4:first-child ul li a:hover::before {
  width: calc(100% - 40px);
}

/* Active State */
#header .col-md-4:first-child ul li a.active {
  color: #e78b26;
  background: linear-gradient(
    135deg,
    rgba(231, 139, 38, 0.05) 0%,
    rgba(98, 65, 30, 0.05) 100%
  );
  border-radius: 25px;
}

/* ============================================
	 LOGO SECTION
	 ============================================ */

#header .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  transition: all 0.4s ease;
}

#header .navbar-brand img {
  max-height: 70px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 8px rgba(98, 65, 30, 0.1));
}

#header .navbar-brand:hover img {
  transform: scale(1.08) rotate(2deg);
  filter: drop-shadow(0 4px 12px rgba(231, 139, 38, 0.2));
}

/* Logo Glow Animation */
@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 2px 8px rgba(98, 65, 30, 0.1));
  }
  50% {
    filter: drop-shadow(0 4px 15px rgba(231, 139, 38, 0.3));
  }
}

#header .navbar-brand img {
  animation: logoGlow 3s ease-in-out infinite;
}

/* ============================================
	 SOCIAL ICONS & MEMBER BUTTON
	 ============================================ */

#header .col-md-4:last-child .d-flex {
  align-items: center;
  gap: 20px;
}

/* Social Icons */
#header .col-md-4:last-child ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
}

#header .col-md-4:last-child ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #f8f8f8);
  border: 2px solid rgba(98, 65, 30, 0.1);
  color: #662a0c;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#header .col-md-4:last-child ul li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

/* Social Media Hover Colors */
#header .col-md-4:last-child ul li a.fa-whatsapp:hover::before {
  background: linear-gradient(135deg, #25d366, #128c7e);
  width: 100%;
  height: 100%;
}

#header .col-md-4:last-child ul li a.fa-instagram:hover::before {
  background: linear-gradient(135deg, #e4405f, #c13584, #5b51d8);
  width: 100%;
  height: 100%;
}

#header .col-md-4:last-child ul li a.fa-tiktok:hover::before {
  background: linear-gradient(135deg, #000, #ff0050);
  width: 100%;
  height: 100%;
}

#header .col-md-4:last-child ul li a.fa-facebook-f:hover::before {
  background: linear-gradient(135deg, #1877f2, #0c63d4);
  width: 100%;
  height: 100%;
}

#header .col-md-4:last-child ul li a:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-color: transparent;
}

/* Member Login Button */
.member-login-btn .member-btn {
  background: linear-gradient(135deg, #662a0c, #8b5a3c);
  color: white !important;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(98, 65, 30, 0.2);
}

.member-login-btn .member-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.member-login-btn .member-btn:hover::before {
  left: 100%;
}

.member-login-btn .member-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 25px rgba(98, 65, 30, 0.3);
  background: linear-gradient(135deg, #8b5a3c, #e78b26);
}

.member-login-btn .member-btn i {
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.member-login-btn .member-btn:hover i {
  transform: rotate(360deg);
}

/* ============================================
	 MAIN NAVIGATION
	 ============================================ */

#header .navbar {
  padding: 10px 0;
  border-top: 1px solid rgba(98, 65, 30, 0.08);
}

#header .navbar-nav {
  align-items: center;
}

#header .navbar-nav .nav-item {
  margin: 0 5px;
}

#header .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#header .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 30px);
  height: 2px;
  background: linear-gradient(90deg, #e78b26, #662a0c);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
}

#header .navbar-nav .nav-link:hover,
#header .navbar-nav .nav-link.active {
  color: #e78b26;
  transform: translateY(-2px);
}

#header .navbar-nav .nav-link:hover::after,
#header .navbar-nav .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown Enhancement */
#header .dropdown-menu {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  animation: dropdownFadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes dropdownFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#header .dropdown-item {
  border-radius: 8px;
  padding: 10px 15px;
  margin: 2px 0;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

#header .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #e78b26, #662a0c);
  transition: height 0.3s ease;
}

#header .dropdown-item:hover {
  background: linear-gradient(
    90deg,
    rgba(231, 139, 38, 0.1) 0%,
    rgba(98, 65, 30, 0.05) 100%
  );
  padding-left: 25px;
  color: #662a0c;
}

#header .dropdown-item:hover::before {
  height: 70%;
}

/* ============================================
	 FOOTER MODERN STYLES
	 ============================================ */

.footer {
  background: linear-gradient(135deg, #62411e 0%, #8b5a3c 100%);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  animation: footerFadeIn 1s ease;
}

@keyframes footerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decorative Background Pattern */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(231, 139, 38, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(98, 65, 30, 0.08) 0%,
      transparent 70%
    );
  pointer-events: none;
}

/* Footer Container */
.footer .container-fluid {
  position: relative;
  z-index: 1;
}

/* Footer Logo Animation */
.footer-menu.logo {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-menu.logo img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.9);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-menu.logo:hover img {
  transform: scale(1.05) rotate(2deg);
  filter: brightness(0) invert(1) opacity(1);
}

/* Footer Headings */
.footer-menu h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-menu h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #e78b26, transparent);
  border-radius: 2px;
  animation: lineGrow 1s ease;
}

@keyframes lineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 50px;
  }
}

/* Footer Links */
.footer-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu .menu-item {
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
  animation-delay: calc(var(--item-index) * 0.1s);
}

.footer-menu .menu-item:nth-child(1) {
  --item-index: 1;
}
.footer-menu .menu-item:nth-child(2) {
  --item-index: 2;
}
.footer-menu .menu-item:nth-child(3) {
  --item-index: 3;
}
.footer-menu .menu-item:nth-child(4) {
  --item-index: 4;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-menu .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 5px 0;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-menu .nav-link::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-menu .nav-link:hover {
  color: #fff;
  padding-left: 15px;
}

.footer-menu .nav-link:hover::before {
  left: -15px;
  opacity: 1;
}

/* Halal Section */
.halal-section {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.halal-section:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-halal {
  width: 60px;
  height: auto;
  filter: brightness(0) invert(1);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.no-halal {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Contact Section */
.footer .box h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Social Media Icons */
.footer .share {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer .share a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.footer .share a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

.footer .box-container .box .share a.fa-whatsapp:hover,
.footer .box-container .box .share a.fab.fa-whatsapp:hover {
  background: #25d366;
  color: #fff !important;
  border-color: #25d366;
}

.footer .box-container .box .share a.fa-facebook-f:hover,
.footer .box-container .box .share a.fab.fa-facebook-f:hover {
  background: #1877f2;
  color: #fff !important;
  border-color: #1877f2;
}

.footer .box-container .box .share a.fa-instagram:hover,
.footer .box-container .box .share a.fab.fa-instagram:hover {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff !important;
  border-color: transparent;
}

.footer .box-container .box .share a.fa-tiktok:hover,
.footer .box-container .box .share a.fab.fa-tiktok:hover {
  background: #000;
  color: #fff !important;
  border-color: #000;
}

/* Override any conflicting styles */
.footer .share a i,
.footer .share a.fab {
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

/* Footer Credit */
.footer .credit {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.footer .credit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e78b26, transparent);
  animation: creditLine 3s linear infinite;
}

@keyframes creditLine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.footer .credit span {
  color: #e78b26;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(231, 139, 38, 0.3);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(231, 139, 38, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(231, 139, 38, 0.5);
  }
}

/* ============================================
	 RESPONSIVE DESIGN
	 ============================================ */

/* Tablet View */
@media (max-width: 991px) {
  /* Header Adjustments */
  #header .container-fluid {
    padding: 0 15px;
  }

  #header .col-md-4:first-child ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  #header .col-md-4:first-child ul li a {
    padding: 8px 12px;
    font-size: 12px;
  }

  #header .navbar-brand img {
    max-height: 60px;
  }

  /* Offcanvas Menu */
  .offcanvas {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
  }

  .offcanvas-header {
    border-bottom: 1px solid rgba(98, 65, 30, 0.1);
  }

  .offcanvas-body .nav-item {
    border-bottom: 1px solid rgba(98, 65, 30, 0.08);
    opacity: 0;
    animation: slideInRight 0.5s ease forwards;
    animation-delay: calc(var(--item-index) * 0.1s);
  }

  @keyframes slideInRight {
    0% {
      opacity: 0;
      transform: translateX(-30px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Footer Adjustments */
  .footer .box-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .footer-menu h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Mobile View */
@media (max-width: 768px) {

  /* Header */
  #header {
    padding: 5px 0;
  }

  #header .topper {
    height: 8px;
  }

  #header .col-md-4 {
    padding: 5px;
  }

  #header .col-md-4:first-child ul {
    gap: 0;
    justify-content: center;
  }

  #header .col-md-4:first-child ul li a {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  #header .col-md-4:first-child ul li:not(:last-child)::after {
    height: 15px;
  }

  #header .navbar-brand {
    padding: 10px 0;
  }

  #header .navbar-brand img {
    max-height: 50px;
  }

  #header .col-md-4:last-child ul {
    gap: 8px;
  }

  #header .col-md-4:last-child ul li a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .member-login-btn .member-btn {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 20px;
  }

  /* Footer */
  .footer {
    padding-top: 40px;
  }

  .footer .box-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-menu h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .halal-section {
    justify-content: center;
  }

  .footer .share {
    justify-content: center;
  }

  .footer .credit {
    font-size: 12px;
    padding: 15px 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  /* Header */
  #header .col-md-4:first-child ul li a {
    padding: 6px 8px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  #header .navbar-brand img {
    max-height: 40px;
  }

  #header .col-md-4:last-child {
    padding: 5px;
  }

  #header .col-md-4:last-child ul li a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .member-login-btn {
    display: none;
  }

  /* Footer */
  .footer-menu h5 {
    font-size: 16px;
  }

  .footer .share a {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* ============================================
	 UTILITY ANIMATIONS
	 ============================================ */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Page transitions */
* {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Focus states */
a:focus,
button:focus {
  outline: 2px solid #e78b26;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: rgba(231, 139, 38, 0.2);
  color: #662a0c;
}

::-moz-selection {
  background: rgba(231, 139, 38, 0.2);
  color: #662a0c;
}

/* ------ Quantity ------*/
.product-quantity .qty-number {
  margin-right: 20px;
}

.product-quantity .input-group .btn {
  height: 48px;
  border: 1px solid #ccc;
}

.qty-number .quntity-button {
  min-width: 40px;
  height: 40px;
  font-size: 1.8em;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  background-color: var(--accent-dim-color);
  transition: 0.5s all ease-in-out;
}

.qty-number .quntity-button:hover {
  background-color: var(--accent-lit-color);
}

.qty-number input {
  font-size: 1.4em;
  width: 50px;
  height: 40px;
  text-align: center;
  border-radius: 0;
  border: 1px solid var(--dark-color);
}

.qty-field .regular-price {
  display: none;
}

/* swiper */
.swiper-prev,
.swiper-next {
  position: absolute;
  /* background: #fff; */
  width: 70px;
  height: 70px;
  z-index: 10;
  top: 50%;
  color: #333;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-prev {
  left: 0;
}

.swiper-next {
  right: 0;
}

/* btn-link */
.btn-link {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8em;
  letter-spacing: 2px;
}

/* bg-overlay */
.bg-overlay {
  position: relative;
}
.bg-overlay::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* -- Product Card
--------------------------------------------------------------*/
.product-item .product-image img {
  transition: 0.3s ease-out;
}

.product-item:hover .product-image img {
  transform: scale(1.1);
}

.product-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

/* btn cart */
.product-item {
  position: relative;
}

.product-item .btn-cart {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  background-color: #fff;
  padding: 20px;
  text-transform: uppercase;
  z-index: 1;
  transition: opacity 0.3s ease-out;
}

.product-item:hover .btn-cart {
  opacity: 1;
}
/*
- Jarallax
- Chocolat
- GlightBox
*/

/*--------------------------------------------------------------
/** Jarallax
--------------------------------------------------------------*/
.jarallax {
  position: relative;
  z-index: 0;
  min-height: 420px;
}

.jarallax > .jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.jarallax-keep-img {
  position: relative;
  z-index: 0;
}

.jarallax-keep-img > .jarallax-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  z-index: -100;
}

/*--------------------------------------------------------------
/** Colorbox Lightbox
--------------------------------------------------------------*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
}
#colorbox {
  outline: 0;
}
#cboxContent {
  margin-top: 20px;
  background: #000;
}
.cboxIframe {
  background: #fff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
  border: 5px solid #000;
  background: #fff;
}
#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc;
}
#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc;
}
#cboxLoadingGraphic {
  background: url(../images/colorbox/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}
#cboxPrevious {
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -32px;
  background: url(../images/colorbox/controls.png) no-repeat top left;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: bottom left;
}
#cboxNext {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -32px;
  background: url(../images/colorbox/controls.png) no-repeat top right;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: bottom right;
}
#cboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: url(../images/colorbox/controls.png) no-repeat top center;
  width: 38px;
  height: 19px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: bottom center;
}

/* AOS  */

[data-aos][data-aos][data-aos-duration='50'],
body[data-aos-duration='50'] [data-aos] {
  transition-duration: 50ms;
}
[data-aos][data-aos][data-aos-delay='50'],
body[data-aos-delay='50'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='50'].aos-animate,
body[data-aos-delay='50'] [data-aos].aos-animate {
  transition-delay: 50ms;
}
[data-aos][data-aos][data-aos-duration='100'],
body[data-aos-duration='100'] [data-aos] {
  transition-duration: 0.1s;
}
[data-aos][data-aos][data-aos-delay='100'],
body[data-aos-delay='100'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='100'].aos-animate,
body[data-aos-delay='100'] [data-aos].aos-animate {
  transition-delay: 0.1s;
}
[data-aos][data-aos][data-aos-duration='150'],
body[data-aos-duration='150'] [data-aos] {
  transition-duration: 0.15s;
}
[data-aos][data-aos][data-aos-delay='150'],
body[data-aos-delay='150'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='150'].aos-animate,
body[data-aos-delay='150'] [data-aos].aos-animate {
  transition-delay: 0.15s;
}
[data-aos][data-aos][data-aos-duration='200'],
body[data-aos-duration='200'] [data-aos] {
  transition-duration: 0.2s;
}
[data-aos][data-aos][data-aos-delay='200'],
body[data-aos-delay='200'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='200'].aos-animate,
body[data-aos-delay='200'] [data-aos].aos-animate {
  transition-delay: 0.2s;
}
[data-aos][data-aos][data-aos-duration='250'],
body[data-aos-duration='250'] [data-aos] {
  transition-duration: 0.25s;
}
[data-aos][data-aos][data-aos-delay='250'],
body[data-aos-delay='250'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='250'].aos-animate,
body[data-aos-delay='250'] [data-aos].aos-animate {
  transition-delay: 0.25s;
}
[data-aos][data-aos][data-aos-duration='300'],
body[data-aos-duration='300'] [data-aos] {
  transition-duration: 0.3s;
}
[data-aos][data-aos][data-aos-delay='300'],
body[data-aos-delay='300'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='300'].aos-animate,
body[data-aos-delay='300'] [data-aos].aos-animate {
  transition-delay: 0.3s;
}
[data-aos][data-aos][data-aos-duration='350'],
body[data-aos-duration='350'] [data-aos] {
  transition-duration: 0.35s;
}
[data-aos][data-aos][data-aos-delay='350'],
body[data-aos-delay='350'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='350'].aos-animate,
body[data-aos-delay='350'] [data-aos].aos-animate {
  transition-delay: 0.35s;
}
[data-aos][data-aos][data-aos-duration='400'],
body[data-aos-duration='400'] [data-aos] {
  transition-duration: 0.4s;
}
[data-aos][data-aos][data-aos-delay='400'],
body[data-aos-delay='400'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='400'].aos-animate,
body[data-aos-delay='400'] [data-aos].aos-animate {
  transition-delay: 0.4s;
}
[data-aos][data-aos][data-aos-duration='450'],
body[data-aos-duration='450'] [data-aos] {
  transition-duration: 0.45s;
}
[data-aos][data-aos][data-aos-delay='450'],
body[data-aos-delay='450'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='450'].aos-animate,
body[data-aos-delay='450'] [data-aos].aos-animate {
  transition-delay: 0.45s;
}
[data-aos][data-aos][data-aos-duration='500'],
body[data-aos-duration='500'] [data-aos] {
  transition-duration: 0.5s;
}
[data-aos][data-aos][data-aos-delay='500'],
body[data-aos-delay='500'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='500'].aos-animate,
body[data-aos-delay='500'] [data-aos].aos-animate {
  transition-delay: 0.5s;
}
[data-aos][data-aos][data-aos-duration='550'],
body[data-aos-duration='550'] [data-aos] {
  transition-duration: 0.55s;
}
[data-aos][data-aos][data-aos-delay='550'],
body[data-aos-delay='550'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='550'].aos-animate,
body[data-aos-delay='550'] [data-aos].aos-animate {
  transition-delay: 0.55s;
}
[data-aos][data-aos][data-aos-duration='600'],
body[data-aos-duration='600'] [data-aos] {
  transition-duration: 0.6s;
}
[data-aos][data-aos][data-aos-delay='600'],
body[data-aos-delay='600'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='600'].aos-animate,
body[data-aos-delay='600'] [data-aos].aos-animate {
  transition-delay: 0.6s;
}
[data-aos][data-aos][data-aos-duration='650'],
body[data-aos-duration='650'] [data-aos] {
  transition-duration: 0.65s;
}
[data-aos][data-aos][data-aos-delay='650'],
body[data-aos-delay='650'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='650'].aos-animate,
body[data-aos-delay='650'] [data-aos].aos-animate {
  transition-delay: 0.65s;
}
[data-aos][data-aos][data-aos-duration='700'],
body[data-aos-duration='700'] [data-aos] {
  transition-duration: 0.7s;
}
[data-aos][data-aos][data-aos-delay='700'],
body[data-aos-delay='700'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='700'].aos-animate,
body[data-aos-delay='700'] [data-aos].aos-animate {
  transition-delay: 0.7s;
}
[data-aos][data-aos][data-aos-duration='750'],
body[data-aos-duration='750'] [data-aos] {
  transition-duration: 0.75s;
}
[data-aos][data-aos][data-aos-delay='750'],
body[data-aos-delay='750'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='750'].aos-animate,
body[data-aos-delay='750'] [data-aos].aos-animate {
  transition-delay: 0.75s;
}
[data-aos][data-aos][data-aos-duration='800'],
body[data-aos-duration='800'] [data-aos] {
  transition-duration: 0.8s;
}
[data-aos][data-aos][data-aos-delay='800'],
body[data-aos-delay='800'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='800'].aos-animate,
body[data-aos-delay='800'] [data-aos].aos-animate {
  transition-delay: 0.8s;
}
[data-aos][data-aos][data-aos-duration='850'],
body[data-aos-duration='850'] [data-aos] {
  transition-duration: 0.85s;
}
[data-aos][data-aos][data-aos-delay='850'],
body[data-aos-delay='850'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='850'].aos-animate,
body[data-aos-delay='850'] [data-aos].aos-animate {
  transition-delay: 0.85s;
}
[data-aos][data-aos][data-aos-duration='900'],
body[data-aos-duration='900'] [data-aos] {
  transition-duration: 0.9s;
}
[data-aos][data-aos][data-aos-delay='900'],
body[data-aos-delay='900'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='900'].aos-animate,
body[data-aos-delay='900'] [data-aos].aos-animate {
  transition-delay: 0.9s;
}
[data-aos][data-aos][data-aos-duration='950'],
body[data-aos-duration='950'] [data-aos] {
  transition-duration: 0.95s;
}
[data-aos][data-aos][data-aos-delay='950'],
body[data-aos-delay='950'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='950'].aos-animate,
body[data-aos-delay='950'] [data-aos].aos-animate {
  transition-delay: 0.95s;
}
[data-aos][data-aos][data-aos-duration='1000'],
body[data-aos-duration='1000'] [data-aos] {
  transition-duration: 1s;
}
[data-aos][data-aos][data-aos-delay='1000'],
body[data-aos-delay='1000'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1000'].aos-animate,
body[data-aos-delay='1000'] [data-aos].aos-animate {
  transition-delay: 1s;
}
[data-aos][data-aos][data-aos-duration='1050'],
body[data-aos-duration='1050'] [data-aos] {
  transition-duration: 1.05s;
}
[data-aos][data-aos][data-aos-delay='1050'],
body[data-aos-delay='1050'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1050'].aos-animate,
body[data-aos-delay='1050'] [data-aos].aos-animate {
  transition-delay: 1.05s;
}
[data-aos][data-aos][data-aos-duration='1100'],
body[data-aos-duration='1100'] [data-aos] {
  transition-duration: 1.1s;
}
[data-aos][data-aos][data-aos-delay='1100'],
body[data-aos-delay='1100'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1100'].aos-animate,
body[data-aos-delay='1100'] [data-aos].aos-animate {
  transition-delay: 1.1s;
}
[data-aos][data-aos][data-aos-duration='1150'],
body[data-aos-duration='1150'] [data-aos] {
  transition-duration: 1.15s;
}
[data-aos][data-aos][data-aos-delay='1150'],
body[data-aos-delay='1150'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1150'].aos-animate,
body[data-aos-delay='1150'] [data-aos].aos-animate {
  transition-delay: 1.15s;
}
[data-aos][data-aos][data-aos-duration='1200'],
body[data-aos-duration='1200'] [data-aos] {
  transition-duration: 1.2s;
}
[data-aos][data-aos][data-aos-delay='1200'],
body[data-aos-delay='1200'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1200'].aos-animate,
body[data-aos-delay='1200'] [data-aos].aos-animate {
  transition-delay: 1.2s;
}
[data-aos][data-aos][data-aos-duration='1250'],
body[data-aos-duration='1250'] [data-aos] {
  transition-duration: 1.25s;
}
[data-aos][data-aos][data-aos-delay='1250'],
body[data-aos-delay='1250'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1250'].aos-animate,
body[data-aos-delay='1250'] [data-aos].aos-animate {
  transition-delay: 1.25s;
}
[data-aos][data-aos][data-aos-duration='1300'],
body[data-aos-duration='1300'] [data-aos] {
  transition-duration: 1.3s;
}
[data-aos][data-aos][data-aos-delay='1300'],
body[data-aos-delay='1300'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1300'].aos-animate,
body[data-aos-delay='1300'] [data-aos].aos-animate {
  transition-delay: 1.3s;
}
[data-aos][data-aos][data-aos-duration='1350'],
body[data-aos-duration='1350'] [data-aos] {
  transition-duration: 1.35s;
}
[data-aos][data-aos][data-aos-delay='1350'],
body[data-aos-delay='1350'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1350'].aos-animate,
body[data-aos-delay='1350'] [data-aos].aos-animate {
  transition-delay: 1.35s;
}
[data-aos][data-aos][data-aos-duration='1400'],
body[data-aos-duration='1400'] [data-aos] {
  transition-duration: 1.4s;
}
[data-aos][data-aos][data-aos-delay='1400'],
body[data-aos-delay='1400'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1400'].aos-animate,
body[data-aos-delay='1400'] [data-aos].aos-animate {
  transition-delay: 1.4s;
}
[data-aos][data-aos][data-aos-duration='1450'],
body[data-aos-duration='1450'] [data-aos] {
  transition-duration: 1.45s;
}
[data-aos][data-aos][data-aos-delay='1450'],
body[data-aos-delay='1450'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1450'].aos-animate,
body[data-aos-delay='1450'] [data-aos].aos-animate {
  transition-delay: 1.45s;
}
[data-aos][data-aos][data-aos-duration='1500'],
body[data-aos-duration='1500'] [data-aos] {
  transition-duration: 1.5s;
}
[data-aos][data-aos][data-aos-delay='1500'],
body[data-aos-delay='1500'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1500'].aos-animate,
body[data-aos-delay='1500'] [data-aos].aos-animate {
  transition-delay: 1.5s;
}
[data-aos][data-aos][data-aos-duration='1550'],
body[data-aos-duration='1550'] [data-aos] {
  transition-duration: 1.55s;
}
[data-aos][data-aos][data-aos-delay='1550'],
body[data-aos-delay='1550'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1550'].aos-animate,
body[data-aos-delay='1550'] [data-aos].aos-animate {
  transition-delay: 1.55s;
}
[data-aos][data-aos][data-aos-duration='1600'],
body[data-aos-duration='1600'] [data-aos] {
  transition-duration: 1.6s;
}
[data-aos][data-aos][data-aos-delay='1600'],
body[data-aos-delay='1600'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1600'].aos-animate,
body[data-aos-delay='1600'] [data-aos].aos-animate {
  transition-delay: 1.6s;
}
[data-aos][data-aos][data-aos-duration='1650'],
body[data-aos-duration='1650'] [data-aos] {
  transition-duration: 1.65s;
}
[data-aos][data-aos][data-aos-delay='1650'],
body[data-aos-delay='1650'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1650'].aos-animate,
body[data-aos-delay='1650'] [data-aos].aos-animate {
  transition-delay: 1.65s;
}
[data-aos][data-aos][data-aos-duration='1700'],
body[data-aos-duration='1700'] [data-aos] {
  transition-duration: 1.7s;
}
[data-aos][data-aos][data-aos-delay='1700'],
body[data-aos-delay='1700'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1700'].aos-animate,
body[data-aos-delay='1700'] [data-aos].aos-animate {
  transition-delay: 1.7s;
}
[data-aos][data-aos][data-aos-duration='1750'],
body[data-aos-duration='1750'] [data-aos] {
  transition-duration: 1.75s;
}
[data-aos][data-aos][data-aos-delay='1750'],
body[data-aos-delay='1750'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1750'].aos-animate,
body[data-aos-delay='1750'] [data-aos].aos-animate {
  transition-delay: 1.75s;
}
[data-aos][data-aos][data-aos-duration='1800'],
body[data-aos-duration='1800'] [data-aos] {
  transition-duration: 1.8s;
}
[data-aos][data-aos][data-aos-delay='1800'],
body[data-aos-delay='1800'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1800'].aos-animate,
body[data-aos-delay='1800'] [data-aos].aos-animate {
  transition-delay: 1.8s;
}
[data-aos][data-aos][data-aos-duration='1850'],
body[data-aos-duration='1850'] [data-aos] {
  transition-duration: 1.85s;
}
[data-aos][data-aos][data-aos-delay='1850'],
body[data-aos-delay='1850'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1850'].aos-animate,
body[data-aos-delay='1850'] [data-aos].aos-animate {
  transition-delay: 1.85s;
}
[data-aos][data-aos][data-aos-duration='1900'],
body[data-aos-duration='1900'] [data-aos] {
  transition-duration: 1.9s;
}
[data-aos][data-aos][data-aos-delay='1900'],
body[data-aos-delay='1900'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1900'].aos-animate,
body[data-aos-delay='1900'] [data-aos].aos-animate {
  transition-delay: 1.9s;
}
[data-aos][data-aos][data-aos-duration='1950'],
body[data-aos-duration='1950'] [data-aos] {
  transition-duration: 1.95s;
}
[data-aos][data-aos][data-aos-delay='1950'],
body[data-aos-delay='1950'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='1950'].aos-animate,
body[data-aos-delay='1950'] [data-aos].aos-animate {
  transition-delay: 1.95s;
}
[data-aos][data-aos][data-aos-duration='2000'],
body[data-aos-duration='2000'] [data-aos] {
  transition-duration: 2s;
}
[data-aos][data-aos][data-aos-delay='2000'],
body[data-aos-delay='2000'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2000'].aos-animate,
body[data-aos-delay='2000'] [data-aos].aos-animate {
  transition-delay: 2s;
}
[data-aos][data-aos][data-aos-duration='2050'],
body[data-aos-duration='2050'] [data-aos] {
  transition-duration: 2.05s;
}
[data-aos][data-aos][data-aos-delay='2050'],
body[data-aos-delay='2050'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2050'].aos-animate,
body[data-aos-delay='2050'] [data-aos].aos-animate {
  transition-delay: 2.05s;
}
[data-aos][data-aos][data-aos-duration='2100'],
body[data-aos-duration='2100'] [data-aos] {
  transition-duration: 2.1s;
}
[data-aos][data-aos][data-aos-delay='2100'],
body[data-aos-delay='2100'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2100'].aos-animate,
body[data-aos-delay='2100'] [data-aos].aos-animate {
  transition-delay: 2.1s;
}
[data-aos][data-aos][data-aos-duration='2150'],
body[data-aos-duration='2150'] [data-aos] {
  transition-duration: 2.15s;
}
[data-aos][data-aos][data-aos-delay='2150'],
body[data-aos-delay='2150'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2150'].aos-animate,
body[data-aos-delay='2150'] [data-aos].aos-animate {
  transition-delay: 2.15s;
}
[data-aos][data-aos][data-aos-duration='2200'],
body[data-aos-duration='2200'] [data-aos] {
  transition-duration: 2.2s;
}
[data-aos][data-aos][data-aos-delay='2200'],
body[data-aos-delay='2200'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2200'].aos-animate,
body[data-aos-delay='2200'] [data-aos].aos-animate {
  transition-delay: 2.2s;
}
[data-aos][data-aos][data-aos-duration='2250'],
body[data-aos-duration='2250'] [data-aos] {
  transition-duration: 2.25s;
}
[data-aos][data-aos][data-aos-delay='2250'],
body[data-aos-delay='2250'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2250'].aos-animate,
body[data-aos-delay='2250'] [data-aos].aos-animate {
  transition-delay: 2.25s;
}
[data-aos][data-aos][data-aos-duration='2300'],
body[data-aos-duration='2300'] [data-aos] {
  transition-duration: 2.3s;
}
[data-aos][data-aos][data-aos-delay='2300'],
body[data-aos-delay='2300'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2300'].aos-animate,
body[data-aos-delay='2300'] [data-aos].aos-animate {
  transition-delay: 2.3s;
}
[data-aos][data-aos][data-aos-duration='2350'],
body[data-aos-duration='2350'] [data-aos] {
  transition-duration: 2.35s;
}
[data-aos][data-aos][data-aos-delay='2350'],
body[data-aos-delay='2350'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2350'].aos-animate,
body[data-aos-delay='2350'] [data-aos].aos-animate {
  transition-delay: 2.35s;
}
[data-aos][data-aos][data-aos-duration='2400'],
body[data-aos-duration='2400'] [data-aos] {
  transition-duration: 2.4s;
}
[data-aos][data-aos][data-aos-delay='2400'],
body[data-aos-delay='2400'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2400'].aos-animate,
body[data-aos-delay='2400'] [data-aos].aos-animate {
  transition-delay: 2.4s;
}
[data-aos][data-aos][data-aos-duration='2450'],
body[data-aos-duration='2450'] [data-aos] {
  transition-duration: 2.45s;
}
[data-aos][data-aos][data-aos-delay='2450'],
body[data-aos-delay='2450'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2450'].aos-animate,
body[data-aos-delay='2450'] [data-aos].aos-animate {
  transition-delay: 2.45s;
}
[data-aos][data-aos][data-aos-duration='2500'],
body[data-aos-duration='2500'] [data-aos] {
  transition-duration: 2.5s;
}
[data-aos][data-aos][data-aos-delay='2500'],
body[data-aos-delay='2500'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2500'].aos-animate,
body[data-aos-delay='2500'] [data-aos].aos-animate {
  transition-delay: 2.5s;
}
[data-aos][data-aos][data-aos-duration='2550'],
body[data-aos-duration='2550'] [data-aos] {
  transition-duration: 2.55s;
}
[data-aos][data-aos][data-aos-delay='2550'],
body[data-aos-delay='2550'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2550'].aos-animate,
body[data-aos-delay='2550'] [data-aos].aos-animate {
  transition-delay: 2.55s;
}
[data-aos][data-aos][data-aos-duration='2600'],
body[data-aos-duration='2600'] [data-aos] {
  transition-duration: 2.6s;
}
[data-aos][data-aos][data-aos-delay='2600'],
body[data-aos-delay='2600'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2600'].aos-animate,
body[data-aos-delay='2600'] [data-aos].aos-animate {
  transition-delay: 2.6s;
}
[data-aos][data-aos][data-aos-duration='2650'],
body[data-aos-duration='2650'] [data-aos] {
  transition-duration: 2.65s;
}
[data-aos][data-aos][data-aos-delay='2650'],
body[data-aos-delay='2650'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2650'].aos-animate,
body[data-aos-delay='2650'] [data-aos].aos-animate {
  transition-delay: 2.65s;
}
[data-aos][data-aos][data-aos-duration='2700'],
body[data-aos-duration='2700'] [data-aos] {
  transition-duration: 2.7s;
}
[data-aos][data-aos][data-aos-delay='2700'],
body[data-aos-delay='2700'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2700'].aos-animate,
body[data-aos-delay='2700'] [data-aos].aos-animate {
  transition-delay: 2.7s;
}
[data-aos][data-aos][data-aos-duration='2750'],
body[data-aos-duration='2750'] [data-aos] {
  transition-duration: 2.75s;
}
[data-aos][data-aos][data-aos-delay='2750'],
body[data-aos-delay='2750'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2750'].aos-animate,
body[data-aos-delay='2750'] [data-aos].aos-animate {
  transition-delay: 2.75s;
}
[data-aos][data-aos][data-aos-duration='2800'],
body[data-aos-duration='2800'] [data-aos] {
  transition-duration: 2.8s;
}
[data-aos][data-aos][data-aos-delay='2800'],
body[data-aos-delay='2800'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2800'].aos-animate,
body[data-aos-delay='2800'] [data-aos].aos-animate {
  transition-delay: 2.8s;
}
[data-aos][data-aos][data-aos-duration='2850'],
body[data-aos-duration='2850'] [data-aos] {
  transition-duration: 2.85s;
}
[data-aos][data-aos][data-aos-delay='2850'],
body[data-aos-delay='2850'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2850'].aos-animate,
body[data-aos-delay='2850'] [data-aos].aos-animate {
  transition-delay: 2.85s;
}
[data-aos][data-aos][data-aos-duration='2900'],
body[data-aos-duration='2900'] [data-aos] {
  transition-duration: 2.9s;
}
[data-aos][data-aos][data-aos-delay='2900'],
body[data-aos-delay='2900'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2900'].aos-animate,
body[data-aos-delay='2900'] [data-aos].aos-animate {
  transition-delay: 2.9s;
}
[data-aos][data-aos][data-aos-duration='2950'],
body[data-aos-duration='2950'] [data-aos] {
  transition-duration: 2.95s;
}
[data-aos][data-aos][data-aos-delay='2950'],
body[data-aos-delay='2950'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='2950'].aos-animate,
body[data-aos-delay='2950'] [data-aos].aos-animate {
  transition-delay: 2.95s;
}
[data-aos][data-aos][data-aos-duration='3000'],
body[data-aos-duration='3000'] [data-aos] {
  transition-duration: 3s;
}
[data-aos][data-aos][data-aos-delay='3000'],
body[data-aos-delay='3000'] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay='3000'].aos-animate,
body[data-aos-delay='3000'] [data-aos].aos-animate {
  transition-delay: 3s;
}
[data-aos][data-aos][data-aos-easing='linear'],
body[data-aos-easing='linear'] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
[data-aos][data-aos][data-aos-easing='ease'],
body[data-aos-easing='ease'] [data-aos] {
  transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-easing='ease-in'],
body[data-aos-easing='ease-in'] [data-aos] {
  transition-timing-function: ease-in;
}
[data-aos][data-aos][data-aos-easing='ease-out'],
body[data-aos-easing='ease-out'] [data-aos] {
  transition-timing-function: ease-out;
}
[data-aos][data-aos][data-aos-easing='ease-in-out'],
body[data-aos-easing='ease-in-out'] [data-aos] {
  transition-timing-function: ease-in-out;
}
[data-aos][data-aos][data-aos-easing='ease-in-back'],
body[data-aos-easing='ease-in-back'] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
[data-aos][data-aos][data-aos-easing='ease-out-back'],
body[data-aos-easing='ease-out-back'] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-aos][data-aos][data-aos-easing='ease-in-out-back'],
body[data-aos-easing='ease-in-out-back'] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos][data-aos][data-aos-easing='ease-in-sine'],
body[data-aos-easing='ease-in-sine'] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
[data-aos][data-aos][data-aos-easing='ease-out-sine'],
body[data-aos-easing='ease-out-sine'] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
[data-aos][data-aos][data-aos-easing='ease-in-out-sine'],
body[data-aos-easing='ease-in-out-sine'] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
[data-aos][data-aos][data-aos-easing='ease-in-quad'],
body[data-aos-easing='ease-in-quad'] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing='ease-out-quad'],
body[data-aos-easing='ease-out-quad'] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing='ease-in-out-quad'],
body[data-aos-easing='ease-in-out-quad'] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing='ease-in-cubic'],
body[data-aos-easing='ease-in-cubic'] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing='ease-out-cubic'],
body[data-aos-easing='ease-out-cubic'] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing='ease-in-out-cubic'],
body[data-aos-easing='ease-in-out-cubic'] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing='ease-in-quart'],
body[data-aos-easing='ease-in-quart'] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing='ease-out-quart'],
body[data-aos-easing='ease-out-quart'] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing='ease-in-out-quart'],
body[data-aos-easing='ease-in-out-quart'] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos^='fade'][data-aos^='fade'] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^='fade'][data-aos^='fade'].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
[data-aos='fade-up'] {
  transform: translate3d(0, 100px, 0);
}
[data-aos='fade-down'] {
  transform: translate3d(0, -100px, 0);
}
[data-aos='fade-right'] {
  transform: translate3d(-100px, 0, 0);
}
[data-aos='fade-left'] {
  transform: translate3d(100px, 0, 0);
}
[data-aos='fade-up-right'] {
  transform: translate3d(-100px, 100px, 0);
}
[data-aos='fade-up-left'] {
  transform: translate3d(100px, 100px, 0);
}
[data-aos='fade-down-right'] {
  transform: translate3d(-100px, -100px, 0);
}
[data-aos='fade-down-left'] {
  transform: translate3d(100px, -100px, 0);
}
[data-aos^='zoom'][data-aos^='zoom'] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^='zoom'][data-aos^='zoom'].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
[data-aos='zoom-in'] {
  transform: scale(0.6);
}
[data-aos='zoom-in-up'] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}
[data-aos='zoom-in-down'] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}
[data-aos='zoom-in-right'] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}
[data-aos='zoom-in-left'] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}
[data-aos='zoom-out'] {
  transform: scale(1.2);
}
[data-aos='zoom-out-up'] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}
[data-aos='zoom-out-down'] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}
[data-aos='zoom-out-right'] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}
[data-aos='zoom-out-left'] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}
[data-aos^='slide'][data-aos^='slide'] {
  transition-property: transform;
}
[data-aos^='slide'][data-aos^='slide'].aos-animate {
  transform: translateZ(0);
}
[data-aos='slide-up'] {
  transform: translate3d(0, 100%, 0);
}
[data-aos='slide-down'] {
  transform: translate3d(0, -100%, 0);
}
[data-aos='slide-right'] {
  transform: translate3d(-100%, 0, 0);
}
[data-aos='slide-left'] {
  transform: translate3d(100%, 0, 0);
}
[data-aos^='flip'][data-aos^='flip'] {
  backface-visibility: hidden;
  transition-property: transform;
}
[data-aos='flip-left'] {
  transform: perspective(2500px) rotateY(-100deg);
}
[data-aos='flip-left'].aos-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-aos='flip-right'] {
  transform: perspective(2500px) rotateY(100deg);
}
[data-aos='flip-right'].aos-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-aos='flip-up'] {
  transform: perspective(2500px) rotateX(-100deg);
}
[data-aos='flip-up'].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
[data-aos='flip-down'] {
  transform: perspective(2500px) rotateX(100deg);
}
[data-aos='flip-down'].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

.topper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px; /* Adjust the height of the topper as needed */
  background-color: #62411e;
}
.m-1 {
  margin-right: 2rem !important;
}
.m-2 {
  margin: 10px;
}
.m-5 {
  margin: 0rem !important;
}
.side-icon {
  width: 35%;
}

/* .menu {
  color: #414141;
  float: right;
  text-align: right;
  margin-top: 5px;
  position: fixed;
  right: 15px;
  width: 45%;
}
.menu img {
  max-height: 25px;
}
.menu a {
  text-decoration: none;
}
.menu a:hover {
  text-decoration: none;
  color: #FFFFFF;
} */

.logo img {
  width: 50%;
  padding-top: 40px;
}
.menu {
  background-color: #fff;
  width: 100%;
}
.faqs {
  padding: 2rem;
  width: 50%;
  float: right;
  height: 100%;
}
.image {
  width: 50%;
  position: relative;
  height: inherit;
  float: left;
  background: url('images/illustration-woman-online-desktop.svg') bottom 68px
      left -74px no-repeat,
    url('images/bg-pattern-desktop.svg') bottom -159px left -570px no-repeat;
}
.image::before {
  content: '';
  position: absolute;
  bottom: 134px;
  left: -90px;
  background: url('images/illustration-box-desktop.svg') no-repeat;
  width: 191px;
  height: 156px;
}

.answer {
  padding-top: 1rem;
  color: hsl(240, 6%, 50%);
  font-size: 12px;
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.arrow {
  transition: transform 0.3s ease-in-out;
  align-self: center;
  object-fit: contain;
  width: 0.25rem;
  margin-left: 0.75rem;
  user-select: none;
  pointer-events: none;
}

.faqs h1 {
  margin-bottom: 1rem;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid gray;
  margin-bottom: 10px;
}

.faq-item.active .answer {
  display: block !important;
  opacity: 1 !important;
}

.faq-item.active .question {
  color: black;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-item button {
  outline: none;
}

.question {
  font-size: 13px;
  font-weight: bold;
  color: var(--Dark-grayish-blue);
}

.mtxl {
  margin-top: 16rem !important;
}

.halal_icon {
  text-align: center;
  /* margin-top: 60px; */
  font-size: 14pt;
  /* padding: 10px 50px; */
}
.halal_icon img {
  /* width: 70%; */
  height: 60px;
}
.halal_detail p {
  font-size: 12pt;
  font-weight: 300;
  letter-spacing: 0px;
  text-align: center;
  color: #ffff;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* HOME */
.banner {
  display: block;
  text-align: center;
}
.banner img {
  width: 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B5B5B5'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B5B5B5'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-indicators [data-bs-target] {
  background-color: #b5b5b5;
}
.categories {
  background-image: linear-gradient(#ffff 60%, #fff);
  width: 400px; /* Set the width of the image box */
  height: auto; /* Set the height of the image box to auto to adjust to the content */
  border: 1px solid #ccc; /* Add border for visualization */
  box-shadow: 5px 2px 7px#d1d1d1;
  border-radius: 1.5rem;
  padding: 10px 20px;
}
.cat_img {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cat_img img {
  width: 100%;
  aspect-ratio: auto 1 / 1displ f;
}
.cat_detail_sub {
  text-align: center;

  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}
.cat_detail_sub p {
  text-align: center;
  font-size: 12pt;
  font-weight: 700;
}
.cat_detail {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cat_detail h4 {
  font-weight: 700;
  font-size: 12pt;
}
.video-container h4 {
  text-align: center;
  font-size: 9pt;
}
.cat_detail p {
  font-size: 9pt;
  overflow: hidden; /* Sembunyikan teks yang melebihi lebar kontainer */
  white-space: nowrap; /* Mencegah teks pindah ke baris baru */
  text-overflow: ellipsis;
  letter-spacing: 1px;
}
/* .cutoff-text {
  --max-lines: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--max-lines);
  padding: 0px 20px 20px 20px;
} */
.promo {
  height: auto;
  text-align: center;

  /* background-color: #830c06; */
}
.promo-detail {
  width: 50%;
  border-right: #ffffff solid 1px;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.promo-img {
  padding-top: 0px;
  margin-left: auto;
  margin-right: 0;
}
.promo-img img {
  text-align: center;
}
.promo-title {
  text-decoration: none;
  padding: 30px;
}
.promo-title h4 {
  text-decoration: none;
  font-size: 40pt;
  color: #ffffff;
}
.promo-disc {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.promo-tag img {
  width: 30%;
  text-align: center;
}
.promo-disc img {
  width: 30%;
  text-align: center;
}

.fasilitas {
  text-align: center;
  padding-top: 20px;
  color: #ffff;
}
.fasilitas h4 {
  font-size: 12pt;
  font-weight: 600;
  color: #ffff;
}
.fasilitas p {
  padding: 0 10px;
  letter-spacing: 0px;
  line-height: 1.5;
  font-size: 10pt;
  color: #ffff;
  font-weight: 400;
}
.contact {
  text-align: center;
  color: #ffff;
}
.contact h4 {
  padding-top: 40px;
  font-size: 12pt;
  font-weight: 600;
  color: #ffff;
}

.contact p {
  padding: 20px 10px;
  letter-spacing: 0px;
  font-size: 10pt;
  color: #ffff;
}
.list_img {
  text-align: center;
}
.list_img img {
  width: 28%;
  margin: 10px 1%;
  text-align: center;
}
.contact_img {
  text-align: center;
}
.contact_img img {
  height: 32px;
  margin: 10px 5%;
  text-align: center;
}

/* .location-bg {
  background-color: #ffff;
  padding-top: 2rem;
  padding-bottom: 2rem;
} */

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-right-radius: 0px;
}

.card p {
  line-height: 1.4em;
}
/* 
.container-title {
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.title {
  font-family: Tahu, sans-serif;
  font-size: 20pt;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin: 30px auto;
  max-width: 600px;
}

.title::before {
  content: '';
  width: 120px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -2;
}
.title::after {
  content: '';
  width: 120px;
  height: 2px;
  background-color: #ffffff;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -2;
}

.cat_harga h4 {
  font-weight: 400;
  font-size: 10pt;
  text-align: right;
}

.card-product {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 100%;
  margin: auto;
  text-align: center;
}

.img-select {
  display: flex;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.img-item {
  margin: 0.3rem;
}
.img-item:nth-child(1),
.img-item:nth-child(2) {
  margin-right: 0;
}
.img-item:hover {
  opacity: 0.8;
}

.cat_img_detail {
  overflow: hidden;
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cat_img_detail img {
  width: 100%;
  aspect-ratio: auto 1 / 1;
}

.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  border: 1px solid #ddd;
  cursor: pointer;
  margin: 5px;
}

.sproduct input {
  width: 50px;
  height: 40px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
}
.sproduct input:focus {
  outline: none;
}
.buy-btn {
  background: #414141;
  opacity: 1;
  transition: 0.3s all;
}
.container-sm-2 {
  padding: 15px 10%;
  padding-bottom: 100px;
}

.container-sm-2 .heading {
  text-align: center;
  padding-bottom: 15px;
  color: #fff;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 50px;
}

.container-sm-2 .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.container-sm-2 .box-container .box {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  background: #fff;
  text-align: center;
  padding: 30px 20px;
}

.container-sm-2 .box-container .box img {
  height: 80px;
}

.container-sm-2 .box-container .box h3 {
  color: #444;
  font-size: 22px;
  padding: 10px 0;
}

.container-sm-2 .box-container .box p {
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}

.container-sm-2 .box-container .box .btn {
  margin-top: 10px;
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 17px;
  border-radius: 5px;
  padding: 8px 25px;
}

.container-sm-2 .box-container .box .btn:hover {
  letter-spacing: 4px;
}

.container-sm-2 .box-container .box:hover {
  box-shadow: 0 50px 45px rgba(0, 0, 0, 0.3);
  transform: scale(1.03);
}

.banner-container {
  align-items: center;
  justify-content: center;
  width: 1900px;
}
.banner-container .banner {
  align-items: center;
  justify-content: center;
}
.banner-bg {
  width: 100%;
}
.row_img {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* Vertically center content */
  height: auto; /* Set the height of the row to auto to adjust to the content */
  padding: 20px; /* Add padding for spacing */
}
.fixed-top {
  border-top: 10px solid #e7b595;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

#content-wrapper-produk {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.column {
  width: 600px;
  padding: 10px;
}
.column h1 {
  font-size: 20pt;
  font-weight: 700;
}
.column h5 {
  font-size: 12pt;
  font-weight: 500;
}
.column h6 {
  font-size: 10pt;
  font-weight: 700;
}

#featured {
  max-width: 500px;
  max-height: 600px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid black;
}

.thumbnail {
  object-fit: cover;
  width: 80px; /* Sesuaikan dengan lebar yang diinginkan */
  height: 80px; /* Sesuaikan dengan tinggi yang diinginkan */
  border-radius: 8px; /* Atur radius sudut */
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  margin: 5px;
  border: 2px solid rgb(255, 255, 255);
}

.thumbnail:hover {
  opacity: 1;
}

.active {
  opacity: 1;
}

#slide-wrapper {
  max-width: 500px;
  display: flex;
  min-height: 100px;
  align-items: center;
}

#slider {
  width: 440px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

#slider::-webkit-scrollbar {
  width: 8px;
}

#slider::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#slider::-webkit-scrollbar-thumb {
  background-color: #414141;
  outline: 1px solid slategrey;
  border-radius: 100px;
}

#slider::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff;
}
.lokasi-hub {
  text-align: center;
  margin-top: 25px;
}
.lokasi-hub p {
  font-size: 10pt;
}
/* .row {
  --bs-gutter-x: 0rem !important;
  --bs-gutter-y: 0rem !important;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
} */

.arrow {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.arrow:hover {
  opacity: 0.5;
  width: 35px;
  height: 35px;
}

.carousel-indicators {
  margin-bottom: 0rem;
}

.carousel-control-next,
.carousel-control-prev {
  width: 10%;
}

.video-container {
  width: 100%;
  max-width: 740px; /* Adjust as needed */
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .logo {
    padding-top: 0px;
  }
  .pr-1 {
    padding-right: 0.5rem !important;
  }
  .menu-icon {
    font-size: 14pt;
  }
  .brand img {
    max-height: 25px;
  }
  .menu img {
    max-height: 50px;
  }
  .categories {
    width: 400px; /* Set the width of the image box */
    height: auto; /* Set the height of the image box to auto to adjust to the content */
    border: 1px solid #ccc; /* Add border for visualization */
    background-image: linear-gradient(#ffff 60%, #fff);
    align-items: center;
    box-shadow: 5px 2px 7px#d1d1d1;
    border-radius: 1.5rem;
    padding: 10px 20px;
  }
  /* .row_logo_halal {
    margin-right: 10px;
  } */

  .cat_detail h4 {
    font-size: 12pt;
    margin-top: 10px;
    font-weight: 700;
  }
  .cat_detail p {
    font-size: 9pt;
    font-weight: 500;
    margin: 0 10px;
    overflow: hidden; /* Sembunyikan teks yang melebihi lebar kontainer */
    white-space: nowrap; /* Mencegah teks pindah ke baris baru */
    text-overflow: ellipsis;
  }

  .halal {
    padding: 10px 2px;
    justify-content: center; /* Mengatur gambar agar berada di tengah secara horizontal */
    align-items: center; /* Mengatur gambar agar berada di tengah secara vertikal */
  }
  .halal_detail p {
    font-size: 12pt;
    font-weight: 600;
    color: #ffff;
  }
  .halal_icon {
    width: 30%;
  }
  .halal_icon img {
    aspect-ratio: auto 1 / 1;
    margin-right: 20px;
    max-width: 100%; /* Mengatur gambar agar tidak melebihi lebar container */
    max-height: 100%; /* Mengatur gambar agar tidak melebihi tinggi container */
  }
  .halal_detail {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .promo {
    padding-top: 0px;
  }
  .column h1 {
    font-size: 14pt;
    font-weight: 700;
  }
  .column h5 {
    font-size: 10pt;
    font-weight: 500;
  }
  .promo-detail {
    width: 100%;
    border-right: none;
    text-align: center;
    position: static;
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .cat_detail_sub p {
    font-size: 10pt;
    font-weight: 500;
  }
  .promo-img {
    width: 100%;
  }
  .promo-title {
    text-decoration: none;
    padding: 20px;
  }
  .promo-title h4 {
    text-decoration: none;
    font-size: 22pt;
  }
  .promo-disc img {
    width: 20%;
  }
  .promo-tag img {
    width: 60% !important;
  }
  /* /* .promo-img img{
        width: 100%;
    } */
  .promo-img img {
    margin-top: 0px;
    margin-bottom: 10px;
    height: 380px;
    object-fit: cover;
  }
  .fasilitas h4 {
    font-size: 11pt;
    font-weight: 700;
  }
  .fasilitas p {
    font-size: 9pt;
    font-weight: 200;
  }
  .contact h4 {
    font-size: 11pt;
    font-weight: 700;
  }
  .contact p {
    font-size: 9pt;
    font-weight: 200;
  }
  .contact_img img {
    height: 25px;
    margin: 5px 2%;
  }
  .cat_harga h4 {
    padding-top: 30px;
  }
  .cat_img img {
    width: 100%;
    height: 100%;
  }

  .row_img {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
  .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B5B5B5'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  }
  .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B5B5B5'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
  .carousel-indicators [data-bs-target] {
    background-color: #b5b5b5;
  }

  .container-sm-2 {
    padding: 20px;
  }
  .subheader {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #62411e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
  .swiper-slide {
    height: 500px !important;
  }
  .mtxl {
    margin-top: 10rem !important;
  }
}
:root {
  --header-height: 160px;
  --header-height-min: 80px;
  --kenes-color: #e78b26;
  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 12px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}
:root {
  /* widths for rows and containers
   */
  --header-height: 160px;
  --header-height-min: 80px;
}
/* on mobile devices below 600px
*/
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

body {
  --bs-link-color: #333;
  --bs-link-hover-color: #333;

  --bs-link-color-rgb: 40, 40, 40;
  --bs-link-hover-color-rgb: 0, 0, 0;

  /* --bs-link-color: #FFC43F;
--bs-link-hover-color: #FFC43F; */

  --bs-light-rgb: 248, 248, 248;

  --bs-font-sans-serif: 'Open Sans', sans-serif;
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 2;
  --bs-body-color: #747474;

  --bs-success: #a3be4c;
  --bs-success-rgb: 163, 190, 76;

  --bs-primary-bg-subtle: #fff9eb;
  --bs-success-bg-subtle: #eef5e5;

  --bs-border-color: #62411e;

  --bs-secondary-rgb: 230, 243, 251;
  /* --bs-success-rgb: 238, 245, 228; */
  --bs-danger-rgb: 249, 235, 231;
  --bs-warning-rgb: 255, 249, 235;
  --bs-info-rgb: 230, 243, 250;
}

.btn-outline-light {
  --bs-btn-color: #747474;
  --bs-btn-border-color: #efefef;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #efefef;
  --bs-btn-hover-border-color: #efefef;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #efefef;
  --bs-btn-active-border-color: #efefef;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #efefef;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #efefef;
  --bs-gradient: none;
}
.btn-warning {
  --bs-btn-color: #747474;
  --bs-btn-bg: #fcf7eb;
  --bs-btn-border-color: #fcf7eb;
  --bs-btn-hover-color: #747474;
  --bs-btn-hover-bg: #ffecbe;
  --bs-btn-hover-border-color: #ffecbe;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffecbe;
  --bs-btn-active-border-color: #ffecbe;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fcf7eb;
  --bs-btn-disabled-border-color: #fcf7eb;
}
.btn-success {
  --bs-btn-color: #222;
  --bs-btn-bg: #eef5e4;
  --bs-btn-border-color: #eef5e4;
  --bs-btn-hover-color: #222;
  --bs-btn-hover-bg: #9de3c2;
  --bs-btn-hover-border-color: #9de3c2;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #222;
  --bs-btn-active-bg: #9de3c2;
  --bs-btn-active-border-color: #9de3c2;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #222;
  --bs-btn-disabled-bg: #eef5e4;
  --bs-btn-disabled-border-color: #eef5e4;
}
.btn-danger {
  --bs-btn-color: #222;
  --bs-btn-bg: #ffeada;
  --bs-btn-border-color: #ffeada;
  --bs-btn-hover-color: #222;
  --bs-btn-hover-bg: #ecc9af;
  --bs-btn-hover-border-color: #ecc9af;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #222;
  --bs-btn-active-bg: #ecc9af;
  --bs-btn-active-border-color: #ecc9af;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #222;
  --bs-btn-disabled-bg: #ffeada;
  --bs-btn-disabled-border-color: #ffeada;
}
body {
  letter-spacing: 0.03em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--dark-color);
  font-weight: 700;
}
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
}
.breadcrumb.text-white {
  --bs-breadcrumb-divider-color: #fff;
  --bs-breadcrumb-item-active-color: var(--bs-primary);
}

.nav-pills .nav-link {
  --bs-nav-pills-link-active-color: #111;
  --bs-nav-pills-link-active-bg: #f1f1f1;
}

.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 2rem;
}

/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/


@keyframes animation {
  0%,
  80%,
  100% {
    box-shadow: 0 2em 0 -1em var(--accent-color);
  }
  40% {
    box-shadow: 0 2em 0 0 var(--accent-color);
  }
}

/* *** Start editing below this line *** */
.container-fluid {
  max-width: 1600px;
}
.banner-blocks {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 2rem;
}
.block-1 {
  grid-area: 1 / 1 / 3 / 8;
}
.block-2 {
  grid-area: 1 / 8 / 2 / 13;
}
.block-3 {
  grid-area: 2 / 8 / 3 / 13;
}

@media screen and (max-width: 1140px) {
  .banner-blocks {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .block-1 {
    grid-area: 1 / 1 / 3 / 2;
  }
  .block-2 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .block-3 {
    grid-area: 4 / 1 / 5 / 2;
  }
}

/* banner ad */
.banner-ad {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.banner-ad.blue {
  background: #e6f3fb;
}
.banner-ad .swiper-pagination {
  bottom: 40px;
  left: 0;
  right: 0;
}
.banner-ad .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 4px;
  background: #fff;
  opacity: 1;
  transition: background 0.3s ease-out;
}
.banner-ad
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffc43f;
}
.banner-ad .swiper-slide {
  min-height: 630px;
  display: flex;
}
/* .banner-ad .banner-content {
padding: 52px;
}
.banner-ad.large .banner-content {
padding: 90px;
} */
.banner-ad .banner-content .categories {
  font-family: 'Garamond';
  font-size: 37px;
  text-transform: capitalize;
  color: var(--dark-color);
}
.banner-ad .banner-content .sale {
  position: relative;
  display: inline-block;
}
.banner-ad .banner-content .sale:before {
  content: '';
  width: 80px;
  border-bottom: 1px solid #111;
  position: absolute;
  bottom: 6px;
}
.banner-ad .banner-content .sale:after {
  content: 'SALE';
  font-family: var(--body-font);
  position: absolute;
  font-size: 11px;
  line-height: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #252525;
  bottom: 0;
  right: 0;
}
.banner-ad .banner-content .banner-title {
  letter-spacing: 0.02em;
  font-size: 33px;
}
.banner-ad.large .banner-content .categories {
  color: var(--accent-color);
}
.banner-ad.large .banner-content .banner-title {
  font-size: 54px;
}

.btn-link {
  margin-right: 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  text-transform: capitalize;
  color: #787878;
}
/* category carousel */
.category-carousel .category-item {
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  text-align: center;
  padding: 60px 20px;
  margin: 20px 0;
  transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}
.category-carousel .category-item:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}
.category-carousel .category-item .category-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #222222;
  margin-top: 20px;
}

/* brand carousel */
.brand-carousel .brand-item {
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 16px;
}
.brand-carousel .brand-item img {
  width: 100%;
  border-radius: 12px;
}
.brand-carousel .brand-item .brand-details {
  margin-left: 15px;
}
.brand-carousel .brand-item .brand-title {
  margin: 0;
}

/* product tabs */
.product-tabs .nav-tabs {
  justify-content: flex-end;
  border: none;

  --bs-nav-link-hover-color: #111;
  --bs-nav-link-color: #555;
  --bs-nav-tabs-link-border-color: #fff;
  --bs-nav-tabs-link-hover-border-color: transparent;
  --bs-nav-tabs-link-active-border-color: #fff;
}
.product-tabs .nav-tabs .nav-link.active,
.product-tabs .nav-tabs .nav-item.show .nav-link {
  /* border: none; */
  border-bottom: 3px solid var(--accent-color);
}

/* product-grid */
/* .product-grid {
gap: 25px;
} */
.product-item {
  position: relative;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #fbfbfb;
  box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease-out;
}
.product-item:hover {
  box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}
.product-item h3 {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  color: #333333;
  margin: 0;
}
.product-item figure {
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
}
.product-item figure img {
  max-height: 210px;
  height: auto;
}
.product-item .btn-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #d8d8d8;
  transition: all 0.3s ease-out;
}
.product-item .btn-wishlist:hover {
  background: rgb(240, 56, 56);
  color: #fff;
}
.product-item .qty {
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #9d9d9d;
}
.product-item .rating {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-transform: capitalize;
  color: #222222;
}

.product-item .price {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  color: #222222;
}
.product-item .product-qty {
  width: 85px;
}
.product-item .btn-link {
  text-decoration: none;
}
.product-item #quantity {
  height: auto;
  width: 28px;
  text-align: center;
  border: none;
  margin: 0;
  padding: 0;
}
.product-item .btn-number {
  width: 26px;
  height: 26px;
  line-height: 1;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  color: #222;
  padding: 0;
}

/* cart */
.cart .product-qty {
  min-width: 130px;
}

/* floating image */
.image-float {
  margin-top: -140px;
  margin-bottom: -140px;
}
@media screen and (max-width: 991px) {
  .image-float {
    margin: 0;
  }
}
/* post item */
.post-item .post-meta {
  font-size: 0.8rem;
  line-height: 1;
}
.post-item .post-meta svg {
  margin-right: 5px;
}

@media screen and (max-width: 991px) {
  /* offcanvas menu */
  .offcanvas-body .nav-item {
    font-weight: 700;
    border-bottom: 1px solid #d1d1d1;
  }
  .offcanvas-body .filter-categories {
    width: 100%;
    margin-bottom: 20px !important;
    border: 1px solid #d1d1d1 !important;
    padding: 14px;
    border-radius: 8px;
  }
  /* dropdown-menu */
  .dropdown-menu {
    padding: 0;
    border: none;
    line-height: 1.4;
    font-size: 0.9em;
  }
  .dropdown-menu a {
    padding-left: 0;
  }
  .dropdown-toggle::after {
    position: absolute;
    right: 0;
    top: 21px;
  }
}

/* single product */
/* product-thumbnail-slider */
.product-thumbnail-slider {
  height: 740px;
}
@media screen and (max-width: 992px) {
  .product-thumbnail-slider {
    margin-top: 20px;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  .product-thumbnail-slider {
    height: 520px;
  }
}
.banner-title img {
  height: 40px;
}
.col-md-5 {
  flex: 0 0 auto;
  width: 50%;
}
.container {
  /* margin-top: 200px; */
  margin-bottom: 0px;
}
.container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .content .left-side {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  position: relative;
}
.content .left-side::before {
  content: '';
  position: absolute;
  height: 70%;
  width: 2px;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background: #afafb6;
}
.content .left-side .details {
  margin: 14px;
  text-align: center;
}
.content .left-side .details i {
  font-size: 30px;
  color: #3e2093;
  margin-bottom: 10px;
}
.content .left-side .details .topic {
  font-size: 18px;
  font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two {
  font-size: 14px;
  color: #afafb6;
}
.container .content .right-side {
  width: 75%;
  margin-left: 75px;
}
.content .right-side .topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #3e2093;
}
.right-side .input-box {
  height: 50px;
  width: 100%;
  margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
}
.right-side .message-box {
  min-height: 110px;
}
.right-side .input-box textarea {
  padding-top: 6px;
}
.right-side .button {
  display: inline-block;
  margin-top: 12px;
}
.right-side .button input[type='button'] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #3e2093;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type='button']:hover {
  background: #5029bc;
}
@media (max-width: 950px) {
  .container {
    width: 100%;
    padding: 0px 0px 0px 0px;
  }
  .container .content .right-side {
    width: 75%;
    margin-left: 55px;
  }
}
@media (max-width: 820px) {
  .container {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .container .content {
    flex-direction: column-reverse;
  }
  .container .content .left-side {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .container .content .left-side::before {
    display: none;
  }
  .container .content .right-side {
    width: 100%;
    margin-left: 0;
  }
}

/* .card {
  max-width: 30em;
  flex-direction: row;
  background-color: #696969;
  border: 0;
  box-shadow: 0 7px 7px rgba(0, 0, 0, 0.18);
  margin: 3em auto;
}
.card.dark {
  color: #fff;
}
.card.card.bg-light-subtle .card-title {
  color: dimgrey;
}

.card img {
  max-width: 25%;
  margin: auto;
  padding: 0.5em;
  border-radius: 0.7em;
}
.card-body {
  display: flex;
  justify-content: space-between;
} */
.text-section {
  max-width: 60%;
}
.cta-section {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.cta-section .btn {
  padding: 0.3em 0.5em;
  /* color: #696969; */
}
.card.bg-light-subtle .cta-section .btn {
  background-color: #898989;
  border-color: #898989;
}
@media screen and (max-width: 475px) {
  .card {
    font-size: 0.9em;
  }
}

.navbar-brand {
  padding-top: 0px;
  padding-bottom: 0px;
  margin: 0 auto;
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
  width: 30%;
}

/* footer */

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(2rem, 1fr));
  gap: 3rem;
}

.footer .box-container .box h3 {
  font-size: 14pt;
  color: #fff;
  padding: 0.5rem 0;
}

.footer .box-container .box p {
  font-size: 14pt;
  line-height: 2;
  color: #fff;
  padding: 1rem 0;
}

.footer .box-container .box .share {
  margin-top: 1rem;
  display: flex;
  gap: 12px;
}

.footer .box-container .box .share a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  border: 0.1rem solid #fff;
  font-size: 18pt;
  border-radius: 50%;
  color: #fff !important; /* Memastikan warna putih */
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer .box-container .box .share a::before {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.footer .box-container .box .share a:hover {
  background: #fff;
  color: #62411e !important;
  border-color: #fff;
  transform: translateY(-3px);
}

.footer .box-container .box .links {
  display: block;
  font-size: 14pt;
  color: #222;
  padding: 1rem 0;
}

.footer .box-container .box .links:hover {
  color: #62411e;
}

.footer .credit {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 12pt;
  color: #ffff;
  border-top: 0.1rem solid #ffff;
}

.footer .credit span {
  color: #ffff;
}

/* end */
.footer-menu-right {
  display: flex;
  align-items: center; /* Align items vertically in the center */
  padding: 20px;
}
.footer-menu {
  color: #ffff;
}
.halal-section {
  display: flex;
  align-items: center; /* Align items vertically in the center */
  padding: 10px;
}

/* Styling for the logo */
.logo-halal {
  width: 40px; /* Adjust the size as needed */
  height: auto; /* Maintain aspect ratio */
  margin-right: 20px; /* Space between logo and description */
}

/* Styling for the description */
.no-halal {
  color: #ffff;
  flex: 1; /* Take up the remaining space */
  font-size: 16px; /* Adjust the font size as needed */
  font-weight: 500;
}

@media (max-width: 991px) {
  .footer .box-container .box h3 {
    font-size: 14pt;
    color: #ffff;
    padding: 0.5rem 0;
  }
}
/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/* h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 400 !important;
  font-family: "Playball", cursive !important;
} */

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 600 !important;
  font-family: 'Open Sans', sans-serif !important;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.wow,
.animated {
  animation-duration: 2s !important;
}

/*** Button Start ***/
.btn.btn-primary {
  border: 0;
}

.btn.btn-primary:hover {
  background: var(--bs-dark) !important;
  color: var(--bs-primary) !important;
}

.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 38px;
  height: 38px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
/*** Button End ***/

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .navbar-nav .nav-link {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 17px;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    opacity: 1;
  }
}
.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0.125em;
}

#searchModal .modal-content {
  background-color: rgba(255, 255, 255, 0.95);
}
/*** Navbar End ***/

/*** Events Start ***/
.event .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(212, 167, 98, 0.7);
  border-radius: 8px;
  transition: 0.5s;
  opacity: 0;
  z-index: 1;
}

.event .event-img:hover .event-overlay {
  opacity: 1;
}
/*** Events End ***/

/*** service start ***/
.service .service-item {
  position: relative;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-content::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  bottom: auto;
  background: var(--bs-primary);
  border-radius: 8px;
  transition: 1s;
}

.service-item:hover .service-content::after {
  height: 100%;
  opacity: 1;
}

.service-item .service-content-icon {
  position: relative;
  z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
  transition: 1s;
}

.service-item:hover .service-content-icon i {
  color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
  color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
  background: var(--bs-white);
  color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
  transition: 1s !important;
}
/*** Services End ***/

/*** Menu Start ***/
.menu .nav-item a.active {
  background: #e7b595 !important;
}

.menu .menu-item .border-bottom {
  border-bottom-style: dashed !important;
}
/*** Menu End ***/

/*** Youtube Video start ***/
.video {
  position: relative;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(
      rgba(254, 218, 154, 0.1),
      rgba(254, 218, 154, 0.1)
    ),
    url(../img/fact.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-white);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--bs-dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffff;
  background: #000000;
  opacity: 1;
}
/*** Youtube Video End ***/

/*** Blog Start ***/
.blog-item {
  position: relative;
}

.blog-item img {
  transition: 0.5s;
}

.blog-item:hover img {
  transform: scale(1.3);
}

.blog-item .blog-content {
  position: relative;
  transform: translateY(-50%);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.blog-item .blog-content a.btn h5 {
  transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
  color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.team-item .team-icon {
  position: absolute;
  top: 0;
  right: 0;
}

.team-item .team-icon .share-link {
  opacity: 0;
  transition: 0.9s;
}

.team-item:hover .share-link {
  opacity: 1;
}

.team-item .team-content {
  transition: 0.9s;
}

.team-item:hover .team-content {
  background: var(--bs-primary) !important;
  color: var(--bs-dark) !important;
}

.team-item .team-content h4,
.team-item .team-content p {
  transition: 0.5s;
}

.team-item:hover .team-content h4 {
  color: var(--bs-dark) !important;
}

.team-item:hover .team-content p {
  color: var(--bs-white);
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial-item {
  border: 1px solid var(--bs-primary);
  padding: 20px 20px;
}

.testimonial-carousel .owl-item img {
  width: 100px;
  height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
  direction: ltr !important;
}
/*** testimonial End ***/

/*** Contact start ***/
.contact-form {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

/*** Contact End ***/

/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(#62411e), var(--bs-text-opacity)) !important;
}
.col-md-4,
ul {
  margin-bottom: 0px;
}
.c-item {
  height: 100%;
  object-fit: contain;
}

.c-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.carousel-item {
  min-width: 100%;
  justify-content: center;
  align-items: center;
}
.main-banner {
  background-position: center center;
  background-size: cover;
  width: 75%;
}

.carousel-item img {
  max-width: 100%;
  height: auto;
  border-radius: 23px;
  width: 100%;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: flex;
}
@media screen and (max-width: 991px) {
  .c-item {
    height: 100%;
    object-fit: contain;
  }

  .main-banner {
    background-position: center center;
    background-size: cover;
    width: 100%;
  }
  .carousel-item img {
    max-width: 100%;
    height: 200px;
    border-radius: 0%;
    width: 100%;
  }
}

/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties .item {
  background-color: #fafafa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}

.properties .item img {
  border-radius: 10px;
  width: 320px;
  height: 180px;
}

.properties .item span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 25px;
}

.properties .item h4 {
  font-size: 19px;
  margin: 25px 0px;
}

.properties .item h4 a {
  color: #1e1e1e;
}

.properties .item ul li {
  display: inline-block;
  font-size: 15px;
  color: #4a4a4a;
  margin-right: 20px;
}

.properties .item ul li span {
  font-weight: 600;
  color: #1e1e1e;
}

.properties .item ul {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.properties .item h6 {
  font-size: 20px;
  color: #f35525;
  margin-top: 6px;
  display: inline-block;
  float: right;
  margin-top: 30px;
}

.properties .item .main-button {
  text-align: center;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all 0.3s;
}

.icon-button a i {
  background-color: #f35525;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: #f35525;
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all 0.3s;
}

.main-button a:hover {
  background-color: #f35525;
  color: #fff;
}
/* 
---------------------------------------------
Properties Style
--------------------------------------------- 
*/

.properties ul.properties-filter {
  list-style: none;
  text-align: center;
  margin-bottom: 70px;
}

.properties ul.properties-filter li {
  display: inline-block;
  margin: 5px 8px;
}

.properties ul.properties-filter li a {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 500;
  color: #fff;
  background-color: #1e1e1e;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s;
}

.properties ul.properties-filter li a.is_active {
  background-color: #f35525;
  color: #fff;
}

.properties ul.properties-filter li a.is_active:hover {
  color: #fff;
}

.properties ul.properties-filter li a:hover {
  color: #f35525;
}

.properties ul.pagination {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  display: inline-block;
}

.properties ul.pagination li {
  display: inline-block;
  margin: 0px 5px;
}

.properties ul.pagination li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50%;
  transition: all 0.3s;
}

.properties ul.pagination li a:hover,
.properties ul.pagination li a.is_active {
  background-color: #f35525;
  color: #fff;
}

/* 
---------------------------------------------
Single Page Style
--------------------------------------------- 
*/

.single-property .main-image img {
  float: none;
}

.single-property .main-content h4 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.single-property .main-content span.category {
  background-color: #fbd9cf;
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  color: #1e1e1e;
  padding: 5px 12px;
  display: inline-block;
  margin-top: 40px;
}

.single-property .accordion {
  margin-top: 60px;
  margin-left: 0px;
  margin-right: 0px;
  --bs-accordion-border-radius: 10px;
  --bs-accordion-inner-border-radius: 10px;
  --bs-accordion-bg: #fafafa;
  --bs-accordion-border-color: none;
  border: none !important;
}

.single-property .accordion-header {
  border-bottom: 1px solid #eaeaea;
}

.single-property .accordion-button {
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  color: #1e1e1e;
}

.single-property .accordion-button:not(.collapsed) {
  color: #f35525;
  background-color: #fafafa;
  outline: none;
}

.single-property .accordion-button::after {
  display: none;
}

.single-property #headingThree {
  border-bottom: none;
}

.single-property .accordion-item:last-of-type .accordion-collapse {
  border-top: 1px solid #eaeaea;
}

.single-property .info-table {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  margin-left: 60px;
}

.single-property .info-table ul li {
  display: block;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.single-property .info-table ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.single-property .info-table ul li img {
  float: left;
  margin-right: 25px;
}

.single-property .info-table ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.single-property .info-table ul li h4 span {
  font-size: 15px;
  color: #aaa;
  font-weight: 400;
}

/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
  margin-top: 100px;
}

.contact-page .section-heading {
  margin-bottom: 40px;
  margin-right: 280px;
}

.contact-page p {
  margin-bottom: 50px;
}

.contact-page .item {
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
  display: inline-block;
  min-width: 360px;
}

.contact-page .phone {
  margin-bottom: 30px;
}

.contact-page .item img {
  float: left;
  margin-right: 25px;
  vertical-align: middle;
}

.contact-page .item h6 {
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.contact-page .item h6 span {
  font-size: 15px;
  color: #aaaaaa;
  font-weight: 400;
}

.contact-page #contact-form {
  margin-left: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  padding: 35px 30px;
  background-color: #fff;
  margin-bottom: 30px;
}

.contact-page #contact-form label {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 15px;
}

.contact-page #contact-form input {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 30px;
  font-size: 14px;
  padding: 0px 15px;
}

.contact-page #contact-form textarea {
  width: 100%;
  height: 150px;
  max-height: 180px;
  border-radius: 22px;
  background-color: #f6f6f6;
  border: none;
  margin-bottom: 40px;
  font-size: 14px;
  padding: 15px 15px;
}

.contact-page #contact-form button {
  background-color: #1e1e1e;
  height: 44px;
  border-radius: 22px;
  padding: 0px 20px;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.5s;
}

h6 {
  text-transform: lowercase; /* Mengubah semua huruf dalam h6 menjadi huruf kecil */
}

.contact-page #contact-form button:hover {
  background-color: #f35525;
}
@media (max-width: 992px) {
  .sub-header {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }
  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }
  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }
  .main-banner .item h2 {
    width: 100%;
  }
  .featured .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
  }
  .featured .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }
  .featured .info-table {
    margin-top: 45px;
  }
  .fun-facts .counter {
    margin-bottom: 45px;
  }
  .best-deal .section-heading {
    text-align: center;
  }
  .best-deal .tabs-content ul.nav-tabs {
    margin-top: 0px;
    justify-content: center;
  }
  .best-deal .info-table {
    margin-bottom: 45px;
  }
  .best-deal .tab-content img {
    padding: 0px;
  }
  .best-deal .tabs-content h4 {
    margin-top: 45px;
  }
  .properties .item h6 {
    text-align: center;
    margin-bottom: 15px;
  }
  .properties .item .main-button {
    text-align: center;
  }
  .properties .item ul li {
    margin-right: 10px;
    font-size: 13px;
  }
  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }
  .contact-content #contact-form {
    margin-left: 0px;
  }
  .single-property .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }
  .contact-page .section-heading {
    margin-right: 0px !important;
  }
  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .best-deal .info-table ul li span {
    float: right !important;
    width: auto !important;
  }
}

@media (max-width: 1200px) {
  .best-deal .info-table ul li span {
    float: none;
    width: 100%;
  }
  .contact-page .section-heading {
    margin-right: 100px;
  }
  .custom-catalogue-dotrp {
    background-color: #725535;
    color: #fff;
    font-size: 1.25em;
  }

  .custom-catalogue-text {
    color: #725535;
    font-size: 1.5em;
  }

  .custom-catalogue-product-name {
    font-size: 0.75em;
  }
}

/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
  border: 2px solid #000;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
}

.custom-block:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-color: transparent;
  transform: translateY(-3px);
}

.custom-block-info {
  display: block;
  padding: 10px 20px;
  padding-bottom: 0;
}

.custom-block-image-wrap {
  position: relative;
  display: block;
  height: 100%;
}

.custom-block-image-wrap > a {
  display: block;
}

.custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
}

.custom-block-image-detail-page .custom-block-image {
  width: 100%;
  height: 212px;
  justify-content: center; /* Mengatur elemen di tengah secara horizontal */
  align-items: center;
}

.custom-block .custom-block-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-block-icon-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.custom-block-icon-wrap .section-overlay {
  opacity: 0.25;
}

.custom-block-btn-group {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.custom-block-btn-group .custom-block-icon {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
}

.custom-block-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--p-font-size);
  color: var(--white-color);
  text-align: center;
  width: 32.5px;
  height: 32.5px;
  line-height: 32.5px;
  transition: all 0.3s;
}

.custom-block-icon:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

.custom-block .custom-btn {
  font-size: var(--menu-font-size);
  padding: 7px 15px;
}

.custom-block .custom-block-info + div .badge {
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 50px !important;
  font-size: var(--menu-font-size);
  display: flex;
  justify-content: center;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.custom-block .custom-block-info + div .badge:hover {
  background-color: var(--secondary-color);
}

.custom-block-full {
  background-color: var(--section-bg-color);
  border-color: var(--primary-color);
}

.custom-block-full:hover {
  border-color: var(--primary-color);
}

.custom-block-full .custom-block-info {
  padding: 20px;
  padding-bottom: 0;
}

.custom-block-full .custom-block-image {
  width: 100%;
  height: 210px;
}

.custom-block-full .social-share {
  position: absolute;
  top: 0;
  right: 0;
  margin: 50px;
}

.custom-block-top small {
  color: var(--p-color);
  font-family: var(--title-font-family);
}

.custom-block-top .badge {
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: inline-block;
  vertical-align: middle;
  height: 26.64px;
  line-height: 20px;
}

.custom-block-bottom a:hover span {
  color: var(--primary-color);
}

.custom-block-bottom a span {
  font-family: var(--title-font-family);
  color: var(--p-color);
  text-transform: uppercase;
  margin-left: 3px;
}

.custom-block-overlay {
  border-color: transparent;
  padding: 0;
}

.custom-block-overlay .custom-block-image {
  margin: auto;
  width: 100%;
  height: 210px;
  transition: all 0.3s;
}

.custom-block-overlay:hover .custom-block-image {
  padding: 15px;
  padding-bottom: 0;
}

.custom-block-overlay-info {
  padding: 15px 20px 20px 20px;
}
.container-map {
  display: flex;
  align-items: center; /* Menyelaraskan konten di tengah secara vertikal */
  justify-content: center; /* Menyelaraskan konten di tengah secara horizontal */
}

.custom-block {
  display: flex;
  flex-direction: column;
  align-items: center; /* Menyelaraskan konten di tengah secara horizontal */
  text-align: center; /* Menyelaraskan teks di tengah */
}

.custom-block-image-wrap {
  margin-bottom: 1rem; /* Jarak antara gambar dan konten teks */
}

.custom-block-image {
  max-width: 100%; /* Gambar responsif */
  height: auto; /* Menjaga rasio aspek gambar */
}
.img-fluid {
  max-width: 50%;
  height: auto;
}
.banner {
  position: relative;
  width: 100%;
  max-width: 1550px; /* Maksimum lebar banner */
  margin: 0 auto;
}

.banner img {
  width: 100%;
  height: 650px;
  display: block;
}

/* Style untuk nomor telepon */
.phone-number {
  font-size: 1.2rem;
  position: relative;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #e78b26; /* Warna latar belakang semi-transparan */
  color: #fff;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  border-top-left-radius: 20px; /* Radius untuk sudut kiri atas */
  border-bottom-left-radius: 20px; /* Radius untuk sudut kiri bawah */
}

.phone-number a {
  color: #ffff; /* Warna link */
  text-decoration: none;
  font-weight: bold;
}

.phone-number a:hover {
  text-decoration: underline;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type='search'] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type='submit'] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}

/*---------------------------------------
  TOPICS              
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block-ek {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block-ek:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block-ek > a {
  width: 100%;
}

.custom-block-ek-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* margin-top: 35px; */
}

.custom-block-ek .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 30px;
  line-height: 20px;
}

.custom-block-ek-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-ek-overlay > a {
  height: 100%;
}

.custom-block-ek-overlay .custom-block-ek-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-ek-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00b0ff;
}

.bg-graphic {
  background-color: #00bfa6;
}

.bg-advertising {
  background-color: #f50057;
}

.bg-finance {
  background-color: #536dfe;
}

.bg-music {
  background-color: #f9a826;
}

.bg-education {
  background-color: #00bfa6;
}

/*---------------------------------------
  TOPICS               
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-ek-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-ek-topics-listing {
  height: inherit;
}

.custom-block-ek-topics-listing .custom-block-ek-image {
  width: 200px;
}

/*---------------------------------------
  PAGINATION              
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active > .page-link,
.page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/*---------------------------------------
  TIMELINE              
-----------------------------------------*/
.timeline-section {
  background-image: url('../images/colleagues-working-cozy-office-medium-shot.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--secondary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {
  line-height: 40px;
}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: '';
  width: 80px;
  height: 80px;
  border: 4px solid #fff;
  position: absolute;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--white-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 8px;
  background-color: transparent;
  left: 52px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--primary-color);
}

.timeline-container
  .vertical-scrollable-timeline
  li.active
  .icon-holder::before {
  background-color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-ek-topics-listing .custom-block-ek-image {
    width: auto;
  }

  .custom-block-ek-topics-listing > .d-flex,
  .custom-block-ek-topics-listing-info,
  .custom-block-ek-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
  .custom-catalogue-product-name {
    font-size: 0.75em;
  }

  .custom-cataloge-dotrp {
    font-size: 0.25em;
  }

  .custom-catalogue-text {
    color: #725535;
    font-size: 1em;
  }
}
/* Styling untuk sub-menu */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu .dropdown-menu {
  display: none; /* Menyembunyikan submenu secara default */
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: 0.1rem;
  border-radius: 0.25rem;
}
.dropdown-submenu.show > .dropdown-menu {
  display: block; /* Menampilkan submenu jika parent memiliki class show */
}

.custom-catalogue-dotrp {
  background-color: #725535;
  color: #fff;
}

.custom-checked-star-popularity {
  color: orange;
}

.price {
  color: #725535;
}

.product-name {
  color: #725535;
}

.image-catalogue img {
  transition: transform 0.3s ease-in-out;
}

.image-catalogue:hover img {
  transform: scale(1.1); /* Increases size by 10% */
}

.time-input {
  font-size: 24px;
  letter-spacing: 10px; /* Space between characters */
}
.input-box {
  width: 40px;
  border: none;
  border-bottom: 2px solid #ccc;
  text-align: center;
  outline: none;
  font-size: 24px;
}
.input-box:focus {
  border-bottom: 2px solid #007bff;
}
.separator {
  font-size: 24px;
}
.invalid-feedback {
  display: none;
}
.is-invalid ~ .invalid-feedback {
  display: block;
}

.custom-hidden {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.custom-hidden[hidden] {
  opacity: 0;
  pointer-events: none;
}

/* ===================================================
   MODERN LAYOUT IMPROVEMENTS
   =================================================== */

/* Container Modern */
.container-modern {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ===================================================
   HOME PAGE STYLES
   =================================================== */

.categories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #62411e;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #e78b26, #62411e);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.category-card-link {
  text-decoration: none;
  color: inherit;
}

.category-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-image {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(98, 65, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-icon {
  color: white;
  font-size: 2rem;
  animation: bounceIn 0.6s ease;
}

.category-content {
  padding: 1.5rem;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #62411e;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.category-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-more {
  color: #e78b26;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.view-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.category-card:hover .view-more::after {
  transform: translateX(5px);
}

/* ===================================================
   CATEGORY DETAIL STYLES
   =================================================== */

.category-detail-container {
  min-height: 100vh;
  background: #f8f9fa;
}

.category-header-modern {
  background: linear-gradient(135deg, #62411e 0%, #8b5a3c 100%);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.category-breadcrumb .breadcrumb {
  background: transparent;
  margin-bottom: 1rem;
}

.category-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.category-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.category-breadcrumb .breadcrumb-item.active {
  color: white;
}

.category-title-section {
  text-align: center;
}

.category-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-main-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.subcategory-card-link {
  text-decoration: none;
  color: inherit;
}

.subcategory-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.subcategory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.subcategory-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.subcategory-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.subcategory-card:hover .subcategory-image {
  transform: scale(1.05);
}

.subcategory-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(98, 65, 30, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subcategory-card:hover .subcategory-overlay {
  opacity: 1;
}

.subcategory-overlay-content {
  text-align: center;
  color: white;
}

.subcategory-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.overlay-text {
  font-size: 1.1rem;
  font-weight: 600;
}

.subcategory-content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.subcategory-info {
  flex: 1;
}

.subcategory-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #62411e;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.subcategory-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.subcategory-price {
  text-align: right;
  margin-left: 1rem;
}

.price-label {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: #e78b26;
}

/* ===================================================
   PRODUCT LISTING STYLES
   =================================================== */

.product-listing-container {
  min-height: 100vh;
  background: #f8f9fa;
}

.product-header-modern {
  background: linear-gradient(135deg, #8b5a3c 0%, #62411e 100%);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.product-breadcrumb .breadcrumb {
  background: transparent;
  margin-bottom: 1rem;
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.product-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.product-breadcrumb .breadcrumb-item.active {
  color: white;
}

.product-title-section {
  text-align: center;
}

.product-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-main-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
}

.product-card {
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(98, 65, 30, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay-content {
  text-align: center;
  color: white;
}

.product-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.product-content {
  padding: 1.5rem;
}

.product-info {
  margin-bottom: 1rem;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #62411e;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.product-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* ===================================================
   PRODUCT DETAIL STYLES
   =================================================== */

.product-detail-header {
  background: linear-gradient(135deg, #62411e 0%, #8b5a3c 100%);
  color: white;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.product-detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.product-detail-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  text-align: center;
  color: white;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-images-section {
  position: sticky;
  top: 2rem;
}

.main-image-container {
  margin-bottom: 1.5rem;
}

.main-product-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.main-product-image:hover {
  transform: scale(1.02);
}

.thumbnail-gallery-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-arrow {
  background: #62411e;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.gallery-arrow:hover {
  background: #8b5a3c;
  transform: scale(1.1);
}

.thumbnail-gallery {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0;
  flex: 1;
}

.thumbnail-gallery::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
  background: #62411e;
  border-radius: 3px;
}

.thumbnail-item {
  flex-shrink: 0;
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail-item:hover,
.thumbnail-item.active {
  border-color: #e78b26;
  transform: translateY(-2px);
}

.thumbnail-image {
  width: 100px;
  height: 80px;
  object-fit: cover;
  display: block;
}

.thumbnail-label {
  display: block;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #62411e;
  background: #f8f9fa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-info-section {
  padding: 1rem 0;
}

.product-details-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.product-details-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-name {
  font-size: 2rem;
  font-weight: 700;
  color: #62411e;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.product-price-container {
  margin-bottom: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border-left: 4px solid #e78b26;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e78b26;
  margin: 0;
}

.product-specifications {
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #333;
  flex: 1;
}

.spec-label i {
  color: #e78b26;
  width: 20px;
}

.spec-value {
  font-weight: 500;
  color: #666;
  text-align: right;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary-modern,
.btn-secondary-modern {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex: 1;
  justify-content: center;
}

.btn-primary-modern {
  background: #62411e;
  color: white;
}

.btn-primary-modern:hover {
  background: #8b5a3c;
  transform: translateY(-2px);
}

.btn-secondary-modern {
  background: #e9ecef;
  color: #333;
  border: 1px solid #dee2e6;
}

.btn-secondary-modern:hover {
  background: #dee2e6;
  transform: translateY(-2px);
}

/* ===================================================
   EMPTY STATE
   =================================================== */

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-content {
  max-width: 400px;
  margin: 0 auto;
}

.empty-icon {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.empty-state h3 {
  color: #666;
  margin-bottom: 1rem;
}

.empty-state p {
  color: #999;
  margin: 0;
}

/* ===================================================
   ANIMATIONS
   =================================================== */

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  70% {
    transform: scale(0.9);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */

@media (max-width: 1200px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-images-section {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .container-modern {
    padding: 1rem;
  }

  .categories-grid,
  .subcategories-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title,
  .category-main-title,
  .product-main-title,
  .product-detail-title {
    font-size: 1.8rem;
  }

  .product-name {
    font-size: 1.5rem;
  }

  .thumbnail-gallery-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .gallery-arrow {
    display: none;
  }

  .thumbnail-gallery {
    justify-content: center;
    flex-wrap: wrap;
  }

  .product-actions {
    flex-direction: column;
  }

  .main-product-image {
    height: 300px;
  }

  .product-details-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title,
  .category-main-title,
  .product-main-title,
  .product-detail-title {
    font-size: 1.5rem;
  }

  .category-header-modern,
  .product-header-modern,
  .product-detail-header {
    padding: 1.5rem 0;
  }

  .subcategory-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .subcategory-price {
    text-align: left;
    margin-left: 0;
  }

  .spec-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .spec-value {
    text-align: left;
  }
}

/* ===================================================
   ABOUT PAGE STYLES
   =================================================== */

.about-page-modern {
  min-height: 100vh;
  background: #f8f9fa;
}

.about-hero-section {
  background: linear-gradient(135deg, #62411e 0%, #8b5a3c 100%);
  color: white;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.about-hero-content {
  text-align: center;
}

.about-breadcrumb .breadcrumb {
  background: transparent;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.about-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-breadcrumb .breadcrumb-item a:hover {
  color: white;
}

.about-breadcrumb .breadcrumb-item.active {
  color: white;
}

.about-main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 0;
}

/* Company Story Section */
.company-story-section {
  margin-bottom: 4rem;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.story-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title-about {
  font-size: 2.2rem;
  font-weight: 700;
  color: #62411e;
  margin-bottom: 1rem;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #e78b26, #62411e);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.story-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.story-paragraph.highlight {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #e78b26;
  font-weight: 500;
  color: #333;
}

/* Vision Mission Section */
.vision-mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.vision-card,
.mission-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
}

.vm-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e78b26, #62411e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(231, 139, 38, 0.3);
}

.vm-icon-wrapper i {
  font-size: 2rem;
  color: white;
}

.vm-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #62411e;
  margin-bottom: 1.5rem;
}

.vm-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Mission List */
.mission-list {
  margin-top: 1.5rem;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.mission-item:hover {
  background: #e9ecef;
}

.mission-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #e78b26;
  font-size: 1.2rem;
}

.mission-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #62411e;
  margin-bottom: 0.5rem;
}

.mission-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Location Section */
.location-section {
  margin-bottom: 2rem;
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle-about {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.location-image {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.location-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.location-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location-image:hover .location-map-image {
  transform: scale(1.05);
}

.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(98, 65, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-image:hover .location-overlay {
  opacity: 1;
}

.location-overlay-content {
  text-align: center;
  color: white;
}

.location-overlay-content i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
}

.location-overlay-content span {
  font-size: 1.2rem;
  font-weight: 600;
}

.location-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #62411e;
  margin-bottom: 1.5rem;
}

.location-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-title a:hover {
  color: #e78b26;
}

.location-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.location-features {
  display: flex;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 25px;
  border: 1px solid #e9ecef;
}

.feature-item i {
  color: #e78b26;
  font-size: 1.1rem;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

/* ===================================================
   OUTLET PAGE STYLES
   =================================================== */

.outlet-page-modern {
  min-height: 100vh;
  background: #f8f9fa;
}

.outlet-hero-section {
  background: linear-gradient(135deg, #8b5a3c 0%, #62411e 100%);
  color: white;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.outlet-hero-content {
  text-align: center;
}

.outlet-breadcrumb .breadcrumb {
  background: transparent;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.outlet-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.outlet-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.outlet-breadcrumb .breadcrumb-item a:hover {
  color: white;
}

.outlet-breadcrumb .breadcrumb-item.active {
  color: white;
}

.outlet-main-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
  color: white;
}

.outlet-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Outlet Stats */
.outlet-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Outlets Grid */
.outlets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.outlet-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.outlet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.outlet-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.outlet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.outlet-card:hover .outlet-image {
  transform: scale(1.05);
}

.outlet-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(98, 65, 30, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
}

.outlet-content {
  padding: 2rem;
}

.outlet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.outlet-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #62411e;
  margin: 0;
  flex: 1;
}

.outlet-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #28a745;
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #28a745;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* Outlet Info */
.outlet-info {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.info-item:hover {
  background: #e9ecef;
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e78b26, #62411e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.info-content {
  flex: 1;
}

.info-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.info-text {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Outlet Actions */
.outlet-actions {
  display: flex;
  gap: 1rem;
}

.btn-outlet-primary,
.btn-outlet-secondary {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-outlet-primary {
  background: #62411e;
  color: white;
}

.btn-outlet-primary:hover {
  background: #8b5a3c;
  transform: translateY(-2px);
  color: white;
}

.btn-outlet-secondary {
  background: #e9ecef;
  color: #333;
  border: 1px solid #dee2e6;
}

.btn-outlet-secondary:hover {
  background: #dee2e6;
  transform: translateY(-2px);
  color: #333;
}

/* Additional Info Section */
.outlet-additional-info {
  margin-bottom: 4rem;
}

.additional-info-content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.info-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e78b26, #62411e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 6px 20px rgba(231, 139, 38, 0.3);
}

.info-icon-large i {
  font-size: 2rem;
  color: white;
}

.additional-info-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #62411e;
  margin-bottom: 1rem;
}

.additional-info-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-method.whatsapp {
  background: #25d366;
  color: white;
}

.contact-method.whatsapp:hover {
  background: #1eaa52;
  transform: translateY(-2px);
  color: white;
}

.contact-method.phone {
  background: #007bff;
  color: white;
}

.contact-method.phone:hover {
  background: #0056b3;
  transform: translateY(-2px);
  color: white;
}

/* Empty State */
.outlet-empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-content {
  max-width: 400px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.empty-icon {
  font-size: 4rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.empty-state-content h3 {
  color: #666;
  margin-bottom: 1rem;
}

.empty-state-content p {
  color: #999;
  margin-bottom: 2rem;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #62411e;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-back-home:hover {
  background: #8b5a3c;
  transform: translateY(-2px);
  color: white;
}

/* Features Section */
.outlet-features-section {
  background: white;
  padding: 4rem 0;
  margin-top: 4rem;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-outlet {
  font-size: 2.2rem;
  font-weight: 700;
  color: #62411e;
  margin-bottom: 1rem;
}

.section-subtitle-outlet {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e78b26, #62411e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(231, 139, 38, 0.3);
}

.feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #62411e;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */

@media (max-width: 1200px) {
  .vision-mission-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .about-main-title,
  .outlet-main-title {
    font-size: 2rem;
  }

  .section-title-about,
  .section-title-outlet {
    font-size: 1.8rem;
  }

  .story-content {
    padding: 2rem;
  }

  .vision-card,
  .mission-card {
    padding: 2rem;
  }

  .outlet-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .outlets-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .outlet-actions {
    flex-direction: column;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .location-features {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .about-main-title,
  .outlet-main-title {
    font-size: 1.5rem;
  }

  .about-hero-section,
  .outlet-hero-section {
    padding: 2rem 0;
  }

  .story-content,
  .vision-card,
  .mission-card,
  .outlet-content,
  .additional-info-content {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .outlet-header {
    flex-direction: column;
    gap: 1rem;
  }

  .outlet-status {
    align-self: flex-start;
  }
}
