/* Header styles for Sphynx Tequila Website - Mobile Responsive Redesign */

/* Import liquid glass effects */

:root {
  --gold: #c6a57c;
  --black: #000000;
  --navy-accent: #1a2b42;
  --header-bg: rgba(255, 255, 255, 0.98);
  --header-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  --transition-bezier: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL HEADER STYLES ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 5vw;
  z-index: 1000;
  transition: all 0.4s var(--transition-bezier);
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--header-shadow);
}

#site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, 
    #fff 0%,
    rgba(255, 255, 255, 0.8) 20%, 
    rgba(0, 0, 0, 0.2) 60%, 
    rgba(0, 0, 0, 0.5) 80%, 
    #000 100%
  );
  opacity: 0.5;
  z-index: 1;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Scrolled header - compact style */
#site-header.scrolled {
  padding: 0.6rem 5vw;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ===== LOGO STYLES ===== */
.logo-container {
  flex: 0 0 auto;
  min-width: 160px;
  padding: 0.5rem 0;
}

.logo-container a {
  display: inline-block;
  position: relative;
}

.logo {
  width: 180px;
  height: auto;
  filter: brightness(0) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  transition: all 0.4s var(--transition-bezier);
  display: block;
}

.logo:hover {
  transform: scale(1.05);
}

#site-header.scrolled .logo {
  width: 150px;
}

/* ===== NAVIGATION STYLES ===== */
#main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.2rem;
}

.nav-links li {
  position: relative;
}

.nav-links li::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.25rem;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.35;
}

.nav-links li:last-child::after {
  display: none;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  position: relative;
  padding: 0.6rem 0;
  transition: all 0.3s var(--transition-bezier);
  white-space: nowrap;
}

.nav-links a::before,
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--transition-bezier);
}

.nav-links a::before {
  top: 0;
  transform-origin: left;
}

.nav-links a::after {
  bottom: 0;
  transform-origin: right;
}

.nav-links a:hover {
  color: var(--navy-accent);
  letter-spacing: 2px;
  font-weight: 600;
}

.nav-links a:hover::before {
  transform: scaleX(1);
  transform-origin: right;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== BUTTON STYLES ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.square-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--transition-bezier);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.buy-now-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b78e 50%, var(--gold) 100%);
  color: var(--black);
  border: 1px solid rgba(255,255,255,0.3);
}

.find-us-btn {
  background: linear-gradient(135deg, var(--navy-accent) 0%, #324b75 50%, var(--navy-accent) 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.cart-btn {
  background: #ffffff;
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.1);
  position: relative;
}

/* Liquid glass effects - only applied when liquid glass classes are present */
.square-btn.liquid-glass-gold,
.square-btn.liquid-glass-navy,
.square-btn.liquid-glass-white {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}

.square-btn.liquid-glass-gold::before,
.square-btn.liquid-glass-navy::before,
.square-btn.liquid-glass-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.square-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.square-btn.liquid-glass-gold:hover::before,
.square-btn.liquid-glass-navy:hover::before,
.square-btn.liquid-glass-white:hover::before {
  left: 100%;
}

