/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #F97316;
  --orange-light: #FDBA74;
  --orange-dark: #EA580C;
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --beige: #FDF2E9;
  --beige-dark: #F5E6D3;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A5A;
  --text-light: #7A7A8A;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

nav ul{
  list-style:none;
}

.footer-col ul{
  list-style:none;
}

.nav-links{
  list-style:none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1200px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 28px;
  top: 10px;
  width: 82%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo svg {
  width: 32px;
  height: 32px;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(249, 115, 22, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 8%;
  color: var(--white);
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--orange-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #FDBA74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.5s ease-in-out infinite;
}

@keyframes scrollMouse {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(10px);
  }
}

/* ===== SECTIONS COMMON ===== */
.section {
  padding: 70px 8%;
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.about-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat-card {
  background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card .number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-card .label {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}

/* ===== LAPAK ===== */
.lapak {
  background: var(--cream);
}

.lapak-pemasok {
  background: var(--white);
}

.lapak-filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-box input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.search-box input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.search-box svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.filter-select {
  padding: 14px 40px 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-select:focus {
  outline: none;
  border-color: var(--orange);
}

.filter-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.umkm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.umkm-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.umkm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.umkm-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.umkm-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.umkm-card:hover .umkm-card-img img {
  transform: scale(1.05);
}

.umkm-card-body {
  padding: 20px;
}

.umkm-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.supplier-name {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin: 0 0 18px;
}


.umkm-card-body .location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.umkm-card-body .btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.umkm-card-body .btn-detail:hover {
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-mid);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pagination button.active,
.pagination button:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ===== TESTIMONI ===== */
.testimoni {
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testi-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: rgba(249, 115, 22, 0.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testi-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.testi-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testi-stars {
  color: #FBBF24;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
}

/* ===== MITRA ===== */
.mitra{
  background: var(--white);
  padding: 60px 6%;
}

.partner-card{
  width: fit-content;
  margin: 40px auto 0;
  padding: 30px 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.partner-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.partner-logo{
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 8% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo span {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}

.social-links a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-col .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-col .contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

.footer-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 160px;
  margin-top: 8px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: brightness(0.8) contrast(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .umkm-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-map {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 92%;
    padding: 12px 20px;
  }

  .navbar.scrolled {
    width: 90%;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .section {
    padding: 50px 6%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .umkm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mitra-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .lapak-filters {
    flex-direction: column;
  }

  .search-box {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .umkm-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .mitra-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MODAL DETAIL UMKM ===== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 1000px;
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.modal-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: var(--radius-md);
}

.modal-info h2 {
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.modal-info p {
  color: var(--text-mid);
  margin-bottom: 18px;
}

.modal-info h4 {
  margin-bottom: 10px;
  color: var(--orange);
}

.modal-info ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style:disc;
}

.modal-info li {
  margin-bottom: 8px;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  font-size: 2rem;
  color: var(--text-mid);
}

.modal-close:hover {
  color: var(--orange);
}

@media(max-width:768px){
  .modal-grid{
    grid-template-columns:1fr;
  }

  .modal-map iframe{
    height:250px;
  }
}

.modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:9999;

  justify-content:center;
  align-items:center;
}

.modal.show{
  display:flex;
}

.modal-content{
  background:white;
  width:90%;
  max-width:900px;

  border-radius:20px;

  display:grid;
  grid-template-columns:1fr 1fr;

  overflow:hidden;

  position:relative;
}

.modal-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.modal-image{
  position: relative;
  overflow: hidden;
}

.slide-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(0,0,0,.55);
  color: white;

  font-size: 22px;
  cursor: pointer;

  transition: .25s;
  z-index: 5;
}

.slide-btn:hover{
  background: var(--orange);
}

.prev{
  left: 12px;
}

.next{
  right: 12px;
}

.modal-info{
  padding:30px;
}

.close-modal{
  position:absolute;
  top:15px;
  right:20px;

  font-size:32px;
  cursor:pointer;
}

.modal-btn{
  display:inline-block;

  margin-top:15px;

  background:#ff6b00;
  color:white;

  padding:12px 20px;

  border-radius:10px;

  text-decoration:none;
}

.secondary{
  background:#333;
  margin-left:10px;
}

/* ===== DETAIL MENU ===== */

.modal-detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin:24px 0;
}

.modal-detail-grid h3{
  margin-bottom:10px;
}

.modal-detail-grid ul{
  list-style:disc;
  padding-left:20px;
  margin:0;
}

.modal-detail-grid li{
  margin-bottom:8px;
}

#modalHarga,
#modalHargaPemasok{
  font-size:18px;
  font-weight:700;
  color:2d2d2d;
  margin-bottom:24px;
}

@media(max-width:768px){

  .modal-detail-grid{
    margin:22px 0 26px;
  }

}
