@import "./globle.css";
@import "./components/header.css";
@import "./components/footer.css";

:root {
  --cream: #f5f0e8;
  --cream-dark: #ede6d6;
  --cream-deeper: #e4dbc8;
  --green: #3d5a2e;
  --green-dark: #2e4422;
  --green-mid: #4a6e36;
  --orange: #e8813a;
  --orange-light: #f09a55;
  --orange-dark: #c96a25;
  --gold: #c9a84c;
  --gold-light: #e6c97a;
  --gold-dark: #9e7a2a;
  --text-dark: #1a1209;
  --text-mid: #4a3f2a;
  --text-light: #7a6e58;
  --border: #ddd5c4;
  --border-gold: #d4b87a;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

/* ══════════════════════════════════════════
       NAVBAR
    ══════════════════════════════════════════ */
/* nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;       
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.logo-text {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-enroll {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-enroll:hover {
  background: var(--orange-dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
} */

/* ══════════════════════════════════════════
       BREADCRUMB
    ══════════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}
.breadcrumb-inner a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover {
  color: var(--green);
}
.breadcrumb-inner .sep {
  opacity: 0.5;
}
.breadcrumb-inner .current {
  color: var(--text-mid);
  font-weight: 500;
}

/* ══════════════════════════════════════════
       HERO — SPLIT LAYOUT
    ══════════════════════════════════════════ */
.idol-hero {
  margin: 0 auto;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

/* LEFT: image gallery stack */
.img-gallery-col {
  position: sticky;
  top: 88px;
}

.main-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream-dark);
  border: 1px solid var(--border-gold);
  height: 550px;
  box-shadow:
    0 24px 80px rgba(61, 90, 46, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08);
}
.main-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at top center,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom center,
      rgba(61, 90, 46, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.main-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  object-fit: cover;
  height: 100%;
}
.main-img-wrap:hover img {
  transform: scale(1.03);
}

.img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
}
.img-badge .ib-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}
.img-badge .ib-val {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 0.1rem;
}

/* Thumbnail row */
.thumb-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.thumb {
  display: flex;
  width: 140px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s;
  aspect-ratio: 1/1;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb:hover {
  transform: translateY(-2px);
}
.thumb.active {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

/* ── RIGHT: detail col ── */
.detail-col {
  padding: 1rem 0 4rem;
}

.idol-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream-dark);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.idol-name {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.idol-name em {
  font-style: italic;
  color: var(--gold-dark);
}

.idol-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
}

/* Divider */
.fancy-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.fancy-divider::before,
.fancy-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-gold),
    transparent
  );
}
.fancy-divider span {
  font-size: 1rem;
  color: var(--gold);
}

/* Description */
.idol-desc {
  margin-bottom: 2rem;
}
.idol-desc strong {
  color: var(--green);
  font-weight: 600;
}

/* Specs grid */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.spec-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.1);
}
.spec-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}
.spec-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.spec-value .sicon {
  font-size: 1rem;
}

/* Feature tags */
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.ftag {
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-mid);
}

/* CTA buttons */
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-inquire {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.btn-inquire:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61, 90, 46, 0.35);
}
.btn-whatsapp {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 14px;

  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: #1da855;
  transform: translateY(-2px);
}
.btn-wishlist {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-size: 1.3rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.2s;
  align-self: stretch;
}
.btn-wishlist:hover {
  border-color: var(--gold);
  background: var(--cream-dark);
  transform: scale(1.08);
}
.btn-wishlist.liked {
  background: #fff0f0;
  border-color: #e05a5a;
}

/* Assurance strip */
.assurance-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.assurance-item {
  flex: 1;
  padding: 1rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-right: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-mid);
}
.assurance-item:last-child {
  border-right: none;
}
.assurance-item .a-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.assurance-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ══════════════════════════════════════════
       TABS — ABOUT / SYMBOLISM / CUSTOMISATION
    ══════════════════════════════════════════ */
.detail-tabs-section {
  margin: auto;
  padding: var(--section-pad);
}

.dtab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.dtab-bar::-webkit-scrollbar {
  display: none;
}
.dtab-btn {
  flex: 0 0 auto;
  padding: 0.85rem 1.75rem;
  border: none;
  background: none;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.dtab-btn:hover {
  color: var(--green);
}
.dtab-btn.active {
  color: var(--green);
  font-weight: 500;
  border-bottom-color: var(--orange);
}

.dtab-panel {
  display: none;
}
.dtab-panel.active {
  display: block;
  animation: panelIn 0.4s ease;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About panel */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text h3 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 1rem;
}
.about-text p {
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 12px 40px rgba(61, 90, 46, 0.1);
}
.about-img img {
  width: 100%;
  display: block;
  height: 450px;
  object-fit: cover;
}

/* Symbolism panel */
.symbol-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.symbol-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.25s,
    border-color 0.25s;
}
.symbol-item:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.1);
}
.symbol-icon-wrap {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--cream-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid var(--border-gold);
}
.symbol-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.symbol-item p {  
  line-height: 1.75;
  color: var(--text-mid);
}

