/* Reset & Core Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: #f7f7f7;
  color: #111111;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

.logo span {
  color: #e63946;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: #e63946;
}

/* Container Wrapper */
.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Section Headings */
.section-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Profile / Creator Section (Index) */
.profile-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 40px;
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f0f0f0;
}

.profile-info h1 {
  font-size: 26px;
  margin-bottom: 8px;
}

.profile-info p {
  color: #666;
  margin-bottom: 6px;
  font-size: 15px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 12px;
}

.brand {
  font-size: 12px;
  color: #888;
  font-weight: 700;
  text-transform: uppercase;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  margin: 4px 0 12px;
  height: 40px;
  overflow: hidden;
}

.price-label {
  font-size: 11px;
  color: #888;
}

.price {
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background-color: #333333;
}

/* Footer */
footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-top: 60px;
}