/* Scoped reset */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.GC * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .GC {
    margin-top: -50px !important;
  }
}

/* Additional hard reset to defeat theme overrides */
.GC,
.GC * {
  box-sizing: border-box !important;
}
.GC h1,
.GC h2,
.GC h3,
.GC h4,
.GC h5,
.GC h6,
.GC p,
.GC ul,
.GC ol,
.GC li,
.GC figure,
.GC blockquote,
.GC dl,
.GC dd,
.GC section,
.GC header,
.GC footer {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Montserrat", sans-serif !important;
  text-transform: none !important;
}
.GC a {
  color: inherit !important;
  text-decoration: none !important;
}
.GC button,
.GC input,
.GC select,
.GC textarea,
.GC label {
  font: inherit !important;
  color: inherit !important;
  outline: none !important;
}

/* Scoped CSS variables */
.GC {
  --primary: #2d586c;
  --light-teal: #cde9e0;
  --peach: #efd7ca;
  --teal: #a0d9d9;
  --white: #ffffff;
  --dark: #1a3442;
}

.GC {
  font-family: "Montserrat", sans-serif !important;
  line-height: 1.5 !important;
  overflow-x: hidden !important;
  background: linear-gradient(
    135deg,
    var(--light-teal) 0%,
    var(--white) 50%,
    var(--peach) 100%
  ) !important;
  /* Full-bleed container */
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Animated Background Elements */
.GC .bg-animation {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.GC .floating-element {
  position: absolute;
  animation: float 20s infinite ease-in-out;
}

.GC .palm-leaf-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, var(--teal), var(--light-teal));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  top: 10%;
  right: -100px;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.GC .palm-leaf-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--peach), var(--light-teal));
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: 20%;
  left: -50px;
  transform: rotate(-30deg);
  animation-delay: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(20px) rotate(-5deg);
  }
  75% {
    transform: translateY(-10px) rotate(3deg);
  }
}

/* Hero Section */
.GC .hero {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 120px 5% 80px !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
}

.GC .hero-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
  position: relative !important;
  z-index: 2 !important;
}

.GC .hero-content {
  animation: slideInLeft 1s ease-out !important;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.GC h1 {
  font-family: "Montserrat", sans-serif !important;
  font-size: clamp(36px, 5vw, 56px) !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
  letter-spacing: -1px !important;
  font-family: "Montserrat", sans-serif !important;
  text-transform: none !important;
}

.GC .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--teal)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.GC .hero-description {
  font-size: 18px !important;
  color: var(--primary) !important;
  opacity: 0.8 !important;
  line-height: 1.6 !important;
  margin-bottom: 30px !important;
}

.GC .hero-badge {
  display: inline-block !important;
  background: linear-gradient(
    135deg,
    var(--teal),
    var(--light-teal)
  ) !important;
  color: var(--primary) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  animation: pulse 2s infinite !important;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.GC .value-cards {
  display: flex !important;
  gap: 20px !important;
  margin-bottom: 40px !important;
}

.GC .value-card {
  flex: 1 !important;
  background: white !important;
  padding: 20px !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(45, 88, 108, 0.1) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.GC .value-card::before {
  content: "";
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, var(--teal), var(--peach)) !important;
}

.GC .value-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(45, 88, 108, 0.15) !important;
}

.GC .value-percentage {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: 5px !important;
}

.GC .value-condition {
  font-size: 14px !important;
  color: var(--primary) !important;
  opacity: 0.7 !important;
}

.GC .cta-button {
  background: linear-gradient(135deg, var(--primary), var(--dark)) !important;
  color: white !important;
  padding: 18px 40px !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 10px 30px rgba(45, 88, 108, 0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  position: relative !important;
  overflow: hidden !important;
}

.GC .cta-button::before {
  content: "";
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  ) !important;
  transition: left 0.5s ease !important;
}

.GC .cta-button:hover::before {
  left: 100% !important;
}

.GC .cta-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 40px rgba(45, 88, 108, 0.4) !important;
}

