/* /data/chats/p4avt/workspace/kfc_v50_app/css/styles.css */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Main App Styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f0f0;
  color: #1a1a1a;
  line-height: 1.5;
}

/* iPhone 15 Pro dimensions */
.iphone-container {
  width: 375px;
  height: 812px;
  position: relative;
  margin: 20px auto;
  overflow: hidden;
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
  background-color: #000;
  color: white;
}

.time {
  font-weight: 600;
}

.status-icons {
  display: flex;
  gap: 5px;
}

/* Navigation Bar */
.nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 0;
  background-color: white;
  border-top: 1px solid #ebebeb;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #999;
}

.nav-item.active {
  color: #e4002b;
}

.nav-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.nav-text {
  font-size: 10px;
}

/* Content Area */
.content {
  height: calc(100% - 130px);
  overflow-y: auto;
  padding: 15px;
}

/* KFC Brand Elements */
.kfc-red {
  color: #e4002b;
}

.kfc-bg-red {
  background-color: #e4002b;
}

.kfc-gold {
  color: #ffc836;
}

.kfc-bg-gold {
  background-color: #ffc836;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #e4002b;
  color: white;
}

.btn-secondary {
  background-color: white;
  color: #e4002b;
  border: 2px solid #e4002b;
}

.btn-gold {
  background-color: #ffc836;
  color: #1a1a1a;
}

/* Card Styles */
.card {
  background: white;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.offer-card {
  background: linear-gradient(135deg, #e4002b, #b1000e);
  color: white;
  border-radius: 16px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form Elements */
input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
}

/* Avatar */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-lg {
  width: 80px;
  height: 80px;
}

/* Utilities */
.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 8px;
}

.gap-4 {
  gap: 16px;
}

.w-full {
  width: 100%;
}

.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 18px;
}

.text-sm {
  font-size: 14px;
}

.text-xs {
  font-size: 12px;
}

.rounded-full {
  border-radius: 9999px;
}

/* Animations */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}