/* ===================== RESET & BASE ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: #f1f3f6;
  color: #0f172a;
  line-height: 1.5;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== TOP BAR ===================== */
.topBar {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 13px;
  padding: 8px 0;
}

.topBar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topBarRight {
  display: flex;
  gap: 20px;
}

.topBarRight a:hover {
  color: #fff;
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.navContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 30px;
}

.logo a {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
}

.logo span {
  color: #ff6a00;
}

/* Search Box */
.searchBox {
  flex: 1;
  max-width: 650px;
  display: flex;
  border: 2px solid #ff6a00;
  border-radius: 8px;
  overflow: hidden;
}

.searchBox input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 15px;
}

.searchBox button {
  background: #ff6a00;
  color: white;
  border: none;
  padding: 0 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.searchBox button:hover {
  background: #e55a00;
}

/* Nav Icons */
.navIcons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navItem {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #64748b;
}

.navItem strong {
  font-size: 14px;
  color: #0f172a;
  font-weight: 600;
}

.navItem:hover strong {
  color: #ff6a00;
}

.cartBtn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
}

.cartBtn:hover {
  color: #ff6a00;
}

/* ===================== CATEGORY BAR ===================== */
.categoryBar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
}

.categoryBar .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.categoryBar a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  border-radius: 20px;
  white-space: nowrap;
  transition: 0.2s;
}

.categoryBar a:hover,
.categoryBar a.active {
  background: #ff6a00;
  color: white;
}

/* ===================== HERO SECTION ===================== */
.heroSection {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.heroContent h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.heroContent p {
  font-size: 20px;
  color: #94a3b8;
  margin-bottom: 30px;
}

.heroBtn {
  display: inline-block;
  background: #ff6a00;
  color: white;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.2s;
}

.heroBtn:hover {
  background: #e55a00;
  transform: translateY(-2px);
}

/* ===================== DEAL SECTION ===================== */
.dealSection {
  padding: 40px 0 20px;
}

.dealGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dealCard {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: 0.25s;
}

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

.dealCard h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.dealCard p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 14px;
}

.dealCard a {
  color: #ff6a00;
  font-weight: 600;
  font-size: 14px;
}

/* ===================== FEATURED PRODUCTS ===================== */
.featuredProducts {
  padding: 40px 0 60px;
}

.sectionHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.sectionHeader h2 {
  font-size: 26px;
  font-weight: 700;
}

.viewAll {
  color: #ff6a00;
  font-weight: 600;
  font-size: 15px;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.productCard {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: 0.25s;
  cursor: pointer;
}

.productCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.productCard img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.productCard h3 {
  font-size: 16px;
  font-weight: 600;
  padding: 14px 16px 6px;
  color: #0f172a;
}

.productCard p {
  font-size: 18px;
  font-weight: 700;
  color: #ff6a00;
  padding: 0 16px 16px;
}

/* ===================== TRUST SECTION ===================== */
.trustSection {
  background: white;
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.trustGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trustItem {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trustIcon {
  font-size: 28px;
}

.trustItem h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.trustItem p {
  font-size: 13px;
  color: #64748b;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 0 0;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footerCol h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 16px;
}

.footerCol h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 16px;
}

.footerCol p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footerCol a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  color: #94a3b8;
  transition: 0.2s;
}

.footerCol a:hover {
  color: #ff6a00;
}

.ceo {
  margin-top: 12px;
  font-size: 14px;
}

.footerBottom {
  border-top: 1px solid #1e293b;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .dealGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trustGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footerGrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navContainer {
    flex-wrap: wrap;
    height: auto;
    padding: 15px 0;
    gap: 15px;
  }
  
  .searchBox {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  
  .heroContent h1 {
    font-size: 32px;
  }
  
  .dealGrid {
    grid-template-columns: 1fr 1fr;
  }
  
  .productGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .productCard img {
    height: 180px;
  }
  
  .trustGrid {
    grid-template-columns: 1fr;
  }
  
  .footerGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footerBottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .topBar .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}