/* 3D Gift Card */
.GC .gift-card-showcase {
  position: relative !important;
  perspective: 1000px !important;
  animation: slideInRight 1s ease-out !important;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.GC .gift-card-3d {
  width: 100% !important;
  max-width: 500px !important;
  aspect-ratio: 1.6 !important;
  position: relative !important;
  transform-style: preserve-3d !important;
  animation: rotateCard 20s infinite linear !important;
  margin: 0 auto !important;
}

@keyframes rotateCard {
  0% {
    transform: rotateY(0deg) rotateX(5deg);
  }
  25% {
    transform: rotateY(10deg) rotateX(5deg);
  }
  50% {
    transform: rotateY(0deg) rotateX(5deg);
  }
  75% {
    transform: rotateY(-10deg) rotateX(5deg);
  }
  100% {
    transform: rotateY(0deg) rotateX(5deg);
  }
}

.GC .card-face {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 20px !important;
  background-image: url("https://www.balimandira.com/wp-content/uploads/2025/09/cover_gift_card.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
  box-shadow: 0 20px 60px rgba(45, 88, 108, 0.3) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  color: white !important;
  /* border: 2px solid rgba(255, 255, 255, 0.2) !important; */
  overflow: hidden !important;
}

.GC .card-face::before {
  content: "";
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  /* background: linear-gradient(
    135deg,
    rgba(45, 88, 108, 0.7),
    rgba(160, 217, 217, 0.5)
  ) !important; */
  /* backdrop-filter: blur(2px) !important; */
  z-index: 1 !important;
}

.GC .card-face::after {
  /* content: ""; */
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;
  width: 60px !important;
  height: 60px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(5px) !important;
  z-index: 2 !important;
}

.GC .card-logo,
.GC .card-type,
.GC .card-value {
  position: relative !important;
  z-index: 3 !important;
}

.GC .card-logo {
  font-size: 32px !important;
  font-weight: 800 !important;
  margin-bottom: 20px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
}

.GC .card-type {
  font-size: 18px !important;
  opacity: 0.9 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

.GC .card-value {
  font-size: 42px !important;
  font-weight: 800 !important;
  margin-top: 20px !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Features Section */
.GC .features {
  padding: 100px 5% !important;
  background: white !important;
  position: relative !important;
  width: 100% !important;
}

.GC .features-container {
  max-width: 1400px !important;
  margin: 0 auto !important;
}

.GC .section-header {
  text-align: center !important;
  margin-bottom: 60px !important;
}

.GC .section-title {
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: 20px !important;
  font-family: "Montserrat", sans-serif !important;
  text-transform: none !important;
}

.GC .section-subtitle {
  font-size: 18px !important;
  color: var(--primary) !important;
  opacity: 0.7 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}

.GC .features-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
  gap: 40px !important;
}

.GC .feature-card {
  background: linear-gradient(135deg, var(--light-teal), white) !important;
  padding: 40px !important;
  border-radius: 20px !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.GC .feature-card::before {
  content: "";
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  /* background: radial-gradient(
    circle,
    var(--teal) 0%,
    transparent 70%
  ) !important; */
  /* opacity: 0 !important; */
  transition: opacity 0.3s ease !important;
}

.GC .feature-card:hover::before {
  opacity: 0.1 !important;
}

.GC .feature-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(45, 88, 108, 0.15) !important;
}

.GC .feature-icon {
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto 20px !important;
  background: linear-gradient(135deg, var(--primary), var(--teal)) !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 36px !important;
  color: white !important;
  box-shadow: 0 10px 30px rgba(45, 88, 108, 0.2) !important;
}

.GC .feature-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin-bottom: 15px !important;
}

.GC .feature-description {
  font-size: 16px !important;
  color: var(--primary) !important;
  opacity: 0.7 !important;
  line-height: 1.6 !important;
}

/* Benefits Section */
.GC .benefits2 {
  padding: 100px 5% !important;

  background: linear-gradient(135deg, var(--primary), var(--dark)) !important;

  background-size: 200% 200%;
}

.GC .benefits {
  padding: 100px 5% !important;
  background: linear-gradient(
    135deg,
    var(--peach),
    var(--light-teal)
  ) !important;
  width: 100% !important;
}

.GC .benefits-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.GC .benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 30px !important;
  margin-top: 50px !important;
}

.GC .benefits-flex {
  display: flex !important;
  gap: 30px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  margin-top: 50px !important;
}

.GC .benefit-item {
  text-align: center !important;
  padding: 30px !important;
  border-radius: 15px !important;
  background: white !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 10px 30px rgba(45, 88, 108, 0.1) !important;
}

.GC .benefit-item:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 15px 40px rgba(45, 88, 108, 0.15) !important;
}