/* Enhanced liquid glass variants - preserve original colors */
.buy-now-btn.liquid-glass-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #d4b78e 50%, var(--gold) 100%);
  border: 1px solid rgba(198, 165, 124, 0.6);
  color: var(--black);
  box-shadow: 
    0 8px 32px rgba(198, 165, 124, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.find-us-btn.liquid-glass-navy {
  background: linear-gradient(135deg, var(--navy-accent) 0%, #324b75 50%, var(--navy-accent) 100%);
  border: 1px solid rgba(26, 43, 66, 0.6);
  color: #fff;
  box-shadow: 
    0 8px 32px rgba(26, 43, 66, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cart-btn.liquid-glass-white {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--black);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-icon {
  margin-right: 8px;
  font-size: 0.9rem;
  position: relative;
  z-index: 3;
}

/* Ensure button text and icons are above glass effects */
.square-btn .btn-text,
.square-btn .btn-icon,
.square-btn span {
  position: relative;
  z-index: 3;
}

/* Enhanced Cart Count with Premium Corner Effect */
.cart-count {
  display: none; /* Default hidden, JavaScript will show when needed */
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #28a745 0%, #20a53a 50%, #1e7e34 100%);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: bold;
  z-index: 4;
  border: 2px solid white;
  box-shadow: 
    0 4px 12px rgba(40, 167, 69, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  animation: cartCountPulse 2s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show cart count when it has content and is set to display */
.cart-count[style*="flex"] {
  display: flex !important;
}

.cart-count::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #28a745, #20a53a);
  border-radius: 50%;
  opacity: 0.8;
  animation: cornerPulse 2s ease-in-out infinite;
}

.cart-count::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
}

.cart-count:hover {
  transform: scale(1.1);
  box-shadow: 
    0 6px 20px rgba(40, 167, 69, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.cart-count:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes cartCountPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 4px 12px rgba(40, 167, 69, 0.4),
      inset 0 1px 2px rgba(255, 255, 255, 0.2);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 
      0 6px 18px rgba(40, 167, 69, 0.5),
      inset 0 1px 2px rgba(255, 255, 255, 0.3);
  }
}

@keyframes cornerPulse {
  0%, 100% { 
    opacity: 0.8;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.2);
  }
}

/* ===== MOBILE-SPECIFIC ELEMENTS ===== */
.mobile-actions,
.hamburger,
.nav-header,
.nav-footer,
.nav-overlay {
  display: none;
}

/* ===== RESPONSIVE STYLES ===== */

/* Large desktops (1200px - 1400px) */
@media (max-width: 1400px) {
  .nav-links {
    gap: 1.8rem;
  }
  
  .nav-links a {
    font-size: 1rem;
    letter-spacing: 1.8px;
  }
  
  .square-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* Medium desktops and laptops (992px - 1200px) */
@media (max-width: 1200px) {
  #site-header {
    padding: 0.8rem 4vw;
  }
  
  .nav-links {
    gap: 1.2rem;
  }
  
  .nav-links a {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
  }
  
  .nav-links a:hover {
    letter-spacing: 1.8px;
  }
  
  .logo {
    width: 150px;
  }
  
  #site-header.scrolled .logo {
    width: 130px;
  }
  
  .square-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
  
  .nav-right {
    gap: 8px;
  }
}

/* Small laptops and tablets (768px - 992px) */
@media (max-width: 992px) {
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links li::after {
    right: -0.7rem;
    width: 3px;
    height: 3px;
  }
  
  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.4rem 0;
  }
  
  .nav-links a:hover {
    letter-spacing: 1.3px;
  }
  
  .logo {
    width: 130px;
  }
  
  #site-header.scrolled .logo {
    width: 110px;
  }
  
  .square-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }
  
  .find-us-btn .btn-text {
    display: none;
  }
  
  .find-us-btn .btn-icon {
    margin-right: 0;
  }
  
  .nav-right {
    gap: 6px;
  }
}

