/* ============================================
   KARYA ANAK EMAS - MAIN STYLESHEET
   Premium, Clean, Modern Design
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fafafa;
  color: #1a1a1a;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection {
  background: rgba(212, 175, 55, 0.25);
  color: #0b1e3c;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8960f;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.2rem;
  }
}

.gold-text {
  color: #d4af37;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ---------- BUTTONS ---------- */
.btn-home {
  margin-bottom: 10px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37 0%, #c49f2a 100%);
  color: #0b1e3c;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #d4af37;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid #d4af37;
  color: #0b1e3c;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: #d4af37;
  color: #0b1e3c;
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: #0b1e3c;
  border-color: white;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

/* ---------- SECTION STYLES ---------- */
.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

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

.section-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin: 16px auto 0;
}

.section-subtitle {
  max-width: 600px;
  margin: 16px auto 0;
  color: #666;
  font-size: 1rem;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
  background: linear-gradient(135deg, #0b1e3c 0%, #1a2f4e 100%);
  padding: 140px 0 60px;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.page-header-line {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 20px auto;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-header {
    padding: 120px 0 40px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

/* Hero Base */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Hero with Background Image */
.hero-with-bg {
  position: relative;
}

/* Background Image - dengan efek zoom paralax ringan */
.hero-bg-image {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 20s ease-out infinite alternate;
  z-index: 0;
}

/* Zoom animation untuk efek dramatis */
@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/* Gradient Overlay - biru ke ungu (modern) */
.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 30, 60, 0.75) 0%,
    rgba(26, 47, 78, 0.65) 50%,
    rgba(11, 30, 60, 0.8) 100%
  );
  z-index: 1;
}

/* Dark Overlay - agar teks lebih terbaca */
.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Pattern Overlay - tekstur halus */
.hero-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  z-index: 1;
  opacity: 0.5;
}

/* Glass Effect di badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 2;
  position: relative;
}

/* Content harus di atas semua overlay */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}

.hero-desc {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
  position: relative;
}

/* Scroll indicator tetap di atas */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
  z-index: 10;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-buttons a {
    width: 80%;
    justify-content: center;
  }

  .hero-overlay-gradient {
    background: linear-gradient(
      135deg,
      rgba(11, 30, 60, 0.85) 0%,
      rgba(26, 47, 78, 0.75) 100%
    );
  }
}

/* Untuk layar lebih kecil */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-desc br {
    display: none;
  }
}

/* ============================================
   TENTANG KAMI PAGE - HERO
   ============================================ */

/* Hero About - dengan background image sama seperti halaman utama */
.hero-about {
  position: relative;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0 80px;
  text-align: center;
  color: white;
}

.hero-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 30, 60, 0.85) 0%,
    rgba(26, 47, 78, 0.75) 100%
  );
  z-index: 1;
}

.hero-about .container {
  position: relative;
  z-index: 2;
}

.hero-about h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-about .page-header-line {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 20px auto;
}

/* ============================================
   TENTANG KAMI PAGE - CONTENT CARD
   ============================================ */

/* Card konten yang melayang di atas hero */
.sejarah-content {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.sejarah-content h3 {
  color: #0b1e3c;
  font-size: 1.5rem;
  margin: 30px 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
}

.sejarah-content h3:first-of-type {
  margin-top: 0;
}

.sejarah-content p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

/* Quote block */
.quote-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid #d4af37;
  padding: 30px;
  margin: 30px 0;
  border-radius: 16px;
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
}

/* Timeline list */
.timeline-list {
  list-style: none;
  padding: 0;
}

.timeline-list li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 15px;
}

.timeline-year {
  font-weight: 700;
  color: #d4af37;
  min-width: 80px;
  font-size: 1.1rem;
}

.timeline-desc {
  color: #555;
  line-height: 1.6;
}

/* Stat mini untuk tentang page */
.stat-mini {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-mini-item {
  text-align: center;
  background: rgba(212, 175, 55, 0.1);
  padding: 15px 25px;
  border-radius: 16px;
  flex: 1;
}

.stat-mini-number {
  font-size: 2rem;
  font-weight: 800;
  color: #d4af37;
  display: block;
}

.stat-mini-label {
  font-size: 0.8rem;
  color: #666;
}

/* Responsive untuk tentang page */
@media (max-width: 768px) {
  .sejarah-content {
    padding: 25px;
    margin-top: -40px;
  }

  .hero-about h1 {
    font-size: 2rem;
  }

  .timeline-list li {
    flex-direction: column;
    gap: 5px;
  }

  .stat-mini {
    flex-direction: column;
  }

  .quote-block {
    padding: 20px;
  }
}

/* ============================================
   ABOUT PREVIEW (HOMEPAGE)
   ============================================ */

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

.about-text p {
  margin-bottom: 20px;
  color: #444;
  line-height: 1.7;
}

.link-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.3s;
}

