:root {
  --sanca-accent: #e52a23;
  --sanca-radius: 12px;
  --sanca-width: 900px;
  --sanca-height: 560px;
}



/* Açma butonu */
.sanca-open-btn {}

/* Overlay */
.sanca-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
}

.sanca-overlay.sanca-open {
  display: flex;
}

/* Modal */
.sanca-modal {
  width: 90%;
  
  background: #fff;
  border-radius: var(--sanca-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: sancaFadeIn .3s ease;
  position: relative;
}

.sanca-modal .modal-close {
      position: absolute;
    right: 9px;
    top: 8px;
    width: 33px;
    height: 33px;
    border: unset;
    background: unset;
    padding: unset;
    outline: unset;
    z-index: 14; 
}
.sanca-modal .modal-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@keyframes sancaFadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Sol taraf */
.sanca-left {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

/* Sol taraf */
.sanca-left .overlay {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  filter: brightness(0.7);
}



.sanca-left .logo-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(7px);
  background-color: #1d3322ab;

}

.sanca-left .logo-box img {
  width: 200px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sanca-left-content {
  max-width: 300px;
  text-align: center;
}

/* Sağ taraf */
.sanca-right {
  padding: 50px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.sanca-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sanca-close {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.sanca-form {
  display: grid;
  gap: 14px;
}

.sanca-row {
  display: flex;
  gap: 12px;
}

.sanca-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sanca-label {
  font-size: 13px;
  margin-bottom: 4px;
  color: #444;
}

.sanca-input,
.sanca-textarea,
.sanca-input select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.sanca-textarea {
  min-height: 100px;
}

.sanca-actions {
  display: flex;
  gap: 10px;
}

.sanca-submit {
  background: var(--sanca-accent);
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.sanca-cancel {
  background: #f0f0f0;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .sanca-modal {
    grid-template-columns: 1fr;
    height: auto;
  }

  .sanca-left {
    min-height: 180px;
  }
}


.sanca-overlay .section-title.style-one,
.sanca-overlay .section-title.style-two {
  font-size: 35px;
  line-height: 40px;
  text-align: center;
}

.sanca-overlay .comment-form{
  margin: unset !important;
}