@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,500;0,800;1,500;1,600;1,800&display=swap');
*{
    margin: 0%;
    padding: 0%;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    list-style: none;
    text-decoration: none;
}

:root {
  --bg:       #0d0d0d;
  --surface:  #141414;
  --card:     #1a1a1a;
  --border:   rgba(255,255,255,0.07);
  --accent:   #c8f04a;
  --accent2:  #4af0a0;
  --text:     #f0ede6;
  --muted:    #888;
  --serif:    'DM Serif Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --radius:   12px;
  --radius-lg:20px;
  --header-h: 70px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(200,240,74,0.06), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(74,240,160,0.04), transparent);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: sticky;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 0.6rem;
}

.header .name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .name .logo img {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.header .name h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 1px;
  animation: none;
}

.menu { display: none; cursor: pointer; color: var(--text); font-size: 26px; }

.topnav { display: flex; align-items: center; gap: 4px; }

.topnav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition);
}

.topnav a i { font-size: 16px; color: var(--accent); }
.topnav a:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.topnav a.active { color: var(--accent); background: rgba(200,240,74,0.08); }

.header.scrolled {
  height: 70px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

@media screen and (max-width: 1024px) {
  .header .topnav{
    width: 65%;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 70px;
    padding: 10px 1rem;
  }
  
  .header .name {
      width: 100%;
      gap: 8px;
  }
  
  .header .name h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }
  
  .header .name .logo img {
    width: 45px;
    height: 45px;
  }
  
  .topnav {
      display: none;
  }
  
  .search {
    width: 95%;
    padding: 12px 15px;
    border-radius: 12px;
  }
  
  .search form {
    width: 100%;
    gap: 8px;
  }
  
  .search form button {
    min-width: 80px;
    padding: 10px 16px;
    font-size: 14px;
  }
  
  input[type=text] {
    min-width: 0;
    padding: 10px 15px 10px 45px;
    font-size: 14px;
  }
  
  .search .tools {
    display: none;
  }
  
  .promo-banner.free-delivery {
    width: 95%;
    padding: 20px;
    border-radius: 12px;
  }
  
  .free-delivery .promo-content h3 {
    font-size: 20px;
  }
  
  .free-delivery .promo-content p {
    font-size: 14px;
  }
}

/* footer */
.bottom-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: var(--card);
    display: none;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(14, 55, 54, 0.3), 0 2px 5px rgba(14, 55, 54, 0.2), 0 -2px 2px rgba(14, 55, 54, 0.1);
    }
    
    .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text);
    width: 25%;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    }
    
    .bottom-nav a i {
    font-size: 24px;
    margin-bottom: 4px;
    color: var(--accent);
    }
    
    .bottom-nav a:hover {
    color: var(--text);
    border-bottom: 2px solid var(--accent);
    }
    
    .bottom-nav .active {
    color: var(--accent);
    border-bottom: 4px solid var(--accent);
    }
    
    .bottom-nav .active i {
    color: var(--text);
    }
    
    @media (max-width: 768px) {
    .bottom-nav {
      display: flex;
    }
    }
    