.link-learn:hover {
  gap: 12px;
}

.about-image .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.about-image .image-wrapper:hover img {
  transform: scale(1.03);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px;
  font-size: 0.8rem;
}

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

/* ============================================
   PILLARS 3 PILAR
   ============================================ */

.pillars {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

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

.pillar-card {
  background: white;
  padding: 40px 28px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.pillar-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: #d4af37;
}

.pillar-card h3 {
  margin-bottom: 16px;
  color: #0b1e3c;
}

.pillar-card p {
  color: #666;
  line-height: 1.6;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.product-info {
  padding: 20px;
}

.product-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #0b1e3c;
}

.product-price {
  color: #d4af37;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 8px 0;
}

.product-code {
  font-size: 0.7rem;
  color: #999;
  font-family: monospace;
  margin-bottom: 12px;
}

.btn-detail-wa {
  background: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}

.btn-detail-wa:hover {
  background: #128c7e;
  transform: scale(0.98);
}

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e0e0e0;
  padding: 10px 24px;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  color: #333;
}

.filter-btn i {
  font-size: 0.9rem;
}

.filter-btn:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
}

.filter-btn.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #0b1e3c;
}

/* ---------- GALLERY PAGE ---------- */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e0e0e0;
  padding: 10px 24px;
  border-radius: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #0b1e3c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* ---------- IMPACT SECTION ---------- */
.impact {
  background: linear-gradient(135deg, #0b1e3c 0%, #0a1a35 100%);
  color: white;
}

.impact-grid {
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 40px;
}

.impact-item {
  flex: 1;
  min-width: 150px;
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #d4af37;
  font-family: "Poppins", sans-serif;
}

.impact-label {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.1);
  background: #128c7e;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.kontak-wa-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 32px;
  padding: 50px;
  text-align: center;
  margin-bottom: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.wa-card-icon {
  width: 80px;
  height: 80px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
  color: #25d366;
}

.kontak-wa-card h2 {
  margin-bottom: 16px;
}

.kontak-wa-card p {
  color: #666;
  margin-bottom: 32px;
}

.wa-response-time {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #888;
}

.kontak-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.kontak-info-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.kontak-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #d4af37;
}

.kontak-info-card h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.kontak-info-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.info-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.info-link:hover {
  gap: 10px;
}

/* ---------- SOCIAL MEDIA SECTION ---------- */
.social-section {
  background: #f5f5f5;
}

.social-header {
  text-align: center;
  margin-bottom: 40px;
}

.social-header h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 30px 40px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 150px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-card i {
  font-size: 36px;
}

.social-card span {
  font-weight: 600;
  color: #333;
}

.social-card small {
  font-size: 0.7rem;
  color: #999;
}

.social-card.instagram i {
  color: #e4405f;
}
.social-card.facebook i {
  color: #1877f2;
}
.social-card.tiktok i {
  color: #000000;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ---------- MAP SECTION ---------- */
.map-section {
  width: 100%;
  height: 350px;
}

.map-container {
  width: 100%;
  height: 115%;
}

.map-container iframe {
  filter: grayscale(0.2) contrast(1.1);
}

/* ---------- TESTIMONI SECTION ---------- */
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimoni-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimoni-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: rgba(212, 175, 55, 0.2);
}

.testimoni-card p {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

.testimoni-author strong {
  display: block;
  color: #0b1e3c;
}

.testimoni-author span {
  font-size: 0.8rem;
  color: #d4af37;
}

/* ---------- TEAM SECTION ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-card {
  text-align: center;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.team-card h4 {
  margin-bottom: 4px;
  color: #0b1e3c;
}

.team-card p {
  color: #d4af37;
  font-size: 0.85rem;
}

/* ---------- VISI MISI ---------- */
.visi-card {
  background: linear-gradient(135deg, #d4af37 0%, #c49f2a 100%);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  color: #0b1e3c;
  margin-bottom: 48px;
}

.visi-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.visi-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.visi-card p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
}

.misi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.misi-item {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border-left: 4px solid #d4af37;
}

.misi-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.3);
  margin-bottom: 12px;
}

.misi-item h4 {
  margin-bottom: 12px;
  color: #0b1e3c;
}

