
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Anton&family=Baskervville:ital,wght@0,400..700;1,400..700&family=LXGW+Marker+Gothic&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Truculenta:opsz,wght@12..72,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --bg: #f6f6f6;
  --card: #ffffff;
  --black: #111111;
  --gray: #9a9a9a;
  --accent: #f0c33c; /* premium yellow */
}

/* ---------------- RESET ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
body {
  background: #f6f6f6;
  color: #111;
}

/* LIVE BAR */
.live-bar {
  background: #3f2bbf;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: nutito;
  font-weight: 4500;
}
.live-bar span {
 font-family: ubuntu;
}
.live-dot {
  color: #4cff4c;
  font-weight: bold;
}

.live-bar button {
  margin-left: auto;
  background: #fff;
  color: #3f2bbf;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}

/* ---------------- NAV ---------------- */
header {
  background: rgb(255, 255, 255);
  padding: 0.1rem 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a {
  margin-left: 1.5rem;
  font-weight: 500;
}
.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  font-family:   Ubuntu;
}
.logo img{
  width: 100px; 
  height: auto;}

a svg{
  color: rgb(0, 0, 0);
}
a{
  color: white;
  text-decoration: none;
}
#hero-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  font-family: ubuntu;
  font-size: 100px;
}
#cart-count{
  color: rgba(0,0,0,.9);
}
#hero-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- HERO ---------------- */
.hero {
  height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-image .8s ease;
  border-radius: 20px;
  background-color: #ffffff;
}
.spa{
  padding: 30px 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}
.hero-content {
  color: white;
  text-align: center;
  z-index: 2;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content button {
  padding: .7rem 1.6rem;
  border: none;
  background: white;
  font-weight: 600;
  cursor: pointer;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 3;
}
.left { left: 20px; font-weight: 30px; }
.right { right: 20px; }
.right svg{
  font-weight: 200;
  color: #111;
}

/* ---------------- CART DRAWER ---------------- */
/* Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 999;
}

.cart-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: .35s ease;
  z-index: 1000;
}

.cart-drawer.show {
  right: 0;
}

/* Header */
.cart-header {
  padding: 16px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-item h4 {
  font-size: 14px;
  margin: 0;
}

.cart-item .price {
  font-size: 13px;
  color: #666;
}

.remove {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 12px;
}


.cart-footer {
  padding: 16px;
  border-top: 1px solid #eee;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: ubuntu;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

/* ---------------- FOOTER ---------------- */
footer {
  text-align: center;
  padding: 2rem;
  background: white;
  margin-top: 4rem;
}

/* ---------------- profile-menu  ---------------- */


.nav-Account {
  position: relative;
}

.Account-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #111111;
}



.Account-menu a,
.Account-menu button {
  display: block;
  width: 100%;
  padding: 8px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.Account-menu {
  opacity: 0;
  transform: translateY(8px);
  transition: .2s ease;
  pointer-events: none;
}

.Account-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}



.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.user-menu {
  display: none;
  position: absolute;
  top: 60px;
  right: 20px;
  background: white;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
}

.logo img {
  height: 30px;
}

.nav-Account {
  position: relative;
}

.Account-menu {
  position: absolute;
  top: 140%;
  right: 0;
  background: white;
  min-width: 310px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  justify-content: center;
  font-family: nutioto;
}

.Account-menu.show {
  display: flex;
}

.Account-menu a,
.Account-menu button {
  border: none;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  justify-content: center;
  color: #111111;
  font-weight: 500;
  margin-top: 10px;
}
 .line{
  border-bottom: 1px solid #000000;
 }


.pagination {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  
  padding-bottom: 2rem;
}

.pagination span {
  padding: 0.4rem 0.7rem;
  background: #e0e0e0;
}

.pagination .active {
  background: black;
  color: white;
}

.category-hero {
  padding: 20px 70px;

}

.category-slider {
  background: #f0c33c;
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT TEXT */
.slide-text {
  max-width: 35%;
}

.slide-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #3b2f00;
}

.slide-text p {
  margin-bottom: 1.5rem;
  color: #3b2f00;
}

.slide-text button {
  padding: 0.7rem 1.6rem;
  background: #3b2f00;
  color: #f0c33c;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* RIGHT ITEMS */
.slide-items {
  display: flex;
  gap: 3rem;
}

.item {
  text-align: center;
}

.item img {
  width: 140px;
  margin-bottom: 0.5rem;
}

.item span {
  font-weight: 600;
  color: #3b2f00;
}



.site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 40px 20px 24px;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
}

/* GRID */
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-col a:hover {
  text-decoration: underline;
  color: #111;
}

.footer-col .mt {
  margin-top: 20px;
}

/* BOTTOM */
.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  font-size: 12px;
  color: #666;
}

.footer-bottom a {
  color: #666;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .site-footer {
    padding: 32px 16px 20px;
  }
}

 
/* Overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Active */
.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
  margin-top: -33%;
}

/* Search Panel */
.search-panel {
  background: #fff;
  width: 90%;
  max-width: 720px;
  border-radius: 14px;
  padding: 8px;
  transform: translateY(30px);
  transition: .3s;
}

/* Mobile slide-up */
@media (max-width: 600px) {
  .search-overlay {
    align-items: flex-end;
  }

  .search-panel {
    width: 100%;
    max-width: none;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }

  .search-overlay.active .search-panel {
    transform: translateY(0);
  }
}

/* Input */
#searchInput {
  width: 100%;
  padding: 9px;
  font-size: 16px;
  border: none;
  outline: none;
}

.search-results {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  max-height: 260px;
  overflow-y: auto;
}

.search-results li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
}

.search-results li.active,
.search-results li:hover {
  background: #f2f2f2;
}

.search-results img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

/* Premium glow highlight */
.highlight {
  color: #11308e;
  font-weight: 600;
  animation: glow 1.2s infinite alternate;
}


.no-results {
  text-align: center;
  opacity: .6;
  padding: 15px;
}





  nav a span {
    margin-left: -8px;
  }
