/* ==========================================
   STRUCTURE CSS - Navigation, Header, Footer
   ========================================== */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #444241;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar - NOT sticky, will scroll away */
.top-bar {
  background-color: #e5cbbe;
  color: #444241;
  font-size: 12px;
  padding: 8px 0;
  position: relative;
  z-index: 999;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar-left .sign-link {
  color: #444241;
  text-decoration: none;
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

.lang-link {
  color: #444241;
  text-decoration: none;
  font-weight: 500;
}

.lang-link.active {
  color: #695950;
  font-weight: 600;
}

/* Header - STICKY, stays visible when scrolling */
.header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
  position: sticky;
  position: -webkit-sticky; /* Safari support */
  top: 0;
  z-index: 10000;
  transition: all 0.3s ease;
  width: 100%;
  will-change: transform;
}

/* Set CSS custom property for header height */
:root {
  --header-height: 94px;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 0; /* ลดความสูงจาก 15px เป็น 8px */
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10%;
  padding-right: 10%;
}

.logo img {
  width: 160px;
  height: 64px;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.header.scrolled .logo img {
  width: 140px;
  height: 56px;
  margin-top: 8px;
}

.main-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10001;
}

/* Special positioning for collections dropdown */
.nav-item:nth-child(3) {
  position: relative;
  z-index: 10001;
}

/* Make collections dropdown container cover full width */
.nav-item:nth-child(3):hover .dropdown-menu-large {
  position: fixed;
}

.nav-link {
  color: #444241;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.header.scrolled .nav-link {
  font-size: 13px;
}

.nav-link:hover {
  color: #34b79d;
}

.nav-link.special {
  color: #34b79d;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10002;
  border: 1px solid #f0f0f0;
  pointer-events: none;
}

/* Add invisible bridge for regular dropdowns */
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
  pointer-events: none;
}

/* Show dropdown on hover - Controlled by JavaScript for exclusive behavior */
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu:hover::after {
  pointer-events: auto;
}

/* Large dropdown for Y.COLLECTIONS - Full width */
.dropdown-menu-large {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height, 94px);
  width: 100vw;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  background-color: #fff;
}

/* Add invisible bridge for mouse movement */
.dropdown-menu-large::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

/* Show large dropdown on hover - Controlled by JavaScript for exclusive behavior */
.dropdown-menu-large:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu-large:hover::after {
  pointer-events: auto;
}

.dropdown-menu-large .dropdown-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  gap: 40px;
}

.dropdown-column {
  flex: 1;
  min-width: 0;
}

.dropdown-column:first-child {
  flex: 1.5;
}

.dropdown-header {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #444241;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.dropdown-divider {
  border: none;
  height: 1px;
  background-color: #e5cbbe;
  margin: 0 0 12px 0;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  z-index: 10003;
}

/* Hide arrow for full-width dropdown */
.dropdown-menu-large::before {
  display: none;
}

.dropdown-link {
  display: block;
  padding: 8px 0;
  color: #444241;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-menu:not(.dropdown-menu-large) .dropdown-link {
  padding: 12px 20px;
  border-bottom: 1px solid #f8f8f8;
}

.dropdown-menu:not(.dropdown-menu-large) .dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  color: #897c70;
  padding-left: 15px;
}

.dropdown-menu:not(.dropdown-menu-large) .dropdown-link:hover {
  background-color: #f8f8f8;
  padding-left: 25px;
}

.dropdown-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #897c70;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdown-link:hover::after {
  transform: scaleY(1);
}

.dropdown-menu-large .dropdown-link::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #444241;
  transition: all 0.3s ease;
}

.shopping-cart-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #444241;
  transition: all 0.3s ease;
}


.header.scrolled .search-btn {
  font-size: 16px;
}

.wishlist {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

.heart {
  font-size: 18px;
  color: #38ba9b;
}

.wishlist-count {
  background-color: #38ba9b;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.cart {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444241;
}

.cart-icon {
  font-size: 18px;
}

.cart-count {
  font-size: 14px;
  font-weight: 500;
}

/* Search Popup Styles */
.search-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 25000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-popup-content {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.search-close-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  color: #444241;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.7;
  transform: scale(0.8);
  z-index: 25002;
}

.search-popup-overlay.active .search-close-btn {
  opacity: 1;
  transform: scale(1);
}

.search-close-btn:hover {
  background-color: rgba(68, 66, 65, 0.1);
  transform: rotate(90deg) scale(1.1);
  opacity: 1;
}

.search-popup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.search-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666666;
  margin-bottom: 40px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.search-popup-overlay.active .search-title {
  transform: translateY(0);
  opacity: 1;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.2s;
}

.search-popup-overlay.active .search-box {
  transform: translateY(0);
  opacity: 1;
}

.search-icon {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #999999;
  z-index: 25001;
}

.search-input {
  width: 100%;
  padding: 20px 80px 20px 70px;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #666666;
  background-color: transparent;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-bottom-color: #897c70;
}

.search-input::placeholder {
  color: #cccccc;
  font-weight: 300;
}

.search-submit-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 20px;
  color: #999999;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 25001;
}