.misi-item p {
  color: #666;
  line-height: 1.6;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, #0b1e3c 0%, #1a2f4e 100%);
}

.cta-card {
  text-align: center;
  color: white;
  padding: 40px;
}

.cta-card h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.cta-card p {
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- VIDEO MODAL ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.video-card {
  cursor: pointer;
}

.video-thumbnail {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0b1e3c;
  transition: all 0.3s;
}

.video-thumbnail:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 500px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

#videoIframe {
  width: 100%;
  height: 100%;
}

/* ---------- LOADER ---------- */
.loader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.loader-card {
  height: 380px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 20px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ---------- UTILITIES ---------- */
.text-center {
  text-align: center;
}

.mt-12 {
  margin-top: 12px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-24 {
  margin-bottom: 24px;
}

.hide-mobile {
  display: inline;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   KATALOG PAGE - ENHANCED STYLES
   ============================================ */

/* Hero Background untuk halaman katalog */
.catalog-hero {
  position: relative;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0 80px;
  text-align: center;
  color: white;
}

.catalog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 30, 60, 0.85) 0%,
    rgba(26, 47, 78, 0.75) 100%
  );
  z-index: 1;
}

.catalog-hero .container {
  position: relative;
  z-index: 2;
}

.catalog-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.catalog-hero .page-header-line {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 20px auto;
}

/* Enhanced Product Card */
.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

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

/* Overlay pada gambar saat hover */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 30, 60, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.wa-icon-overlay {
  width: 50px;
  height: 50px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.product-card:hover .wa-icon-overlay {
  transform: scale(1);
}

/* Product Info */
.product-info {
  padding: 20px;
  text-align: center;
  background: white;
}

.product-code {
  font-family: "Monaco", "Courier New", monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #0b1e3c;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Tombol WhatsApp di card */
.btn-wa-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 12px;
  border: none;
  cursor: pointer;
}

.btn-wa-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-wa-card i {
  font-size: 1rem;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.pagination-btn {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
  min-width: 44px;
}

.pagination-btn:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.pagination-btn.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #0b1e3c;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-nav {
  background: white;
  border: 1px solid #e0e0e0;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
}

.pagination-nav:hover:not(:disabled) {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-2px);
}

.pagination-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-info {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #888;
}

/* Responsive untuk katalog */
@media (max-width: 768px) {
  .catalog-hero {
    padding: 120px 0 50px;
  }

  .catalog-hero h1 {
    font-size: 2rem;
  }

  .product-code {
    font-size: 0.85rem;
  }

  .btn-wa-card {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .pagination-btn,
  .pagination-nav {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .product-info {
    padding: 15px;
  }

  .product-code {
    font-size: 0.75rem;
  }

  .pagination-container {
    gap: 8px;
  }

  .pagination-btn {
    min-width: 36px;
    padding: 6px 10px;
  }
}

/* ============================================
   KONTAK PAGE - HERO WITH BACKGROUND
   ============================================ */

/* Hero untuk halaman kontak */
.kontak-hero {
  position: relative;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0 80px;
  text-align: center;
  color: white;
}

.kontak-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 30, 60, 0.85) 0%,
    rgba(26, 47, 78, 0.75) 100%
  );
  z-index: 1;
}

.kontak-hero .container {
  position: relative;
  z-index: 2;
}

.kontak-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.kontak-hero .page-header-line {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 20px auto;
}

.kontak-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive untuk kontak hero */
@media (max-width: 768px) {
  .kontak-hero {
    padding: 120px 0 50px;
  }

  .kontak-hero h1 {
    font-size: 2rem;
  }

  .kontak-hero p {
    font-size: 1rem;
  }
}

/* ============================================
   LUKISAN CARD STYLES
   ============================================ */

.product-card-lukisan .product-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #0b1e3c;
  font-family: "Poppins", sans-serif;
}

.product-card-lukisan .product-price {
  color: #d4af37;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 6px 0;
}

.product-card-lukisan .product-desc {
  font-size: 0.75rem;
  color: #888;
  margin: 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tombol randomize */
.randomize-btn.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #0b1e3c;
}

.randomize-btn i {
  transition: transform 0.3s ease;
}

.randomize-btn:hover i {
  transform: rotate(180deg);
}

/* ============================================
   PRODUCT IMAGE - SUPPORT LANDSCAPE & PORTRAIT
   ============================================ */

.product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mode contain - gambar tidak terpotong, full tampil */
.product-image-contain {
  aspect-ratio: 3 / 4;
}

.product-image-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f8f8;
  transition: transform 0.5s ease;
}

