/* ============================================================
   CityWorkshop — Swiggy Theme 2026
   Build: CWS_V_5_Fixed_7_11
   Modern Swiggy-inspired customer UI (2026 edition)
   Pure additive / override layer. Safe with existing premium base.
   ============================================================ */

:root {
  --swiggy-orange: #FC8019;
  --swiggy-orange-dark: #E06C00;
  --swiggy-orange-light: #FFF4EB;
  --swiggy-green: #60B246;
  --swiggy-dark: #1C1C1C;
  --swiggy-gray: #686B78;
  --swiggy-light-gray: #F0F0F5;
  --swiggy-white: #FFFFFF;
  --swiggy-card-radius: 16px;
  --swiggy-btn-radius: 12px;
  --cust-brand: #FC8019;
  --cust-green: #60B246;
}

/* Login / Guest card */
.v910-login-card,
.antigravity-card,
.swiggy-hero-card {
  background: var(--swiggy-white) !important;
  border-radius: var(--swiggy-card-radius) !important;
  box-shadow: 0 8px 24px rgba(28, 28, 28, 0.08) !important;
  border: 1px solid rgba(252, 128, 25, 0.12) !important;
}

/* Primary buttons */
.btn-primary,
.swiggy-cta,
button[type="submit"].btn,
.customer-category-tab.active {
  background: linear-gradient(135deg, var(--swiggy-orange), var(--swiggy-orange-dark)) !important;
  border-color: var(--swiggy-orange) !important;
  color: #fff !important;
  border-radius: var(--swiggy-btn-radius) !important;
  font-weight: 600 !important;
}

.btn-primary:hover,
.swiggy-cta:hover {
  background: linear-gradient(135deg, var(--swiggy-orange-dark), #C45A00) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(252, 128, 25, 0.35) !important;
}

/* Service tiles */
.swiggy-service-tile,
.customer-service-category-tabs .customer-category-tab {
  border-radius: 20px !important;
  border: 2px solid var(--swiggy-light-gray) !important;
  transition: all 0.25s ease !important;
}

.swiggy-service-tile:hover,
.customer-category-tab:hover {
  border-color: var(--swiggy-orange) !important;
  background: var(--swiggy-orange-light) !important;
}

/* Location chip */
.swiggy-location-chip {
  background: var(--swiggy-orange-light) !important;
  color: var(--swiggy-orange-dark) !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}

/* Cards & sections */
.card,
.reg-pro-section,
.status-card,
.info-card {
  border-radius: var(--swiggy-card-radius) !important;
}

/* Inputs */
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
  border-radius: 12px !important;
  border: 1.5px solid #E0E0E0 !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--swiggy-orange) !important;
  box-shadow: 0 0 0 3px rgba(252, 128, 25, 0.15) !important;
}

/* Success / green accents */
.success-card,
.field-success,
.swiggy-green-badge {
  background: #E8F5E9 !important;
  color: var(--swiggy-green) !important;
  border-color: var(--swiggy-green) !important;
}

/* Footer / subtle text */
.footer-note,
.muted,
.swiggy-muted {
  color: var(--swiggy-gray) !important;
}

/* Mobile polish */
@media (max-width: 768px) {
  .v910-login-card,
  .swiggy-hero-card {
    border-radius: 12px !important;
  }
  .btn-primary,
  .swiggy-cta {
    border-radius: 10px !important;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
