* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f6f6f4;
  font-family: 'Almarai', 'Inter', sans-serif;
  color: #1e1e1e;
  line-height: 1.4;
}

.main-container {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #f6f6f4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 3rem;
  background-color: #f6f6f4;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  font-size: 1.9rem;
  font-weight: 500;
  color: #2c2c2c;
  font-family: 'Inter', sans-serif;
}

.logo span {
  font-weight: 300;
  color: #aa8c54;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #aa8c54;
}

/* Container */
.container-narrow {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
}

/* Page Title */
.page-title {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin: 2rem 0 3rem;
  color: #1f1f1f;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2rem 0 4rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1.3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  flex: 0.9;
  text-align: right;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: #7e7e7e;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

/* Buttons */
.btn-minimal {
  display: inline-block;
  background: transparent;
  border: 1px solid #d4c5a3;
  color: #2e2e2e;
  padding: 0.8rem 2rem;
  font-family: 'Almarai', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-minimal i {
  margin-right: 8px;
  font-size: 0.7rem;
}

.btn-minimal:hover {
  background-color: #aa8c54;
  border-color: #aa8c54;
  color: white;
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid #d1bc8a;
  padding: 0.6rem 1.6rem;
  border-radius: 40px;
  font-family: 'Almarai', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #2e2e2e;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-gold:hover {
  background: #aa8c54;
  border-color: #aa8c54;
  color: white;
}

.btn-pay {
  background: #aa8c54;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  color: white;
  font-weight: 500;
  font-family: 'Almarai', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-pay:hover {
  background: #8f6e42;
}

.btn-add {
  background: transparent;
  border: 1px solid #d4c5a3;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-family: 'Almarai', sans-serif;
  font-size: 0.7rem;
  margin-top: 0.8rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-add:hover {
  background: #aa8c54;
  border-color: #aa8c54;
  color: white;
}

/* Categories */
.categories-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.category-card {
  background: rgba(255,255,255,0.75);
  border-radius: 32px;
  padding: 2rem 2.2rem;
  text-align: center;
  width: 220px;
  box-shadow: 0 6px 12px -6px rgba(0,0,0,0.02);
  border: 0.5px solid rgba(170, 140, 84, 0.15);
}

.category-card i {
  font-size: 2.4rem;
  color: #aa8c54;
  margin-bottom: 1.2rem;
}

.category-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 1rem;
}

.category-link {
  text-decoration: none;
  color: #aa8c54;
  font-size: 0.8rem;
}

/* Products */
.products-row {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.product-card {
  background: white;
  border-radius: 28px;
  padding: 1.5rem 1rem 1.8rem;
  width: 220px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.02);
  border: 0.5px solid #efefef;
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.5rem 0 0.3rem;
  color: #2c2c2c;
}

.product-price {
  font-size: 0.85rem;
  font-weight: 300;
  color: #aa8c54;
}

/* Panels (Offers) */
.double-panels {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.panel {
  flex: 1;
  background: #ffffff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.03);
  border: 0.5px solid #ece8e2;
}

.panel-icon {
  font-size: 2rem;
  color: #aa8c54;
  margin-bottom: 1rem;
}

.panel h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.panel p {
  color: #5a5a5a;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.installment-icons {
  display: flex;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #aa8c54;
}

/* Account Page */
.account-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.debt-summary {
  background: #fefcf8;
  padding: 1.5rem;
  border-radius: 24px;
  margin-bottom: 2rem;
}

.debt-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.debt-label {
  color: #6f6f6f;
}

.debt-value {
  font-weight: 500;
  color: #aa8c54;
}

.transactions-list {
  margin: 1.5rem 0;
}

.transaction-item {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 0.5px solid #edeae4;
  color: #4f4f4f;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  color: #b1b1af;
  font-size: 0.7rem;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .double-panels {
    flex-direction: column;
  }
  
  .categories-grid {
    gap: 1rem;
  }
}