/* Hover effect tetap berfungsi */
.product-card:hover .product-image-contain img {
  transform: scale(1.03);
}

/* Background untuk gambar yang gagal load atau background putih */
.product-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  z-index: 0;
}

.product-image-container img {
  position: relative;
  z-index: 1;
}

/* Overlay tetap di atas gambar */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 30, 60, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

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

/* Responsif untuk mobile */
@media (max-width: 768px) {
  .product-image-container {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .product-image-container {
    aspect-ratio: 1 / 1.2;
  }
}

/* ============================================
   LUKISAN CARD STYLES
   ============================================ */
.product-card-lukisan .product-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: #0b1e3c;
  font-family: "Poppins", sans-serif;
}

.product-card-lukisan .product-price {
  color: #d4af37;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 4px 0;
}

.product-card-lukisan .product-code {
  font-size: 0.75rem;
  color: #999;
  margin: 4px 0;
}

/* ============================================
   PRODUCT DESCRIPTION - READ MORE (FIXED)
   ============================================ */
.product-desc {
  font-size: 0.85rem;
  color: #555;
  margin: 10px 0 12px 0;
  line-height: 1.55;
  text-align: left;
  position: relative;
}

/* Hapus pemotongan paksa dari CSS sebelumnya */
.product-card-lukisan .product-desc {
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  overflow: visible !important;
}

/* Short & Full Text */
.desc-short,
.desc-full {
  display: inline;
  line-height: 1.55;
}

.desc-full {
  display: none; /* Default disembunyikan oleh JS */
}

.desc-short {
  display: inline;
}

/* Tombol Baca Selengkapnya */
.desc-readmore {
  display: inline-block;
  background: none;
  border: none;
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  padding: 4px 0;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.desc-readmore:hover {
  color: #b8960f;
}

/* State saat Expanded */
.product-desc.expanded .desc-short {
  display: none;
}

.product-desc.expanded .desc-full {
  display: inline;
}

/* Pastikan card fleksibel tingginya */
.product-card-lukisan {
  height: auto;
  display: flex;
  flex-direction: column;
}

.product-card-lukisan .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-lukisan .product-desc {
  flex-shrink: 0;
}

/* Tombol WA tetap di bawah */
.btn-wa-card {
  margin-top: auto;
}

/* Tombol Randomize & Filter (tetap sama) */
.randomize-btn-catalog {
  transition: all 0.3s ease;
}

.randomize-btn-catalog.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #0b1e3c;
}

.randomize-btn-catalog i {
  transition: transform 0.3s ease;
}

.randomize-btn-catalog:hover i {
  transform: rotate(180deg);
}

.filter-btn.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #0b1e3c;
}

/* ============================================
   GALERI PAGE - HERO WITH BACKGROUND
   ============================================ */

/* Hero untuk halaman galeri */
.galeri-hero {
  position: relative;
  background-image: url("../images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0 80px;
  text-align: center;
  color: white;
}

.galeri-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 30, 60, 0.85) 0%,
    rgba(26, 47, 78, 0.75) 100%
  );
  z-index: 1;
}

.galeri-hero .container {
  position: relative;
  z-index: 2;
}

.galeri-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.galeri-hero .page-header-line {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 20px auto;
}

.galeri-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive galeri hero */
@media (max-width: 768px) {
  .galeri-hero {
    padding: 120px 0 50px;
  }
  .galeri-hero h1 {
    font-size: 2rem;
  }
  .galeri-hero p {
    font-size: 1rem;
  }
}

/* ============================================
   GALERI GRID STYLES
   ============================================ */

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

.gallery-overlay h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #d4af37;
}

.gallery-overlay p {
  font-size: 0.7rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.gallery-overlay i {
  font-size: 1.2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* ============================================
   VIDEO SECTION STYLES
   ============================================ */

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

.video-card {
  cursor: pointer;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0b1e3c;
  transition: all 0.3s ease;
}

.video-card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: #d4af37;
}

.video-caption {
  padding: 16px;
  text-align: center;
}

.video-caption h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #0b1e3c;
}

.video-caption p {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

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

  .play-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* ============================================
   CUSTOM ORDER BADGE STYLES
   ============================================ */

.product-card-custom {
  position: relative;
  border: 2px solid #d4af37;
  background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
}

.product-badge-custom {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #d4af37 0%, #c49f2a 100%);
  color: #0b1e3c;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card-custom .product-title {
  color: #d4af37;
}

.product-card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -12px rgba(212, 175, 55, 0.3);
}
