:root {
  --c-glass: rgba(255, 255, 255, 0.2);
  --c-light: rgba(255, 255, 255, 0.7);
  --c-dark: rgba(0, 0, 0, 0.5);
  --c-content: #333;
  --c-action: #000;
  --saturation: 180%;
  --glass-reflex-light: 0.3;
  --glass-reflex-dark: 0.2;
  --fz: 16px;
  /* text-transform: uppercase; */
  font-weight: 300;
  letter-spacing: .056rem;
  line-height: 120%; 
  margin-bottom: 0 !important;
}

/* Base typography for the entire document */
html, body {
  font-weight: 300;
  /* text-transform: uppercase; */
  line-height: 1.4;                     /* or whatever your main text color is */
}

.logo-nav {
    height: 77px;
    top: 7px;
    width: auto;
    position: relative;
}

.header-hidden {
    transform: translateY(-100%);
}

.top-navbar.hidden {
  opacity: 0;
  pointer-events: none; /* Can't click when hidden */
}

.navbar-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar-links a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.social-links {
    top: 80px;
    display: flex;
    gap: 28px;
    align-items: center;
    position: relative;
}

.social-links a.social-icon {
  color: #000; /* Force black */
  opacity: 0.8;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
}

.social-links a.social-icon:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.1);
}

.social-links svg {
  width: 28px;
  height: 28px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.burger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }



.mobile-links {
  display: flex;
  flex-direction: column;
}

.mobile-links a {
  color: #000;
  text-decoration: none;
  font-size: 22px;
  font-weight: 00;
  padding: 10px 40px;
  display: block;
  opacity: 0.9;
}

.mobile-links a:hover {
  opacity: 1;
}





body.no-scroll {
  overflow: hidden;
}

/* h1, h2, h3, h4, h5, h6,
p, li, a, span, strong, em,
button, input, select, textarea,
label {

  font-weight: 300;
} */

.no-uppercase,
.brand-name,
.logo,
.price,
[data-no-transform] {
  text-transform: none;
}

.sidebar-content {
  display: flex;
  justify-content: space-between; 
  align-items: center;        
  width: 100%;
  padding: 10px;              
}

.mobile-sidebar-image img {
  max-width: 80px;  
  height: auto;
  display: block;
}

.mobile-only-logo {
  display: none; 
}

.desktop-only {
  display: flex; 
  align-items: center;
}



.mobile-sidebar.open {
  left: 0;
  box-shadow: 100px 0 150px 50px rgba(0, 0, 0, 0.4);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0); 
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
}

.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar .footer-link {
    margin-bottom: 15px;
    padding-left: 40px; 
    display: block;
    width: fit-content;
}

.sidebar-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 30px auto 20px auto;
}

.sidebar-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 40px;
    margin-top: auto; 
}

.sidebar-logo {
    height: 20px;
    opacity: 0.7;
    filter: grayscale(1);
}

.mobile-sidebar {
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.mobile-sidebar.open {
    left: 0;
    box-shadow: 100px 0 150px 50px rgba(0, 0, 0, 0.4);
}

.navbar-left a:has(.logo-nav):hover,
.social-links a:has(.mobile-only-logo):hover {
    transform: none !important;
    opacity: 1 !important;
}

.logo-nav:hover, 
.mobile-only-logo:hover {
    transform: none !important;
    opacity: 1 !important;
}

.navbar-left a:has(.logo-nav)::after {
    display: none !important;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 450px;
    height: 100%;
    background: #fff;
    z-index: 3000;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h2 {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.cart-item-mini {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #f9f9f9;
}

.cart-item-mini img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    background: #f4f4f4;
}

.mini-details h4 {
    font-size: 13px;
    margin-bottom: 5px;
    /* text-transform: uppercase; */
}

.mini-details p {
    font-size: 11px;
    color: #666;
    margin: 2px 0;
}

.top-navbar {
    position: -webkit-sticky; 
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    left: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px) saturate(180%);
    -webkit-backdrop-filter: blur(6px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 1px 1px 1px rgba(255,255,255,0.3),
                inset -1px -1px 2px rgba(255,255,255,0.2),
                0 10px 25px rgba(0,0,0,0.22);
    opacity: 1;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.top-navbar nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.top-navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.top-navbar a {
    text-decoration: none;
    color: #000;
    /* text-transform: uppercase; */
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.cart-toggle-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border: none;
    cursor: pointer;
    background: none;
    z-index: 1001; 
}

.cart-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
    z-index: -1; 
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cart-toggle-btn:hover::before {
    transform: scale(1.1);
    background-color: #fcfcfc;
}

.cart-toggle-btn svg, 
.cart-toggle-btn i {
    position: relative;
    color: #000;
    font-size: 1.2rem;
}


.cart-toggle-btn {
    position: relative; /* Essential for badge positioning */
    background: none;
    border: none;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    font-family: sans-serif;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
}

/* Show badge only when there are items */
.cart-badge.visible {
    opacity: 1;
}

span#cart-count {
    color: #ff0000;
    font-size: 20px;
    font-family: copperplate;
}

 @media (max-width: 768px) {
  .glass-card {
    inline-size: 95%;
  }

  .top-navbar{
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 5px;
    height: 50px;
  }

  .lg-btn{
    width: 60vmin;
    height: 15vmin;
  }

  .navbar-content {
    padding: 0 20px;
  }

 button.cart-toggle-btn {
    margin-left: 0px;
    top: -45px;
}

  .burger-btn {
    display: flex;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only-logo {
      display: block;
      height: 65px;
      width: auto;
      /* margin-right: -60px; */
      margin-top: 8px;
      margin-left: -60px;
  }
  
  .social-links {
    flex: 1;
    display: grid;
    justify-content: flex-end;
    align-items: center;
    top: 34px;
  }

  .cart-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff00;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0);
    z-index: -1;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
}

