/*
Theme Name: Toccodar Theme
Author: Toccodar
Description: Premium steel brand theme for kitchen & bathroom organizers.
Version: 1.0
*/

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1C1C1C;
}

header {
  background: #1C1C1C;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  color: white;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin: 5px 5px 5px 0;
}

.amazon {
  background: #232F3E;
  color: white;
}

.noon {
  background: #2F3A2E;
  color: white;
}

.hero {
  height: 90vh;
  background: linear-gradient(rgba(28,28,28,0.7), rgba(28,28,28,0.7)),
  url('https://images.unsplash.com/photo-1600566752227-8f3b4b8c5c78') center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
}

.section {
  padding: 60px 8%;
}

.dark {
  background: #1C1C1C;
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  border: 1px solid #B8BCC2;
  padding: 25px;
  border-radius: 8px;
}

footer {
  background: #000;
  color: #aaa;
  padding: 20px;
  text-align: center;
}