.GC .benefit-icon {
  font-size: 48px !important;
  margin-bottom: 15px !important;
}

.GC .benefit-text {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
}

/* Purchase Form Section */
.GC .purchase-section {
  padding: 100px 5% !important;
  background: white !important;
  width: 100% !important;
}

.GC .purchase-container {
  max-width: 800px !important;
  margin: 0 auto !important;
  background: linear-gradient(135deg, var(--light-teal), white) !important;
  border-radius: 30px !important;
  padding: 60px !important;
  box-shadow: 0 30px 80px rgba(45, 88, 108, 0.2) !important;
}

.GC .form-title {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  text-align: center !important;
  margin-bottom: 20px !important;
}

.GC .form-subtitle {
  text-align: center !important;
  font-size: 16px !important;
  color: var(--primary) !important;
  opacity: 0.7 !important;
  margin-bottom: 40px !important;
}

.GC .form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 15px !important;
  margin-bottom: 30px !important;
}

.GC .form-group {
  position: relative !important;
  margin-bottom: -15px !important;
}

.GC .form-group.full-width {
  grid-column: 1 / -1 !important;
}

.GC .form-label {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.5px !important;
}

.GC .form-input,
.GC .form-textarea,
.GC .form-select {
  width: 100% !important;
  padding: 15px !important;
  font-size: 16px !important;
  border: 2px solid var(--light-teal) !important;
  border-radius: 12px !important;
  color: var(--primary) !important;
  background: white !important;
  transition: all 0.3s ease !important;
  font-family: "Montserrat", sans-serif !important;
}

.GC .form-input:focus,
.GC .form-textarea:focus,
.GC .form-select:focus {
  outline: none !important;
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 4px rgba(160, 217, 217, 0.1) !important;
  transform: translateY(-2px) !important;
}

.GC .form-input::placeholder,
.GC .form-textarea::placeholder {
  color: var(--primary) !important;
  opacity: 0.4 !important;
}

.GC .form-textarea {
  resize: vertical !important;
  min-height: 100px !important;
}

.GC .submit-button {
  width: 100% !important;
  padding: 20px !important;
  background: linear-gradient(135deg, var(--primary), var(--dark)) !important;
  color: white !important;
  border: none !important;
  border-radius: 15px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(45, 88, 108, 0.3) !important;
}

.GC .submit-button::before {
  content: "";
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  ) !important;
  transition: left 0.6s ease !important;
}

.GC .submit-button:hover::before {
  left: 100% !important;
}

.GC .submit-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 40px rgba(45, 88, 108, 0.4) !important;
}

.GC .form-note {
  text-align: center !important;
  font-size: 13px !important;
  color: var(--primary) !important;
  opacity: 0.6 !important;
  margin-top: 20px !important;
  font-style: italic !important;
}

/* CTA Section */
.GC .final-cta {
  padding: 100px 5% !important;
  background: linear-gradient(135deg, var(--primary), var(--dark)) !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
}

.GC .final-cta::before {
  content: "";
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  ) !important;
  animation: rotate 30s linear infinite !important;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.GC .final-cta-container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

.GC .final-cta h2 {
  font-size: clamp(36px, 5vw, 48px) !important;
  font-weight: 800 !important;
  color: white !important;
  margin-bottom: 20px !important;
}

.GC .final-cta p {
  font-size: 20px !important;
  color: white !important;
  opacity: 0.9 !important;
  margin-bottom: 40px !important;
}

.GC .final-cta-button {
  background: white !important;
  color: var(--primary) !important;
  padding: 20px 50px !important;
  border: none !important;
  border-radius: 50px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
  display: inline-block !important;
  text-decoration: none !important;
}

.GC .final-cta-button:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3) !important;
}

