* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial,Helvetica, sans-serif;
}

body {
  background: #f8f8f8;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #383737;
  color: #fff;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-links a{
  text-decoration: none;
  color: white;
}
.navbar-menu-icon {
    display: none;
}
.cart-icon-btn{
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-icon-btn:hover{
  background: rgba(255, 255, 255, 0.12);
}
.cart-count-badge{
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ff3b30;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(20, 21, 26, 0.92);
}
#cartOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 10;
}

#cartOverlay.is-open {
  display: block;
}

/* Cart Drawer */
.cart-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 70;
}
.cart-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: #ffffff;
  transform: translateX(105%);
  transition: transform 220ms ease;
  z-index: 80;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(18, 19, 23, 0.08);
}
.cart-drawer.is-open{
  transform: translateX(0);
}
.cart-header{
  padding: 18px 18px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(18, 19, 23, 0.06);
}
.cart-header h3{
  font-size: 18px;
  line-height: 1.2;
}
.cart-subtitle{
  margin-top: 6px;
  font-size: 13px;
  color: rgba(18, 19, 23, 0.65);
}
.icon-btn{
  border: 1px solid rgba(18, 19, 23, 0.12);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover{
  background: rgba(18, 19, 23, 0.04);
}
.icon-btn.danger{
  border-color: rgba(255, 59, 48, 0.3);
  color: #ff3b30;
}
.cart-items{
  padding: 14px 18px;
  overflow: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(18, 19, 23, 0.06);
  background: rgba(246, 247, 251, 0.7);
}
.cart-item-img{
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff;
}
.cart-item-title{
  font-weight: 700;
  color: #0b0c10;
  font-size: 14px;
  line-height: 1.25;
}
.cart-item-meta{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(18, 19, 23, 0.6);
}
.cart-item-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.cart-item-bottom{
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.qty-control{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(18, 19, 23, 0.08);
}
.qty-control button{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(18, 19, 23, 0.12);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.qty-control button:hover{
  background: rgba(18, 19, 23, 0.04);
}
.qty-control span{
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  color: rgba(18, 19, 23, 0.9);
}
.cart-item-price{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
}
.muted{
  font-size: 12px;
  color: rgba(18, 19, 23, 0.55);
}
.strong{
  font-weight: 800;
  color: #0b0c10;
}
.cart-footer{
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(18, 19, 23, 0.06);
  background: #fff;
}
.cart-totals{
  border: 1px solid rgba(18, 19, 23, 0.06);
  border-radius: 16px;
  background: rgba(246, 247, 251, 0.7);
  padding: 12px;
}
.totals-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 2px;
  color: rgba(18, 19, 23, 0.8);
}
.totals-strong{
  font-weight: 800;
  color: #0b0c10;
}
.cart-note{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(18, 19, 23, 0.55);
}
.checkout-btn{
  margin-top: 12px;
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: #111318;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.checkout-btn:hover{
  filter: brightness(1.08);
}
.cart-empty{
  padding: 18px 12px;
  text-align: center;
}
.cart-empty-title{
  font-weight: 800;
  color: #0b0c10;
}
.cart-empty-subtitle{
  margin-top: 6px;
  color: rgba(18, 19, 23, 0.65);
  font-size: 13px;
}
.secondary-btn{
  margin-top: 14px;
  border: 1px solid rgba(18, 19, 23, 0.12);
  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
}
/*side_navbar*/
.side_navbar{
    background-color:rgb(1, 1, 24);
    position: fixed;
    width: 40%;
    height: 100%;
    padding: 20px;
    top: 0%;
    left: -50%;
    border-radius: 10px;
    color: white;
    transition: 0.4s;
}
.side_navbar-link{
    margin-bottom: 20px;
}
.side_navbar-link a{
    text-decoration: none;
    color: white;
}
.side_navbar-link a:hover{
    text-decoration: underline;
}

.logo {
  font-weight: bold;
  font-size: 22px;
}

/* Hero */
.hero {
  height: 60vh;
  background: linear-gradient(120deg, #000, #222);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero img{
  width: 100%;
  height: 80%;
  padding-top: 20px;
  display: flex;
}

/* Products */
.products {
  padding: 50px;
  text-align: center;
}

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

.product-card {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  
}

.product-card img {
  width: 100%;
  border-radius: 5px;
  height: 300px;
}

/* Footer */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  text-align: left;
}

.footer-logo h2 {
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 8px;
  
}
.contact-info {
  margin-top: 10px;
  text-wrap: wrap;
}
.fa-solid, .fa-brands {
  margin-right: 8px;
} 
.fa-brands.fa-instagram {
  color: #E1306C;
}
.fa-brands.fa-whatsapp {
  color: #25D366;
}
.fa-brands.fa-location-dot {
  color: #FF0000;
}
.fa-brands.fa-phone {
  color: #25D366;
}
.fa-brands.fa-envelope {
  color: #E1306C;
}

/* media */
@media screen and (max-width: 600px) {
    .navbar-menu-icon {
        display: block;
    }
    .navbar-links{
        display: none;
    }
    .footer-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .footer-logo h2 {
    margin: 0;
  }

  .footer-logo img {
    width: 120px;
    height: auto;
  }

  .contact-info {
    width: 100%;
  }
}