/* Mobile devices (up to 768px) */
@media (max-width: 768px) {
  #site-header {
    padding: 1rem 4vw;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  /* Show mobile elements */
  .mobile-actions,
  .hamburger {
    display: flex;
  }
  
  /* Hide desktop elements */
  .nav-right {
    display: none;
  }
  
  /* Mobile Layout: MENU (left) - LOGO (center) - CART (right) */
    /* Hamburger/Menu button - LEFT SIDE */
  .hamburger {
    order: 1;
    flex: 0 0 auto;
    border: none;
    padding: 1rem 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    background-color: transparent;
    transition: all 0.3s ease;
    min-width: 80px;
    min-height: 50px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    /* Liquid glass effect for hamburger */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(198, 165, 124, 0.3);
    box-shadow: 
      0 8px 32px rgba(198, 165, 124, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%
    );
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }

  .hamburger strong {
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 1rem;
    position: relative;
    z-index: 3;
  }

  .hamburger:hover {
    background: linear-gradient(
      135deg,
      rgba(198, 165, 124, 0.3) 0%,
      rgba(198, 165, 124, 0.15) 50%,
      rgba(198, 165, 124, 0.3) 100%
    );
    border-color: rgba(198, 165, 124, 0.5);
    box-shadow: 
      0 12px 40px rgba(198, 165, 124, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
  }
  
  .hamburger:hover::before {
    left: 100%;
  }
  
  /* Logo container - CENTER */
  .logo-container {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .logo {
    width: 160px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.05);
  }
    /* Mobile cart button - RIGHT SIDE */
  .mobile-actions {
    order: 3;
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    z-index: 1000;  }.mobile-cart-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--black) !important;
    font-size: 1.4rem !important;
    position: relative !important;
    padding: 1rem 0.8rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 12px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    /* Strong solid background for visibility */
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 1000 !important;
    /* Override any liquid glass effects */
    opacity: 1 !important;
    visibility: visible !important;
  }
    /* Remove any pseudo-elements that might interfere */
  .mobile-cart-btn::before,
  .mobile-cart-btn::after {
    display: none !important;
  }
  
  .mobile-cart-btn i {
    position: relative !important;
    z-index: 10 !important;
    color: var(--black) !important;
    opacity: 1 !important;
  }  
  /* Override liquid glass effects on mobile cart button */
  .mobile-cart-btn.liquid-glass,
  .mobile-cart-btn.liquid-glass-white,
  .mobile-cart-btn.liquid-glass-gold,
  .mobile-cart-btn.liquid-glass-navy {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  .mobile-cart-btn.liquid-glass::before,
  .mobile-cart-btn.liquid-glass::after,
  .mobile-cart-btn.liquid-glass-white::before,
  .mobile-cart-btn.liquid-glass-white::after {
    display: none !important;
  }
  
  .mobile-cart-btn:hover,
  .mobile-cart-btn:focus {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(0, 0, 0, 0.3) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) scale(1.05);
  }
  
  .mobile-cart-btn:hover::before {
    left: 100%;
  }
  
  .mobile-cart-btn:active {
    transform: scale(0.98);
  }
  
  .mobile-cart-btn i {
    font-size: 1.4rem;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 3;
  }
    .mobile-cart-btn:hover i {
    transform: translateY(-1px);
  }    /* Enhanced Mobile Cart Count with Premium Corner Effect */
  #mobile-cart-count {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    width: 22px !important;
    height: 22px !important;
    background: linear-gradient(135deg, #28a745 0%, #20a53a 50%, #1e7e34 100%) !important;
    border-radius: 50% !important;
    font-size: 0.7rem !important;
    display: none; /* Default hidden, JavaScript will show when needed */
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-weight: bold !important;
    border: 2px solid white !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
    transform: scale(1) !important;
    z-index: 1001 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: cartCountPulse 2s ease-in-out infinite !important;
  }

  /* Show mobile cart count when it has content and is set to display */
  #mobile-cart-count[style*="flex"] {
    display: flex !important;
  }
  #mobile-cart-count::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    right: -2px !important;
    width: 6px !important;
    height: 6px !important;
    background: linear-gradient(135deg, #28a745, #20a53a) !important;
    border-radius: 50% !important;
    opacity: 0.8 !important;
    animation: cornerPulse 2s ease-in-out infinite !important;
  }
  #mobile-cart-count:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.3) !important;
  }

  #mobile-cart-count:not(:empty) {
    animation: cartBounce 0.5s ease-out;
  }

  @keyframes cartBounce {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }

  .hamburger:hover {
    color: var(--dark-gold);
    background-color: rgba(218, 165, 32, 0.1);
    box-shadow: 0 2px 8px rgba(198, 165, 124, 0.2);
  }
  
  /* Mobile navigation */
  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: linear-gradient(135deg, var(--header-bg) 0%, rgba(255, 255, 255, 0.95) 100%);
    flex-direction: column;
    justify-content: flex-start;
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    transition: right 0.4s var(--transition-bezier), box-shadow 0.4s ease;
    z-index: 1005;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    /* Enhanced backdrop blur for modern effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* Add border for premium feel */
    border-left: 1px solid rgba(198, 165, 124, 0.2);
  }
    /* Improved animation when menu opens */
  #site-header.menu-open #main-nav {
    right: 0;
    /* Add subtle slide-in animation for content */
    animation: slideInContent 0.4s var(--transition-bezier);
  }
  
  @keyframes slideInContent {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Enhanced nav header with floating close button */
  .nav-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    min-height: auto;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 10;
  }
  
  /* Hide the logo within the mobile menu's header */
  .nav-header .mobile-logo {
    display: none;
  }
  
  .mobile-logo img {
    width: 120px;
    height: auto;
  }
  .close-menu {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(198, 165, 124, 0.3);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gold);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s var(--transition-bezier);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .close-menu:hover {
    background: rgba(198, 165, 124, 0.2);
    color: var(--navy-accent);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }  /* Mobile menu links */
  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 0;
    padding-top: 0.5rem;
  }
  
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(30px);
    animation: slideInMenuItem 0.4s var(--transition-bezier) forwards;
  }
  
  /* Staggered animation for menu items */
  .nav-links li:nth-child(1) { animation-delay: 0.1s; }
  .nav-links li:nth-child(2) { animation-delay: 0.15s; }
  .nav-links li:nth-child(3) { animation-delay: 0.2s; }
  .nav-links li:nth-child(4) { animation-delay: 0.25s; }
  .nav-links li:nth-child(5) { animation-delay: 0.3s; }
  .nav-links li:nth-child(6) { animation-delay: 0.35s; }
  
  @keyframes slideInMenuItem {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .nav-links li::after {
    display: none;
  }
  
  .nav-links a {
    display: block;
    font-size: 1rem;
    padding: 1rem 0;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
  }
  
  .nav-links a::before {
    content: '';
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--navy-accent));
    transition: left 0.3s var(--transition-bezier);
  }
  
  .nav-links a:hover {
    letter-spacing: 2px;
    padding-left: 0.5rem;
    color: var(--navy-accent);
  }
  
  .nav-links a:hover::before {
    left: 0;
  }  /* Nav footer for mobile */
  .nav-footer {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
  }
  
  .mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
    .mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s var(--transition-bezier);
    letter-spacing: 1.5px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    /* Base liquid glass styles - enhanced by variant classes */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
  
  .mobile-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%
    );
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
  }
  
  .mobile-btn:hover::before {
    left: 100%;
  }
  
  .mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  }
  
  .mobile-btn i {
    margin-right: 10px;
    font-size: 1rem;
    position: relative;
    z-index: 3;
  }  
  
  .mobile-btn span {
    display: inline-block;
    position: relative;
    z-index: 3;
  }
  
  .mobile-buy-now-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #d4b78e 50%, var(--gold) 100%);
    color: var(--black);
    border: 1px solid rgba(255,255,255,0.3);
  }
  .mobile-find-us-btn {
    background: linear-gradient(135deg, var(--navy-accent) 0%, #324b75 50%, var(--navy-accent) 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
  }
  
  .mobile-cart-btn-nav {
    background: #ffffff;
    color: var(--black);
    border: 1px solid rgba(0,0,0,0.1);
  }
    .shop-btn {
    background: var(--gold);
    color: var(--black);
  }
  
  /* Mobile Social Media Section */
  .mobile-social-section {
    margin-top: 1.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(198, 165, 124, 0.3);
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s var(--transition-bezier);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .mobile-social-links a:hover {
    background: rgba(198, 165, 124, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(198, 165, 124, 0.3);
  }
  
  .mobile-social-links a i {
    font-size: 1.2rem;
  }
    /* Gentle Sphynx Cat Animation */
  .mobile-sphynx-cat {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
  }    .sphynx-cat-icon {
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.7;
    filter: brightness(0);
    animation: gentleSway 4s ease-in-out infinite;
    transform-origin: center bottom;
  }
  
  /* Lightweight, gentle sway animation */
  @keyframes gentleSway {
    0%, 100% { 
      transform: rotate(-2deg) translateY(0px);
    }
    50% { 
      transform: rotate(2deg) translateY(-3px);
    }
  }
    /* Mobile menu overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(198, 165, 124, 0.15);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-bezier);
  }
  
  /* Active states for mobile menu */
  #site-header.menu-open .nav-overlay {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  #site-header.menu-open #main-nav {
    right: 0;
  }
  
  /* Hamburger animation */
  #site-header.menu-open .hamburger {
    transform: scale(1); 
  }

  #site-header.menu-open .hamburger span {
    background-color: var(--navy-accent); 
  }

  #site-header.menu-open .hamburger span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg); /* Adjusted for new height and line thickness */
    width: 100%;
  }
  
  #site-header.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
    width: 100%;
  }
  
  #site-header.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg); /* Adjusted for new height and line thickness */
    width: 100%;
  }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
  #site-header {
    padding: 0.8rem 3vw;
  }
  
  .logo {
    width: 140px;
  }
  
  .hamburger {
    min-width: 70px;
    padding: 0.8rem 0.6rem;
  }
  
  .hamburger strong {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .mobile-cart-btn {
    padding: 0.8rem 0.6rem;
    min-width: 45px;
  }
  
  .mobile-cart-btn i {
    font-size: 1.3rem;
  }
  
  .mobile-actions {
    min-width: 70px;
  }
    #mobile-cart-count {
    width: 20px;
    height: 20px;
    font-size: 0.65rem;
    top: 2px;
    right: 2px;
  }
  
  #main-nav {
    width: 90%;
    padding: 1rem;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }  .mobile-btn {
    padding: 0.7rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  
  .mobile-btn i {
    margin-right: 8px;
    font-size: 0.9rem;
  }
    .mobile-btn span {
    font-size: 0.75rem;
  }
}

/* Extra small mobile devices (up to 375px) */
@media (max-width: 375px) {
  .hamburger strong {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }  .mobile-btn {
    padding: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
    .mobile-btn span {
    font-size: 0.7rem;
  }
  
  .mobile-btn i {
    margin-right: 6px;
    font-size: 0.8rem;
  }
  
  #main-nav {
    width: 95%;
    padding: 0.8rem;
  }
}