/* Responsive */
@media (max-width: 968px) {
  .GC .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .GC .value-cards {
    flex-direction: column !important;
  }

  .GC .purchase-container {
    padding: 40px 30px !important;
  }

  .GC .features-grid {
    grid-template-columns: 1fr !important;
  }

  .GC .form-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .GC h1 {
    font-size: 32px !important;
  }

  .GC .hero-description {
    font-size: 16px !important;
  }

  .GC .cta-button {
    width: 100% !important;
    justify-content: center !important;
  }

  .GC .form-group {
    grid-column: 1 / -1 !important;
  }
}
/* Modal overlay */
#GC_terms_modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  padding: 140px 20px;
  box-sizing: border-box;
}

/* Modal content box */
#GC_modal_content {
  background: #fff;
  max-width: 700px;
  width: 100%;
  margin: auto;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  color: #333;
  line-height: 1.6;
  font-size: 14px;
}

/* Close button */
#GC_close_modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

#GC_close_modal:hover {
  color: #000;
}

/* Headings */
#GC_modal_content h2 {
  margin-bottom: 1.5em;
}

/* Section spacing without borders */
#GC_modal_content section {
  margin-bottom: 3.5em;
  padding-bottom: 0;
  border-bottom: none;
}

/* Headings inside sections */
#GC_modal_content section h3 {
  margin-top: 20px !important;
  margin-bottom: 1em; /* Bigger gap after headings */
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

/* Paragraphs inside sections */
#GC_modal_content section p {
  margin-top: 0;
  margin-bottom: 1.5em; /* More space between paragraphs */
  line-height: 1.5;
}

/* Lists */
#GC_modal_content ul {
  margin: 0 0 1em 1.4em;
  padding: 0;
  list-style-type: disc;
}

#GC_modal_content li {
  margin-bottom: 0.5em;
}

/* Links */
#GC_modal_content a {
  color: #0073e6;
  text-decoration: none;
}

#GC_modal_content a:hover {
  text-decoration: underline;
}

/* Bold text */
#GC_modal_content strong,
#GC_modal_content b {
  color: #000;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  #GC_modal_content {
    padding: 20px 30px 30px;
  }
  #GC_close_modal {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }
}

/* ================================================
   Additional Styles for Professional Plugin v2.0
   ================================================ */

/* Form Error Message */
.GC-form-error {
  margin: 15px 0;
  padding: 15px 20px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #991b1b;
  border-left: 4px solid #ef4444;
  border-radius: 0 8px 8px 0;
  font-weight: 500;
  animation: GC-shake 0.5s ease-in-out;
}

@keyframes GC-shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

/* Amount Error */
.GC-amount-error {
  color: #dc2626;
  font-size: 13px;
  margin-top: 8px;
  padding: 8px 12px;
  background: #fef2f2;
  border-radius: 6px;
  border-left: 3px solid #ef4444;
}

/* Promo Status */
.GC-promo-status {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.GC-promo-status:empty {
  display: none;
}

.GC-promo-status.success {
  color: #059669;
  background: #ecfdf5;
  border-left: 3px solid #10b981;
}

.GC-promo-status.error {
  color: #dc2626;
  background: #fef2f2;
  border-left: 3px solid #ef4444;
}

.GC-promo-status .validating {
  color: #6b7280;
  font-style: italic;
}

/* Price Summary */
.GC-price-summary {
  margin: 30px 0;
  padding: 0;
  color: var(--primary);
  background: white;
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 20px rgba(45, 88, 108, 0.1);
  overflow: hidden;
}

.GC-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}

.GC-price-row:first-child {
  background: linear-gradient(135deg, rgba(160, 217, 217, 0.15), rgba(205, 233, 224, 0.2));
}

.GC-price-row:last-child {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.12));
  border-top: 2px dashed var(--light-teal);
}

.GC-price-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.GC-price-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.GC-price-highlight {
  font-size: 24px;
  color: #059669;
  text-shadow: 0 1px 2px rgba(5, 150, 105, 0.1);
}

.GC-price-values {
  text-align: right;
}

.GC-price-converted {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-top: 4px;
  opacity: 0.9;
}

.GC-price-converted-highlight {
  color: #10b981;
  font-weight: 700;
}

/* Terms Group */
.GC-terms-group {
  margin-top: -10px !important;
  padding-bottom: 30px !important;
}

.GC-terms-group a {
  color: var(--primary) !important;
  text-decoration: underline !important;
  font-weight: 600 !important;
}

