body.page-id-9251 .grecaptcha-badge {
  visibility: hidden !important;
  transition: none !important;
}

.ticket-wrapper {
  padding: 30px;
  background: #fff; /* Matches page background context */
  display: flex;
  justify-content: center;
}

/* Master container holding layout boundaries */
.ticket-container {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.ticket-container h1,
.ticket-container h3 {
    font-family: "Poppins", Sans-serif;
}

/* Dark Top Header block rules */
.ticket-header {
  background: #ee275c;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}
.ticket-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 0px;
}
.ticket-icon svg {
  fill: #fff;
}
.header-title {
  margin: 0;
  font-size: 24px !important;
  font-weight: 700;
}

/* Content block alignment metrics */
.ticket-body {
  padding: 24px 24px 12px;
}
.badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eaf7ed;
  border: 1px solid #d1f0d8;
  color: #28a745;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 700;
}
.badge-icon {
  background: #28a745;
  color: #ffffff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 15px;
}
.form-group {
  margin-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 12px;
}
.form-group label {
  display: block;
  color: #727b87;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-group .value {
  color: #07163a;
  font-size: 18px;
  font-weight: 700;
}
.body-note {
  color: #495057;
  font-size: 18px;
  margin: 16px 0 0;
}

.ticket-divider-section {
  position: relative;
  display: flex;
  align-items: center;
  height: 20px; 
  background: #ffffff;
}
.notch {
  width: 10px;
  height: 20px;
  background: #E7E7E7;
  position: absolute;
}
.notch-left {
  left: 0;
  border-radius: 0 10px 10px 0;
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.02);
}
.notch-right {
  right: 0;
  border-radius: 10px 0 0 10px;
  box-shadow: inset 2px 0 4px rgba(0,0,0,0.02);
}
.ticket-divider-line {
  flex-grow: 1;
  height: 2px;
  margin: 0 18px;
  background-image: linear-gradient(to right, #cccccc 40%, rgba(255,255,255,0) 0%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

/* Bottom elements arrangement structures */
.ticket-stub {
  padding: 12px 24px 24px;
  background: #ffffff;
}
.gift-box {
  background: #fef5dc;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gift-info h3 {
  margin: 0 0 4px;
  color: #784a0d;
  font-size: 18px;
  font-weight: 800;
}
.gift-info p {
  margin: 0;
  color: #92642a;
}

/* Pure Vector Gift Box Drawing Core Engine classes */
.gift-icon {
  width: 44px;
  height: 44px;
  position: relative;
  flex-shrink: 0;
}
.gift-body {
  width: 36px;
  height: 28px;
  background: #f5b041;
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  left: 4px;
}
.gift-lid {
  width: 42px;
  height: 8px;
  background: #e67e22;
  border-radius: 2px;
  position: absolute;
  bottom: 28px;
  left: 1px;
}
.gift-ribbon {
  width: 8px;
  height: 100%;
  background: #e74c3c;
  margin: 0 auto;
}
.gift-bow {
  width: 12px;
  height: 12px;
  border: 3px solid #c0392b;
  border-radius: 50% 50% 0 50%;
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 11px;
}
.gift-bow::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid #c0392b;
  border-radius: 50% 50% 50% 0;
  transform: rotate(90deg);
  top: -15px;
  left: 15px;
}