* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8fafc;
  color: #1e293b;
  font-family: "Poppins", Arial, sans-serif;
}

.care-mobile-header {
  display: none;
}

.care-page {
  padding-top: 94px;
}

.care-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: center;
  padding: 58px min(6vw, 80px);
  background: linear-gradient(135deg, #711c77 0%, #9f238c 52%, #b31878 100%);
  color: #fff;
}

.care-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffd700;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.care-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}

.care-info-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.care-info-panel div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.care-info-panel i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.care-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 38px auto 64px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.care-tabs {
  display: flex;
  gap: 10px;
  padding: 18px;
  background: #f8f4ff;
  border-bottom: 1px solid #e9d5ff;
}

.care-tabs button {
  min-height: 44px;
  border: 1px solid #d8b4fe;
  border-radius: 8px;
  padding: 0 18px;
  color: #711c77;
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.care-tabs button.active {
  background: linear-gradient(135deg, #711c77 0%, #9f238c 52%, #b31878 100%);
  color: #fff;
  border-color: transparent;
}

.care-form {
  display: none;
  padding: 30px;
}

.care-form.active {
  display: block;
}

.care-form-head h2 {
  margin: 0;
  font-size: 1.7rem;
}

.care-form-head p {
  margin: 8px 0 24px;
  color: #64748b;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.care-grid-wide {
  grid-column: 1 / -1;
}

.care-form label {
  display: grid;
  gap: 8px;
  color: #1e293b;
  font-weight: 800;
}

.care-form input,
.care-form textarea {
  width: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  color: #1e293b;
  background: #fff;
  font: inherit;
}

.care-form textarea {
  resize: vertical;
}

.care-form input:focus,
.care-form textarea:focus {
  outline: 0;
  border-color: #9f238c;
  box-shadow: 0 0 0 4px rgba(159, 35, 140, 0.1);
}

.care-message {
  margin-top: 18px;
}

.care-image-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: #64748b;
}

.care-camera-btn,
.care-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.care-camera-btn {
  min-height: 46px;
  padding: 0 18px;
  background: #f8f4ff;
  color: #711c77;
  border: 1px solid #e9d5ff;
}

.care-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.care-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.care-submit {
  width: 100%;
  min-height: 56px;
  color: #fff;
  background: linear-gradient(135deg, #711c77 0%, #9f238c 52%, #b31878 100%);
  box-shadow: 0 14px 28px rgba(159, 35, 140, 0.24);
}

.care-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.care-footer {
  background: #111827;
  color: #fff;
  padding: 44px min(6vw, 80px);
}

.care-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
}

.care-footer img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.care-footer h3,
.care-footer h4 {
  margin: 12px 0;
  color: #ffd700;
}

.care-footer p,
.care-footer a {
  color: #cbd5e1;
  line-height: 1.7;
}

.care-footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.care-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  display: none;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.care-toast.show {
  display: block;
}

.care-toast.success {
  background: #047857;
}

.care-toast.error {
  background: #b91c1c;
}

@media (max-width: 900px) {
  body {
    padding-top: 62px;
  }

  .care-mobile-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    display: block;
    color: #fff;
    background: linear-gradient(135deg, #711c77 0%, #9f238c 52%, #b31878 100%);
    box-shadow: 0 4px 20px rgba(113, 28, 119, 0.28);
  }

  .care-mobile-nav {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
  }

  .care-mobile-menu-wrap {
    position: relative;
  }

  .care-mobile-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    font: inherit;
    cursor: pointer;
  }

  .care-mobile-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffd700;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.05rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .care-mobile-brand img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
  }

  .care-mobile-cart span {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e74c3c;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
  }

  .care-mobile-dropdown {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    color: #1e293b;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
  }

  .care-mobile-dropdown.active {
    display: block;
  }

  .care-mobile-dropdown a,
  .care-mobile-dropdown button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border: 0;
    border-bottom: 1px solid #f1f5f9;
    color: #1e293b;
    background: #fff;
    text-decoration: none;
    text-align: left;
    font: inherit;
    font-weight: 700;
  }

  .care-mobile-dropdown i {
    width: 18px;
    color: #711c77;
  }

  .care-page {
    padding-top: 0;
  }

  .care-hero,
  .care-footer-inner {
    grid-template-columns: 1fr;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .care-form {
    padding: 22px;
  }
}
