/* Navbar Styles - Extracted from main.css */

/* Top Contact Bar */
.top-contact-bar {
  background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 1001;
  width: 100%;
  overflow: hidden;
}

.top-contact-container {
  text-align: right;
  padding: 0.25rem 3rem;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 28px;
  width: 100%;
}

.top-contact-bar .contact-info {
  display: inline;
}

.top-contact-bar .contact-item {
  display: inline;
  color: #666;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1px;
  transition: all 0.3s ease;
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
  margin-right: 1.5rem;
}

.top-contact-bar .contact-item:last-child {
  margin-right: 0;
}

.top-contact-bar .contact-item svg {
  vertical-align: middle;
  margin-right: 0.3rem;
}

.top-contact-bar .contact-item:hover {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-1px);
}

.top-contact-bar .contact-item svg {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.top-contact-bar .contact-item:hover svg {
  opacity: 1;
  color: #d4af37;
}

/* Main Navbar Styles */
.navbar {
  background: rgba(254, 254, 254, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 28px;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  max-width: 1600px;
  margin: 0 auto;
  height: 80px;
}

/* Logo */
.navbar-logo img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.02);
}

/* Navigation Menu */
.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2.5rem;
}

.navbar-item {
  position: relative;
}

.navbar-link {
  text-decoration: none;
  color: #2c2c2c;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.navbar-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4e5a3);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(-50%);
}

.navbar-link:hover::before {
  width: 100%;
}

.navbar-link:hover {
  color: #d4af37;
  background-color: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 11px;
  transition: transform 0.3s ease;
  color: #d4af37;
  margin-left: 0.3rem;
}

/* Desktop only hover effects */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: rgba(254, 254, 254, 0.98);
  backdrop-filter: blur(20px);
  min-width: 280px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  list-style: none;
  margin: 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e5a3 50%, #d4af37 100%);
}

/* Desktop only hover effects */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: #2c2c2c;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  position: relative;
  border-left: 0;
}

.dropdown-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
  transition: width 0.25s ease;
}

.dropdown-menu a:hover::after {
  width: 100%;
}

.dropdown-menu a:hover {
  color: #d4af37;
  background: transparent;
  transform: none;
}

/* Search Bar Styles */
.navbar-search {
  position: relative;
  margin: 0 1.5rem;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  padding: 0;
  transition: all 0.3s ease;
  width: 280px;
  overflow: hidden;
}

.search-container:hover {
  border-color: #c29c60;
  box-shadow: 0 4px 12px rgba(194, 156, 96, 0.15);
}

.search-container:focus-within {
  border-color: #c29c60;
  box-shadow: 0 4px 16px rgba(194, 156, 96, 0.2);
  background: white;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  background: transparent;
  border-radius: 25px;
}

.search-input::placeholder {
  color: #999;
  font-style: italic;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
  border-radius: 0 25px 25px 0;
}

.search-btn:hover {
  color: #c29c60;
  background: rgba(194, 156, 96, 0.1);
}

.search-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #999;
  transition: all 0.3s ease;
  border-radius: 50%;
  position: absolute;
  right: 45px;
}

.search-clear:hover {
  color: #666;
  background: rgba(0, 0, 0, 0.05);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  margin-top: 8px;
  max-height: 400px;
  overflow-y: auto;
}

