/* ===== CORE COLORS ===== */
:root {
  --jeera-red: #c9161e;       /* Primary brand color */
  --jeera-red-dark: #a01219;  /* Hover states */
  --jeera-bg: #fff3f4;        /* Page background */
  --jeera-border: #ffd6d9;    /* Light red border */
}

/* ===== BASE STYLES ===== */
body {
  background-color: var(--jeera-bg) !important;
  color: #333333;
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--jeera-red) !important;
  margin-top: 0;
}

a {
  color: var(--jeera-red) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--jeera-red-dark) !important;
  text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background-color: var(--jeera-red) !important;
  color: white !important;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--jeera-red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201, 22, 30, 0.2);
}

.btn-outline {
  background: transparent !important;
  border: 2px solid var(--jeera-red) !important;
  color: var(--jeera-red) !important;
}

.btn-outline:hover {
  background-color: rgba(201, 22, 30, 0.05) !important;
}

/* ===== FORMS ===== */
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--jeera-border) !important;
  border-radius: 6px;
  padding: 10px 15px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--jeera-red) !important;
  box-shadow: 0 0 0 3px rgba(201, 22, 30, 0.1) !important;
}

/* ===== CARDS ===== */
.card {
  background: white;
  border: 1px solid var(--jeera-border);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 20px;
}

.card-header {
  background-color: var(--jeera-bg);
  border-bottom: 1px solid var(--jeera-border);
  padding: 15px 20px;
  font-weight: 600;
  color: var(--jeera-red);
}

.card-body {
  padding: 20px;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.p-20 { padding: 20px !important; }

/* ===== RESPONSIVE MEDIA ===== */
@media (max-width: 768px) {
  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .card {
    border-radius: 6px;
  }
}