/* Customisation panel */
.custom-intro {
  
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 2rem;
}
.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.custom-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.custom-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.12);
  transform: translateY(-3px);
}
.custom-card .cc-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.custom-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.4rem;
  margin-top: 0.4rem;
}
.custom-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}


/* ══════════════════════════════════════════
       INQUIRY MODAL
    ══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 18, 5, 0.7);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open {
  display: flex;
  animation: mIn 0.3s ease;
}
@keyframes mIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-box {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.3);
  animation: mSlide 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes mSlide {
  from {
    transform: scale(0.94) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.modal-header {
  background: var(--green);
  padding: 2rem 2.5rem 1.5rem;
  position: relative;
}
.modal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 0%,
    rgba(232, 129, 58, 0.2) 0%,
    transparent 60%
  );
}

.modal-header h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  position: relative;
}
.modal-header p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.35rem;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* idol summary inside modal */
.modal-idol-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}
.modal-idol-strip img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}
.mis-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
}
.mis-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

.modal-form {
  padding: 1.75rem 2.5rem 2rem;
}
.mf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.mf-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mf-group.full {
  grid-column: 1 / -1;
}
.mf-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
}
.mf-group label span {
  color: var(--orange);
}
.mf-group input,
.mf-group select,
.mf-group textarea {
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.mf-group input::placeholder,
.mf-group textarea::placeholder {
  color: #b8a898;
}
.mf-group input:focus,
.mf-group select:focus,
.mf-group textarea:focus {
  border-color: var(--green);
}
.mf-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6e58' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.mf-group textarea {
  min-height: 100px;
  resize: vertical;
}
.btn-submit-modal {
  width: 100%;
  padding: 1rem;
  margin-top: 1.25rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;

  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-submit-modal:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.modal-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* Success state */
.modal-success {
  display: none;
  padding: 3rem 2.5rem;
  text-align: center;
}
.success-check {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}
.modal-success h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.modal-success p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .idol-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .img-gallery-col {
    position: static;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-grid .about-img {
    order: -1;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
    .modal-form {
        padding: 1rem !important;
    }
    .modal-idol-strip {
        padding: 1rem !important;
    }
    .modal-close {
    width: 28px;
    height: 28px;
    font-size: 0.80rem;
    }
     
    .modal-header p {
        display: none;
    }
     
    .modal-header h3 {
        font-size: 1.3rem;
        margin-bottom: 0;
    }
     
    .btn-submit-modal
    {
        padding: 0.50rem;
    }
  .thumb {
    width: 80px;
  }
  /* .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    list-style: none;
    z-index: 300;
  } */
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .assurance-row {
    flex-wrap: wrap;
  }
  .assurance-item {
    min-width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .assurance-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  .assurance-item:last-child,
  .assurance-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .mf-row {
    grid-template-columns: 1fr;
  }
  .modal-form {
    padding: 1.5rem;
  }
  .modal-idol-strip {
    padding: 1rem 1.5rem;
  }
  .modal-header {
    padding: 1.5rem;
  }
}
@media (max-width: 600px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .custom-grid {
    grid-template-columns: 1fr;
  }
  .cta-group {
    flex-direction: column;
  }
  .btn-wishlist {
    width: 100%;
    border-radius: 14px;
  }
  .idol-hero {
    padding: 1.5rem 1.25rem 0;
  }
  .detail-tabs-section {
    padding: 0 1.25rem 4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 420px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
}

/* scroll animation helper */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.icon-box {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 10px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ddd;
}

.icon-box img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

/* .gallery-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
} */

/* Image fix */
/* .card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* Content fix */
/* .card-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.card-text h4 {
  font-size: 15px;
  margin: 5px 0;
}

.category {
  font-size: 12px;
  color: #888;
}

/* Buttons always bottom */
/* .card-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.card-actions button,
.card-actions a {
  flex: 1;
  padding: 8px;
  font-size: 13px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}  */

/* Button styles */

/* .btn-enquire {
  background: #000;
  color: #fff;
  border: none;
}

.btn-details {
  background: #f1f1f1;
  border: 1px solid #ddd;
  color: #000;
}  */
 
.gallery-card{
  position: relative;
}
.gallery-card .btn-inquire {
 all: unset;
 font-size: 26px;
 color: #fff;
 font-weight: 300;
 line-height: normal;
 z-index: 9;
}

.breadcrumb-wrap {
  padding: 12px 0;
  background: #f8f8f8;
  font-size: 14px;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  color: #777;
}

.breadcrumb li a {
  text-decoration: none;
  color: #385632;
  font-weight: 500;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 6px;
  color: #aaa;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb .active {
  color: #000;
  font-weight: 600;
}