header{
    position: fixed;
  z-index: 1000;
  width: 100%;
}
nav.navs {
  background: rgb(0,0,0,0.8); /* elegant black base */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 2rem;
  font-family: "Zilla Slab", serif;
  position: relative;
}

 /*---------- BRAND AREA ---------- */
.nav-tag {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
    border: 2px solid #f7b733;
    border-radius: 50%;
  height: 60px;
  width: auto;
  margin-right: -10px;
  animation: 2s rotate linear infinite !important;
  transition: 3s;
  box-shadow: 2px 2px 2px 2px #f7b733;
}
@keyframes rotate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.nav-h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #f7b733;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: -5px;
}

.nav-h1:hover {
  color: #ffd369;
}

 /*---------- MAIN MENU ---------- */
.navs ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navs ul li {
  position: relative;
}

.navs ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.navs ul li a:hover {
  color: #f7b733;
}

 /*---------- ICON STYLING ---------- */
ion-icon {
  font-size: 0.95rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.homea:hover ion-icon {
  transform: rotate(180deg);
}

.homea .homeul{
     list-style: none;
    left: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.homeul {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  left: 0;
  top: 20px;
  z-index: 1000;
  background: transparent;
  padding: 20px;
  width: 150px;
  opacity: 0;
  transform: translateX(-20px);
  transition: 1s;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 20px 0 #f7b733;
}

.homeul li { 
    opacity: 0;
    transform: translateX(-15px);
    transition: 0.3s ease;
    margin-top:10px;
}

.homeul li a {
  color: #ddd;
  font-size: 0.9rem;
}

.homeul li a:hover {
  color: #f7b733;
  background: transparent;
  transition: 0.5s;
}
.homeul li:nth-child(1){transition-delay:0.6s !important;}
.homeul li:nth-child(2){transition-delay:0.14s !important;}
.homeul li:nth-child(3){transition-delay:0.22s !important;}
.homeul li:nth-child(4){transition-delay:0.30s !important;}
 /*---------- SHOW DROPDOWN ON HOVER ---------- */
.homea:hover .homeul {
  opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.homea:hover li{
    opacity: 1;
    transition: 2s;
    transform: translateX(0);
}
.homea:hover{
  transform: translateY(5px);
  color: #ffd369 ;
    
}

 /*---------- CART ICON ---------- */
.header-cart {
  position: relative;
}

.cart-icon {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -10px;
  background: #f7b733;
  color: #000;
  font-size: 0.7rem;
  padding: 2px 5px;
  border-radius: 50%;
  font-weight: bold;
}





 /*====== Header Cart Styling ====== */
.header-cart {
  position: relative;
  display: inline-block;
}

.cart-icon {
  position: relative;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ffb400;
  color: #000;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
}

 /*====== Mini Cart Dropdown ====== */
.mini-cart-wrapper {
  display: none;
  position: absolute;
  right: 0;
  top: 130%;
  width: 310px;
  background: #111;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 999;
  border-radius: 8px;
  overflow: hidden;
}

.header-cart:hover .mini-cart-wrapper {
  display: block;
}

 /*Mini Cart Items */
.woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #222;
}

.woocommerce-mini-cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 12px;
}

.woocommerce-mini-cart-item a {
  color: #ffb400;
  font-weight: bold;
  text-decoration: none;
}

.woocommerce-mini-cart-item a:hover {
  color: #fff;
}

 /*Subtotal and Buttons */
.woocommerce-mini-cart__total {
  text-align: right;
  padding: 10px 15px;
  font-weight: bold;
  border-top: 1px solid #333;
}

.woocommerce-mini-cart__buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: #000;
}

.woocommerce-mini-cart__buttons a {
  background: #ffb400;
  color: #000;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce-mini-cart__buttons a:hover {
  background: #fff;
  color: #000;
}



.cart-header {
  text-align: center;
  background-color: #f9f9f9;
  padding: 60px 20px 40px;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.cart-header h1 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.cart-header p {
  font-size: 1.1rem;
  color: #666;
}

.cart-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Give space between top of page and content */
.woocommerce-cart {
  margin-top: 60px;
}

.checkout-hero {
  text-align: center;
  padding: 100px 20px 50px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
              url('/wp-content/themes/LOUNGE AND RESTO/images/head background.jpg') center/cover no-repeat;
  color: #fff;
}
@media(max-width: 375px){
    


/* ====== Header Cart Styling ====== */
.header-cart {
  position: relative;
  display: inline-block;
}

.cart-icon {
  position: relative;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ffb400;
  color: #000;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
}

/* ====== Mini Cart Dropdown ====== */
.mini-cart-wrapper {
  display: none;
  position: absolute;
  right: 0;
  top: 130%;
  width: 310px;
  background: #111;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  z-index: 999;
  border-radius: 8px;
  overflow: hidden;
}

.header-cart:hover .mini-cart-wrapper {
  display: block;
}

/* Mini Cart Items */
.woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #222;
}

.woocommerce-mini-cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 12px;
}

.woocommerce-mini-cart-item a {
  color: #ffb400;
  font-weight: bold;
  text-decoration: none;
}

.woocommerce-mini-cart-item a:hover {
  color: #fff;
}

/* Subtotal and Buttons */
.woocommerce-mini-cart__total {
  text-align: right;
  padding: 10px 15px;
  font-weight: bold;
  border-top: 1px solid #333;
}

.woocommerce-mini-cart__buttons {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  background: #000;
}

.woocommerce-mini-cart__buttons a {
  background: #ffb400;
  color: #000;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce-mini-cart__buttons a:hover {
  background: #fff;
  color: #000;
}
}
	
@media (max-width: 768px) {
    nav.navs{
        position: fixed;
        top:0;
        width: 100%;
    }
    .homea li:nth-child(1){
        display: none;
    }
    .homea{
        display: none;
    }
    .header-cart{
        display: none;
    }
    
}
