/* ── Grandeur Hover Popup ── */

.gc-popup-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid #b8953a;
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 68vh;
  pointer-events: all;
}

.gc-popup-panel.gc-active {
  transform: translateY(0);
}

.gc-popup-inner {
  display: flex;
  height: 100%;
  max-height: 68vh;
}

/* ── Image column ── */
.gc-popup-image {
  width: 38%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.gc-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.gc-popup-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, #fff);
  pointer-events: none;
}

/* ── Content column ── */
.gc-popup-content {
  flex: 1;
  padding: 44px 52px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  position: relative;
}

/* Content fades during transition */
.gc-popup-content.gc-transitioning {
  opacity: 0;
  transition: opacity 0.18s ease;
}
.gc-popup-content {
  transition: opacity 0.18s ease;
}

.gc-popup-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: 4px;
  color: #b8953a;
  text-transform: uppercase;
  margin: 0 0 14px 0;
}

.gc-popup-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  color: #1c1914;
  margin: 0 0 6px 0;
  line-height: 1.2;
  font-weight: normal;
}

.gc-popup-divider {
  width: 40px;
  height: 2px;
  background: #b8953a;
  margin: 0 0 20px 0;
}

.gc-popup-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #7a6e62;
  line-height: 1.8;
  margin: 0 0 36px 0;
  max-width: 460px;
}

.gc-popup-cta {
  display: inline-block;
  background: #b8953a;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s ease;
}
.gc-popup-cta:hover {
  background: #9a7d31;
  color: #ffffff;
  text-decoration: none;
}

/* ── Close button ── */
.gc-popup-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid rgba(184, 149, 58, 0.4);
  cursor: pointer;
  color: #b8953a;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
  z-index: 1;
}
.gc-popup-close:hover {
  background: rgba(184, 149, 58, 0.12);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .gc-popup-panel {
    max-height: 88vh;
  }
  .gc-popup-inner {
    flex-direction: column;
    max-height: 88vh;
    overflow-y: auto;
  }
  .gc-popup-image {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
  }
  .gc-popup-image::after {
    background: linear-gradient(to bottom, transparent 60%, #fff);
  }
  .gc-popup-content {
    padding: 28px 24px 36px;
  }
  .gc-popup-title {
    font-size: 26px;
  }
  .gc-popup-desc {
    font-size: 13px;
    margin-bottom: 24px;
  }
}