.search-submit-btn:hover {
  color: #897c70;
  background-color: rgba(137, 124, 112, 0.1);
  transform: translateY(-50%) scale(1.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 3px;
  position: relative;
  z-index: 15000;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #444241;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header.scrolled .hamburger-line {
  width: 22px;
  height: 2.5px;
}

.mobile-menu-btn.active .hamburger-line {
  background-color: #444241;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background-color: #fff;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 20001;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  background-color: #f8f8f8;
}

.mobile-logo {
  height: 35px;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #444241;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  padding: 20px 0;
}

.mobile-menu-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: #444241;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-nav-link:hover {
  background-color: #f8f8f8;
  color: #897c70;
}

.mobile-nav-link.special {
  color: #897c70;
  background-color: #f8f8f8;
}

.mobile-chevron {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-nav-link.active .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-submenu {
  background-color: #f8f8f8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-submenu.active {
  max-height: 1000px;
}

.mobile-submenu-header {
  padding: 12px 40px 8px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #897c70;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #e5cbbe;
  margin-bottom: 5px;
  margin-top: 10px;
  background-color: #f0f0f0;
}

.mobile-submenu-header:first-child {
  margin-top: 5px;
}

.mobile-submenu-link {
  display: block;
  padding: 12px 40px;
  color: #695950;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.mobile-submenu-link:hover {
  background-color: #e5e5e5;
  color: #444241;
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid #e5e5e5;
  background-color: #f8f8f8;
}

.mobile-auth {
  margin-bottom: 15px;
}

.mobile-auth-link {
  color: #444241;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.mobile-lang {
  display: flex;
  gap: 15px;
}

.mobile-lang-link {
  color: #695950;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.mobile-lang-link.active {
  color: #444241;
  font-weight: 600;
}

/* Main Content Area - Add your custom content styles here */
.main-content {
  padding: 50px 0;
  min-height: 400px;
  flex: 1;
  /* Add your custom content styles here */
}

/* Footer */
.footer {
  background-color: #f4f4f4;
  padding: 50px 0 30px;
  color: #444241;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-family: 'Prompt', sans-serif !important;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #444241;
  padding-bottom: 15px;
  border-bottom: 2px solid #e5cbbe;
}

.footer-section p, .footer-section a {
  font-family: 'Prompt', sans-serif !important;
  font-size: 13px;
  line-height: 1.6;
  color: #000000;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #444241;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-icons a {
  font-size: 20px;
  color: #695950;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #444241;
}

.social-icons img {
  height: 20px;
  width: auto;
}

.facebook-icon {
  background-color: #4267B2;
  color: white !important;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  text-decoration: none;
}

.instagram-icon {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white !important;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
}

.certifications {
  display: flex;
  gap: 15px;
  align-items: center;
}

.gia-logo {
  height: 40px;
}

.gems-logo {
  height: 30px;
}

.footer-section:last-child .gia-logo {
  width: 167px;
  height: 56px;
}

.hover-image {
  transition: opacity 0.3s ease;
  cursor: pointer;
}

/* Bottom Bar */
.bottom-bar {
  background-color: #e5cbbe;
  color: #444241;
  font-size: 12px;
  padding: 8px 0;
  margin-top: 0;
  padding: 14px 0;
}

.bottom-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-bar-content {
  text-align: center;
}

.bottom-bar-content p {
  margin: 0;
  color: #444241;
  font-weight: 500;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 10001;
    position: relative;
  }

  .mobile-nav-content {
    width: 280px;
  }

  /* Hide dropdown menus on mobile - use mobile submenu instead */
  .dropdown-menu,
  .dropdown-menu-large {
    display: none;
  }

  /* Ensure header stays below mobile navigation when menu is open */
  body.mobile-menu-open .header {
    z-index: 9999;
  }

  /* Additional mobile navigation fixes */
  .mobile-nav-overlay {
    z-index: 20000 !important;
  }

  .mobile-nav-content {
    z-index: 20001 !important;
  }

  /* Ensure mobile nav header doesn't get cut off */
  .mobile-nav-header {
    position: relative;
    z-index: 20002;
  }

  /* Additional spacing and visual improvements for mobile menu */
  .mobile-nav {
    padding-top: 10px;
  }

  /* Search popup mobile styles */
  .search-popup-content {
    padding: 0 15px;
  }

  .search-close-btn {
    top: 20px;
    right: 20px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }

  .search-title {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .search-icon {
    left: 20px;
    font-size: 18px;
  }

  .search-input {
    padding: 18px 60px 18px 55px;
    font-size: 18px;
  }

  .search-submit-btn {
    right: 15px;
    font-size: 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .top-bar .container {
    justify-content: flex-end;
  }

  .top-bar-right {
    display: flex;
    gap: 15px;
    margin-left: auto;
  }

  .bottom-bar .container {
    flex-direction: column;
    gap: 10px;
  }
  .main-content {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .main-content {
    padding: 20px 0;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1140px;
    max-width: 100%;
  }
  
  .header-content {
    width: 1140px;
    max-width: 100%;
    padding: 0 20px 0 10px;
  }
}

/* ==========================================
   CONTACT FLOAT BUTTON STYLES
   ========================================== */

.contact-float-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.contact-button {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e5cbbe 0%, #d4b5a0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #d4b5a0 0%, #c4a590 100%);
}

.contact-button i {
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.contact-button:hover i {
  transform: scale(1.1);
}

.contact-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  padding: 10px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.contact-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #444241;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item:hover {
  background-color: #f8f9fa;
  transform: translateX(5px);
}

.contact-item.facebook:hover {
  background-color: #1877f2;
  color: #fff;
}

.contact-item.line:hover {
  background-color: #06c755;
  color: #fff;
}

.contact-item i {
  font-size: 20px;
  margin-right: 12px;
  width: 24px;
  text-align: center;
}

.contact-item.facebook i {
  color: #1877f2;
}

.contact-item.line i {
  color: #06c755;
}

.contact-item.facebook:hover i,
.contact-item.line:hover i {
  color: #fff;
}

.contact-item span {
  font-weight: 500;
  font-size: 14px;
}

/* Arrow pointing to contact button */
.contact-menu::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .contact-float-button {
    bottom: 20px;
    right: 20px;
  }
  
  .contact-button {
    width: 50px;
    height: 50px;
  }
  
  .contact-button i {
    font-size: 20px;
  }
  
  .contact-menu {
    min-width: 160px;
    bottom: 60px;
  }
  
  .contact-item {
    padding: 10px 12px;
  }
  
  .contact-item span {
    font-size: 13px;
  }
}

/* Shopping Cart Badge */
.shopping-cart-btn {
  position: relative;
}

.cart-count-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #e74c3c;
  color: white;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2px;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cart-count-badge.show {
  display: flex;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 100px;
  right: -350px;
  background-color: white;
  color: #444241;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  transition: right 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  min-width: 280px;
  border-left: 4px solid #38ba9b;
}

.cart-notification.show {
  right: 30px;
}

.cart-notification i {
  color: #ffffff;
  font-size: 20px;
}

@media (max-width: 768px) {
  .cart-notification {
    right: -320px;
    min-width: 260px;
    top: 80px;
  }
  
  .cart-notification.show {
    right: 20px;
  }
  
  .cart-count-badge {
    top: -3px;
    right: -6px;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
  }
}


/* ==========================================
   SHOPPING CART BADGE & NOTIFICATION
   ========================================== */

/* Cart Count Badge */
.cart-count-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: #34b79d;
  color: white;
  padding: 15px 25px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 99999;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  font-family: 'Prompt', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.cart-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.cart-notification i {
  font-size: 20px;
}

/* Shopping Cart Button */
.shopping-cart-btn {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shopping-cart-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .cart-notification {
    top: 80px;
    right: 10px;
    left: 10px;
    font-size: 13px;
    padding: 12px 20px;
  }
  
  .cart-count-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -6px;
    right: -6px;
  }
}

/* ==========================================
   RECAPTCHA BADGE POSITION
   ========================================== */

/* Move reCAPTCHA badge to bottom-left to avoid contact button */
.grecaptcha-badge {
  bottom: 30px !important;
  left: 30px !important;
  right: auto !important;
  z-index: 999 !important;
}

@media (max-width: 768px) {
  .grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
  }
}
