/* Privacy Checkbox Styles */
.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  padding: 1rem;
  border: 3px solid var(--black);
  background: var(--white);
  transition: all 0.2s ease;
  margin-bottom: 0;
  list-style: none;
}

.privacy-checkbox:hover {
  background: var(--yellow);
}

.privacy-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.privacy-custom {
  font-size: 1.5rem;
  line-height: 1;
  transition: all 0.2s;
  flex-shrink: 0;
  font-weight: 900;
  display: block;
}

.privacy-checkbox input[type="checkbox"]:checked + .privacy-custom {
  color: var(--red);
}

.privacy-checkbox input[type="checkbox"]:checked + .privacy-custom::before {
  content: "▣";
}

.privacy-text {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* Photo Later Checkbox */
.photo-later-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  padding: 1rem;
  border: 3px solid var(--black);
  background: var(--white);
  transition: all 0.2s ease;
  margin-bottom: 0;
  list-style: none;
}

.photo-later-checkbox:hover {
  background: var(--yellow);
}

.photo-later-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.photo-later-text {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .privacy-checkbox,
  .photo-later-checkbox {
    padding: 0.8rem;
  }
  
  .privacy-custom {
    font-size: 1.3rem;
  }
  
  .privacy-text,
  .photo-later-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .privacy-checkbox,
  .photo-later-checkbox {
    padding: 0.7rem;
    gap: 0.6rem;
  }
  
  .privacy-custom {
    font-size: 1.2rem;
  }
  
  .privacy-text,
  .photo-later-text {
    font-size: 0.8rem;
  }
}