.GC-terms-group a:hover {
  color: var(--dark) !important;
}

.GC-terms-group input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin-right: 10px !important;
  accent-color: var(--primary) !important;
  cursor: pointer !important;
}

/* Updated Modal Styles */
.GC-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 52, 66, 0.7);
  overflow-y: auto;
  padding: 80px 20px;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
}

.GC-modal-content {
  background: #fff;
  max-width: 700px;
  width: 100%;
  margin: auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  color: var(--primary);
  line-height: 1.7;
  font-size: 14px;
  animation: GC-modal-appear 0.3s ease-out;
}

@keyframes GC-modal-appear {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.GC-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  color: var(--primary);
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.GC-modal-close:hover {
  color: var(--dark);
  background: var(--light-teal);
}

.GC-modal-content h2 {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  margin-bottom: 30px !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid var(--light-teal) !important;
}

.GC-modal-content section {
  margin-bottom: 25px;
}

.GC-modal-content section h3 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-top: 20px !important;
  margin-bottom: 12px !important;
}

.GC-modal-content section p {
  margin-bottom: 12px !important;
  line-height: 1.6 !important;
}

.GC-modal-content ul {
  margin: 0 0 15px 20px !important;
  padding: 0 !important;
  list-style-type: disc !important;
}

.GC-modal-content li {
  margin-bottom: 8px !important;
  line-height: 1.5 !important;
}

.GC-modal-content a {
  color: var(--primary) !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
}

.GC-modal-content a:hover {
  color: var(--dark) !important;
}

.GC-modal-footer {
  margin-top: 40px !important;
  padding-top: 25px !important;
  border-top: 2px solid var(--light-teal) !important;
  text-align: center !important;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .GC-modal {
    padding: 40px 15px;
  }

  .GC-modal-content {
    padding: 25px 20px;
  }

  .GC-modal-close {
    top: 15px;
    right: 15px;
    font-size: 28px;
  }

  .GC-modal-content h2 {
    font-size: 20px !important;
    padding-right: 40px !important;
  }
}

/* Loading state for submit button */
.GC .submit-button.loading {
  pointer-events: none;
  opacity: 0.8;
}

.GC .submit-button.loading::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: GC-spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes GC-spin {
  to { transform: rotate(360deg); }
}

/* Focus states for accessibility */
.GC .form-input:focus,
.GC .form-select:focus,
.GC .form-textarea:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(45, 88, 108, 0.15) !important;
}

.GC input[type="checkbox"]:focus {
  outline: 2px solid var(--primary) !important;
  outline-offset: 2px !important;
}

/* Success notification animation */
@keyframes GC-success-pulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% { 
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
}

.GC-promo-status.success {
  animation: GC-success-pulse 2s ease-in-out;
}

/* ================================================
   Custom Amount Checkbox & Stepper
   ================================================ */

.GC-custom-checkbox {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  margin-top: 6px !important;
  margin-bottom: 20px !important;
  cursor: pointer !important;
  font-size: 11px !important;
  color: var(--primary) !important;
  font-weight: 500 !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  transition: all 0.3s ease !important;
  opacity: 0.6 !important;
}

.GC-custom-checkbox:hover {
  background: transparent !important;
  border-color: transparent !important;
  opacity: 1 !important;
}

.GC-custom-checkbox input[type="checkbox"] {
  width: 12px !important;
  height: 12px !important;
  accent-color: var(--primary) !important;
  cursor: pointer !important;
  border-radius: 2px !important;
}

.GC-custom-checkbox input[type="checkbox"]:checked + span {
  color: var(--dark) !important;
  font-weight: 600 !important;
}

.GC-custom-checkbox span {
  user-select: none;
  transition: all 0.2s ease;
}

/* Custom Amount Wrapper */
.GC-custom-amount-wrapper {
  margin-top: 10px;
}

/* Stepper Component */
.GC-stepper {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--light-teal);
  border-radius: 14px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 88, 108, 0.08);
}

.GC-stepper:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 20px rgba(45, 88, 108, 0.12);
}

.GC-stepper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 88, 108, 0.15);
}