.search-results-content {
  padding: 8px 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.search-result-item:hover {
  background: rgba(194, 156, 96, 0.05);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-category {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}

.search-result-price {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #c29c60;
}

.search-no-results {
  padding: 20px 16px;
  text-align: center;
  color: #999;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

/* Social Media Links */
.navbar-socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
  color: #666;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.navbar-socials .social-link i {
  font-size: 20px !important;
  width: 20px !important;
  height: 20px !important;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 229, 163, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover::before {
  opacity: 1;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(240, 148, 51, 0.3);
}

.social-link.pinterest:hover {
  background: linear-gradient(135deg, #bd081c 0%, #e60023 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(230, 0, 35, 0.3);
}

.social-link.tiktok:hover {
  background: linear-gradient(135deg, #000000 0%, #25f4ee 50%, #fe2c55 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  position: relative;
}

.navbar-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Active page and body scroll lock */
.navbar-link.active-page {
  color: #d4af37 !important;
  background-color: rgba(212, 175, 55, 0.1) !important;
}

.navbar-link.active-page::before {
  width: 100% !important;
}

body.menu-open {
  overflow: hidden;
}

/* Mobile Search Toggle */
.mobile-search-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: #333;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mobile-search-toggle:hover {
  color: #c29c60;
}

.mobile-search-toggle svg {
  width: 20px;
  height: 20px;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  z-index: 3000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.cart-open {
  overflow: hidden;
}

/* Cart Header */
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
}

.cart-header h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  font-weight: 600;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: #e0e0e0;
  color: #333;
}

/* Cart Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.8rem;
  color: #c29c60;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  background: #f0f0f0;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: bold;
  color: #666;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #e0e0e0;
  color: #333;
}

.quantity {
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
  color: #333;
}

.remove-item {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.remove-item:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.cart-item-total {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 3rem 2rem;
  color: #666;
}

.empty-cart-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-empty p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Cart Footer */
.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid #e0e0e0;
  background: #f8f9fa;
}

.cart-total {
  margin-bottom: 1rem;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.cart-actions {
  display: flex;
  gap: 0.75rem;
}

.cart-actions .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Cart Counter in Navbar */
.cart-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #c29c60;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}

.navbar-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: #c29c60;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 500;
  margin-right: 1rem;
  gap: 0.5rem;
}

.navbar-cart:hover {
  background: #b8935a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(194, 156, 96, 0.3);
}

/* Desktop Large */
@media screen and (max-width: 1200px) and (min-width: 901px) {
  .navbar-container {
    padding: 0 2rem;
  }
  
  .top-contact-container {
    padding: 0.25rem 2rem;
  }
}

/* Narrow Tablet/Mobile Styles */
@media screen and (max-width: 900px) {
  .navbar-container {
    justify-content: space-between;
  }
  
  .navbar-toggle {
    display: flex;
    order: 3;
  }

  .navbar-menu {
    position: fixed;
    left: -100%;
    top: 52px;
    flex-direction: column;
    background-color: rgba(254, 254, 254, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    gap: 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-search {
    display: none; /* Hide by default on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .navbar-search.active {
    display: block;
  }
  
  .search-container {
    width: 100%;
  }
  
  .search-input {
    padding: 12px 16px;
    font-size: 16px; /* Prevent zoom on iOS */
    width: 100%;
  }
  
  .search-results {
    position: static;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .navbar-socials {
    display: flex;
    gap: 0.5rem;
  }
  
  .mobile-search-toggle {
    display: flex !important; /* Show search toggle on mobile */
    align-items: center;
    order: 2;
  }
  
  .social-link {
    width: 28px;
    height: 28px;
  }

  .navbar-socials .social-link i {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  /* Top Contact Bar Mobile */
  .top-contact-container {
    padding: 0.2rem 1rem;
    justify-content: center;
    min-height: 24px;
  }
  
  .top-contact-bar .contact-info {
    gap: 1rem;
    flex-wrap: nowrap;
  }
  
  .top-contact-bar .contact-item {
    font-size: 10px;
    padding: 0.15rem 0.3rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  /* Navbar Mobile */
  .navbar {
    top: 24px;
  }

  .navbar-container {
    padding: 0 1rem;
    height: 70px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    left: -100%;
    top: 94px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    height: calc(100vh - 94px);
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 0;
    padding: 0;
    overflow-y: auto;
    z-index: 1000;
  }

  .navbar-menu.active {
    left: 0;
  }

  .navbar-item {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .navbar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem !important;
    font-size: 16px !important;
    color: #333 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    border: none;
    text-align: left;
    width: 100%;
  }

  .navbar-link:hover {
    background-color: #f8f9fa;
    color: #c29c60 !important;
  }

  .navbar-container {
    justify-content: space-between;
  }
  
  .navbar-toggle {
    order: 3;
  }

  .navbar-socials {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    order: 2;
  }
  
  .social-link {
    width: 26px;
    height: 26px;
  }

  .navbar-socials .social-link i {
    font-size: 14px !important;
    width: 14px !important;
    height: 14px !important;
  }

  /* Mobile Dropdown - Complete Override */
  .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    background: #f5f5f5 !important;
    backdrop-filter: none !important;
    min-width: auto !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
    list-style: none !important;
    border: none !important;
    overflow: visible !important;
    display: none !important;
    width: 100% !important;
    max-height: none !important;
  }

  .dropdown-menu::before {
    display: none !important;
  }

  .dropdown.active .dropdown-menu {
    display: block !important;
  }

  .dropdown.active .dropdown-arrow {
    transform: rotate(180deg) !important;
    color: #c29c60 !important;
  }

  .dropdown-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }

  .dropdown-menu li:last-child {
    border-bottom: none !important;
  }

  .dropdown-menu a {
    display: block !important;
    padding: 15px 30px !important;
    color: #666 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    background: #f5f5f5 !important;
    border: none !important;
    border-left: none !important;
    transition: all 0.2s ease !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
    position: static !important;
  }

  .dropdown-menu a::after {
    display: none !important;
  }

  .dropdown-menu a:hover {
    background: #e8e8e8 !important;
    color: #c29c60 !important;
    padding-left: 35px !important;
    transform: none !important;
  }

  /* Mobile Menu Animation */
  .navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Responsive Cart */
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .cart-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cart-item-image {
    width: 50px;
    height: 50px;
  }
  
  .cart-item-details {
    width: 100%;
  }
  
  .cart-item-controls {
    justify-content: space-between;
  }
  
  .cart-actions {
    flex-direction: column;
  }
}

/* Very Narrow Screens */
@media screen and (max-width: 600px) {
  .navbar-menu {
    top: 48px;
  }
  
  .navbar-container {
    height: 48px;
    padding: 0 0.8rem;
  }
  
  .navbar-logo img {
    height: 30px;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  /* Very small screens */
  .top-contact-bar .contact-item {
    font-size: 9px;
    padding: 0.1rem 0.2rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .top-contact-bar .contact-info {
    gap: 0.8rem;
    flex-wrap: nowrap;
  }

  .navbar-logo img {
    height: 35px;
  }

  .navbar-container {
    height: 60px;
    padding: 0 0.5rem;
    justify-content: space-between;
  }
  
  .navbar-toggle {
    order: 3;
  }
  
  .navbar-socials {
    gap: 0.3rem;
    order: 2;
  }
  
  .social-link {
    width: 24px;
    height: 24px;
  }

  .navbar-socials .social-link i {
    font-size: 12px !important;
    width: 12px !important;
    height: 12px !important;
  }

  .navbar-menu {
    top: 84px;
  }

  .cart-header {
    padding: 1rem;
  }
  
  .cart-items {
    padding: 0.75rem;
  }
  
  .cart-footer {
    padding: 1rem;
  }
}