body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  padding-bottom: 80px;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 12px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #333;
  margin: 0;
}

.menu {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.menu:hover {
  color: #0077cc;
}

/* CART CONTENT */
.cart-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 15px;
}

.cart-header h2 {
  font-size: 1.8rem;
  border-bottom: 2px solid #000;
  padding-bottom: 4px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 100px 100px;
  align-items: center;
  gap: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  background: #fafafa;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cart-image img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* PRODUCT GRID BELOW */
.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.card button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #f7f7f7;
  border-top: 1px solid #ddd;
  margin-top: auto;
}

.footer-socials {
  margin-bottom: 12px;
}

.footer-socials a {
  margin: 0 10px;
  font-size: 1.3rem;
  color: #333;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #0077cc;
}

.footer-info p {
  margin: 4px 0;
  font-size: 0.9rem;
}

/* BOTTOM NAV */
.bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff;
  border-top: 1px solid #ccc;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 12px 0;
  z-index: 100;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 0.9rem;
}

.bottom-nav a i {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.bottom-nav a:hover i {
  color: #0077cc;
}