.GC-stepper-btn {
  width: 64px;
  min-height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--dark)) !important;
  color: white !important;
  border: none !important;
  font-size: 28px !important;
  font-weight: 300 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.GC-stepper-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--dark), #0f2a36) !important;
  transform: scale(1.02);
}

.GC-stepper-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.GC-stepper-btn:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  background: linear-gradient(135deg, #9ca3af, #6b7280) !important;
}

.GC-stepper-minus {
  border-right: none !important;
  border-radius: 12px 0 0 12px !important;
}

.GC-stepper-plus {
  border-left: none !important;
  border-radius: 0 12px 12px 0 !important;
}

.GC-stepper-input {
  flex: 1 !important;
  text-align: center !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--primary) !important;
  background: linear-gradient(180deg, #fafbfc, white) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 16px 10px !important;
  cursor: default !important;
  letter-spacing: 0.5px !important;
}

.GC-stepper-input:focus {
  outline: none !important;
  box-shadow: none !important;
}

.GC-stepper-info {
  font-size: 11px;
  color: var(--primary);
  opacity: 0.5;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Responsive Stepper */
@media (max-width: 480px) {
  .GC-stepper-btn {
    width: 48px;
    font-size: 20px !important;
  }
  
  .GC-stepper-input {
    font-size: 16px !important;
    padding: 12px 5px !important;
  }
  
  .GC-stepper-info {
    font-size: 11px;
  }
}

/* ================================================
   Currency Selector & Converted Amounts
   ================================================ */

.GC-currency-selector {
  position: relative;
}

.GC-currency-note {
  font-size: 10px !important;
  color: var(--primary) !important;
  opacity: 0.5 !important;
  margin-top: 6px !important;
  margin-bottom: 15px !important;
  font-style: italic !important;
  padding-left: 2px !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.GC-currency-note::before {
  content: "ℹ️";
  font-size: 9px;
}

.GC-currency-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  background: linear-gradient(135deg, var(--light-teal), var(--teal));
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
}

/* Currency value label next to Gift Card Amount */
.GC-currency-value-label {
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 5px 14px;
  border-radius: 20px;
  margin-left: 12px;
  vertical-align: middle;
  display: none;
  animation: GC-fade-in 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  letter-spacing: 0.3px;
}

.GC-currency-value-label:not(:empty) {
  display: inline-block;
}

/* Converted Amount Display */
.GC-converted-amount {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(160, 217, 217, 0.2), rgba(205, 233, 224, 0.3));
  border-radius: 8px;
  border-left: 3px solid var(--teal);
  animation: GC-fade-in 0.3s ease;
}

@keyframes GC-fade-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Currency Select Styling */
#GC_currency {
  font-size: 15px !important;
  background: linear-gradient(180deg, white, #f8fafc) !important;
  border: 2px solid var(--light-teal) !important;
  transition: all 0.3s ease !important;
}

#GC_currency:hover {
  border-color: var(--teal) !important;
}

#GC_currency:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(45, 88, 108, 0.1) !important;
}

#GC_currency option {
  padding: 12px !important;
  font-size: 14px !important;
}

/* Amount Select Styling */
#GC_amount {
  font-size: 16px !important;
  font-weight: 600 !important;
  background: linear-gradient(180deg, white, #f8fafc) !important;
  border: 2px solid var(--light-teal) !important;
  padding: 16px 20px !important;
  transition: all 0.3s ease !important;
}

#GC_amount:hover {
  border-color: var(--teal) !important;
}

#GC_amount:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(45, 88, 108, 0.1) !important;
}

#GC_amount option {
  padding: 12px !important;
  font-weight: 500 !important;
}

/* Responsive Currency */
@media (max-width: 480px) {
  .GC-currency-value-label {
    display: block !important;
    margin-left: 0 !important;
    margin-top: 8px !important;
    width: fit-content !important;
  }
  
  .GC-converted-amount {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .GC-price-converted {
    font-size: 12px;
  }

  .GC-price-row {
    padding: 14px 18px;
  }

  .GC-price-value {
    font-size: 18px;
  }

  .GC-price-highlight {
    font-size: 20px;
  }

  .GC-stepper-btn {
    width: 54px;
    min-height: 50px;
    font-size: 24px !important;
  }

  .GC-stepper-input {
    font-size: 17px !important;
  }

  .GC-custom-checkbox {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }
}