/* === BODY & BASE COLORS === */
/* Edit for overall background and text color */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #d7d7d7 !important; /* Light gray background */
  color: #222;      /* Main text color (dark grey/black) */
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Scroll to Top Button Styles */
#scrollTopBtn {
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, color 0.3s ease;
}
#scrollTopBtn:hover {
  background-color: #5f5f5f;
  color: #e0e0e0;
}

/* === HEADER & NAVIGATION === */
header {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  color: #fff;
  padding: 0;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  position: sticky;
  top: 0;
  z-index: 99998;
  border-bottom: 3px solid #464a4d;
  backdrop-filter: blur(10px);
  height: 70px;
  overflow: visible;
}

header, .menu-bar {
  background: #000 !important;
  color: #fff !important;
}

.menu-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: #000;
}

.menu-bar .logo {
  height: 45px;
  margin-right: 30px;
  border: 2px solid #f7f9fa;
  border-radius: 15px;
  padding: 6px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 125, 209, 0.15);
}

.menu-bar .logo:hover { 
  transform: scale(1.08) translateY(-3px);
  box-shadow: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.menu-wrapper ul {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
}

.menu-wrapper ul li {
  position: relative;
  animation: slideIn 0.6s ease forwards;
  opacity: 0;
  z-index: 99999;
}

.menu-wrapper ul li:nth-child(1) { animation-delay: 0.1s; }
.menu-wrapper ul li:nth-child(2) { animation-delay: 0.2s; }
.menu-wrapper ul li:nth-child(3) { animation-delay: 0.3s; }

.menu-wrapper ul li a,
.menu-wrapper ul li span {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-wrapper ul li a:hover,
.menu-wrapper ul li span:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.menu-wrapper ul li a i {
  font-size: 17px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.menu-wrapper ul li a:hover i {
  color: #fff;
  transform: scale(1.1) rotate(2deg);
  animation: none;
}

@keyframes iconPulse {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  margin-top: 8px;
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99999;
}

.dropdown-toggle:hover + .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Products Dropdown specific positioning */
#productsDropdown {
  left: 0;
}

/* Customer Care Dropdown specific positioning */
#careDropdown {
  right: 0;
  left: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  margin-bottom: 4px;
}

.dropdown-menu a:hover {
  background: rgba(0, 125, 209, 0.15);
  color: #007dd1;
  transform: translateX(4px);
  border-color: rgba(0, 125, 209, 0.2);
  box-shadow: 0 4px 12px rgba(0, 125, 209, 0.1);
}

/* Dropdown Products Grid: 4x4 Layout */
.dropdown-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .dropdown-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .dropdown-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 0;
  }
}

/* Search Container */
.search-container {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-left: 20px;
}

.search-icon {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.search-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.search-icon:hover::before {
  left: 100%;
}

.search-icon:hover {
  color: #007dd1;
  background: linear-gradient(135deg, rgba(0, 125, 209, 0.2), rgba(0, 125, 209, 0.1));
  border-color: rgba(0, 125, 209, 0.4);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 125, 209, 0.3);
}

.search-icon:active {
  transform: scale(0.95);
}

.search-input {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  padding: 14px 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  width: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  right: 56px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

.search-input.active {
  width: 300px;
  opacity: 1;
  transform: translateX(0);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.search-input:focus {
  outline: none;
  border-color: #007dd1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  box-shadow: 0 0 0 4px rgba(0, 125, 209, 0.3), 0 12px 40px rgba(0, 125, 209, 0.2);
  transform: translateX(0) scale(1.02);
}

#clearSearchBtn {
  position: absolute;
  right: 62px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 8px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#clearSearchBtn:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.15) rotate(90deg);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

#clearSearchBtn.visible {
  opacity: 1;
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* Search Results Dropdown */
.search-results {
  position: absolute;
  top: 100%;
  right: 0;
  width: 420px;
  max-height: 500px;
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin-top: 16px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  transform: translateY(-10px) scale(0.95);
}

.search-results.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.search-results::-webkit-scrollbar {
  width: 8px;
}

.search-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Search Header */
.search-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(0, 125, 209, 0.1), rgba(0, 125, 209, 0.05));
}

.search-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.search-stats i {
  color: #007dd1;
  font-size: 16px;
}

.search-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, rgba(0, 125, 209, 0.2), rgba(0, 125, 209, 0.1));
  color: #fff;
  border-color: rgba(0, 125, 209, 0.4);
  transform: translateY(-1px);
}

/* Search Suggestions */
.suggestions-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.suggestions-header i {
  color: #007dd1;
  font-size: 14px;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.search-suggestion-item:hover {
  background: linear-gradient(135deg, rgba(0, 125, 209, 0.1), rgba(0, 125, 209, 0.05));
  transform: translateX(4px);
}

.search-suggestion-item i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.search-suggestion-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  flex: 1;
}

.remove-suggestion {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
}

.search-suggestion-item:hover .remove-suggestion {
  opacity: 1;
}

.remove-suggestion:hover {
  color: #ff4757;
  background: rgba(255, 71, 87, 0.1);
}

/* Enhanced Search Result Items */
.search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  position: relative;
  overflow: hidden;
}

.search-result-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 125, 209, 0.1), transparent);
  transition: left 0.6s ease;
}

.search-result-item:hover::before {
  left: 100%;
}

.search-result-item:hover {
  background: linear-gradient(135deg, rgba(0, 125, 209, 0.15), rgba(0, 125, 209, 0.05));
  transform: translateX(6px) translateY(-2px);
  border-color: rgba(0, 125, 209, 0.3);
  box-shadow: 0 8px 24px rgba(0, 125, 209, 0.2);
}

.result-image {
  position: relative;
  flex-shrink: 0;
}

.result-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.search-result-item:hover .result-image img {
  border-color: rgba(0, 125, 209, 0.4);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 125, 209, 0.3);
}

.match-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

.result-title {
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.result-title mark {
  background: linear-gradient(135deg, rgba(0, 125, 209, 0.3), rgba(0, 125, 209, 0.2));
  color: #fff;
  padding: 1px 3px;
  border-radius: 3px;
  font-weight: 800;
}

.result-details {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.result-category {
  color: #007dd1;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 125, 209, 0.1);
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 125, 209, 0.2);
}

.result-category mark {
  background: rgba(0, 125, 209, 0.3);
  color: #fff;
  padding: 1px 2px;
  border-radius: 2px;
  font-weight: 700;
}

.result-storage {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 8px;
}

.result-price {
  color: #4ade80;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.result-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.view-details-btn,
.reserve-now-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-details-btn:hover {
  background: linear-gradient(135deg, rgba(0, 125, 209, 0.2), rgba(0, 125, 209, 0.1));
  color: #fff;
  border-color: rgba(0, 125, 209, 0.4);
  transform: translateY(-1px);
}

.reserve-now-btn {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-color: rgba(74, 222, 128, 0.3);
  color: #fff;
  font-weight: 700;
}

.reserve-now-btn:hover {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

/* No Results */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.7);
}

.no-results i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
  display: block;
}

.no-results div {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.search-tips {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-top: 12px;
}

.search-tips small {
  display: block;
  margin-top: 4px;
}

/* Highlight animation for search results */
@keyframes highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 125, 209, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 125, 209, 0.3);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 125, 209, 0);
    transform: scale(1);
  }
}

/* Responsive design for search */
@media (max-width: 768px) {
  .search-results {
    width: 320px;
    right: -20px;
  }
  
  .search-result-item {
    padding: 12px 16px;
  }
  
  .result-image img {
    width: 50px;
    height: 50px;
  }
  
  .result-title {
    font-size: 14px;
  }
  
  .result-actions {
    flex-direction: column;
  }
  
  .view-details-btn,
  .reserve-now-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .search-results {
    width: 280px;
    right: -40px;
  }
  
  .search-header {
    padding: 12px 16px;
  }
  
  .search-filters {
    gap: 6px;
  }
  
  .filter-btn {
    font-size: 11px;
    padding: 4px 8px;
  }
}

/* === FOOTER === */
#container4 {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  color: #fff;
  padding: 12px 0 8px 0;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  position: relative;
  margin-top: 0;
  box-shadow: 0 -4px 20px rgba(0, 125, 209, 0.1);
}

#container4 footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

#container4 footer p {
  margin: 4px 0;
  font-size: 13px;
  color: #ccc;
  transition: color 0.3s ease;
}

#container4 footer p:first-child {
  color: #fff;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
}

#container4 footer p a {
  color: #007dd1;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  position: relative;
  padding: 2px 4px;
  border-radius: 4px;
}

#container4 footer p a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #007dd1, #005fa3);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

#container4 footer p a:hover {
  color: #fff;
  background: rgba(0, 125, 209, 0.1);
}

#container4 footer p a:hover::after {
  width: 100%;
}

/* Footer icons */
.footer-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.footer-icons a {
  color: #fff;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-icons a:hover {
  color: #007dd1;
  background: #fff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 125, 209, 0.3);
  border-color: #007dd1;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px 0;
  font-family: 'Roboto Slab', serif;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-section ul li a i {
  font-size: 14px;
  color: #007dd1;
}

/* Copyright Section */
.copyright-section {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
  font-size: 11px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  #container4 footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  #container4 {
    padding: 16px 0;
  }

  #container4 footer {
    padding: 0 16px;
  }

  .footer-icons {
    gap: 16px;
  }

  .footer-icons a {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .copyright-section {
    margin-top: 32px;
    padding-top: 24px;
  }

  .menu-bar {
    padding: 0 20px;
    height: 60px;
    flex-direction: column;
  }

  .menu-bar .logo {
    height: 52px;
    margin: 10px 0;
  }

  .menu-wrapper {
    width: 100%;
  }

  .menu-wrapper ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .menu-wrapper ul li a,
  .menu-wrapper ul li span {
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu {
    position: absolute;
    width: 100%;
    margin-top: 5px;
    opacity: 1;
    visibility: visible;
    display: none;
    z-index: 99999;
    pointer-events: auto;
  }

  .dropdown-toggle:hover + .dropdown-menu,
  .dropdown-menu:hover {
    display: block;
  }

  #container1 {
    padding: 20px;
  }

  .video-container {
    height: 300px;
  }

  .video-overlay {
    padding: 15px;
  }

  .video-title {
    font-size: 1.5rem;
  }

  .video-description {
    font-size: 1rem;
  }

  #introMessage {
    padding: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #container2 {
    padding: 20px;
  }

  #productGrid2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #container3 {
    padding: 20px;
  }

  #categoryButtons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .category-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  #productGrid {
    gap: 20px;
    padding: 20px 0;
  }

  .card {
    width: 300px;
  }

  #container4 footer {
    padding: 20px;
    text-align: center;
  }

  .footer-icons {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .menu-bar {
    padding: 0 15px;
  }

  .menu-bar .logo {
    height: 45px;
  }

  .video-container {
    height: 250px;
  }

  .video-title {
    font-size: 1.2rem;
  }

  .video-description {
    font-size: 0.9rem;
  }

  #introMessage h2 {
    font-size: 1.5rem;
  }

  #introMessage > p {
    font-size: 0.9rem;
  }

  .feature-item {
    padding: 15px;
  }

  .feature-item i {
    font-size: 1.5rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  #container2 h2 {
    font-size: 1.5rem;
  }

  #container2 p {
    font-size: 0.9rem;
  }

  .collection-card {
    padding: 15px;
  }

  .collection-title {
    font-size: 1.1rem;
  }

  .collection-description {
    font-size: 0.9rem;
  }

  #container3 h2 {
    font-size: 1.5rem;
  }

  .category-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .card {
    width: 280px;
    padding: 15px;
  }

  .card h3.card-link {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  .card .reserve-btn,
  .card .details-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .modal-content {
    width: 90%;
    max-width: none;
    margin: 20px auto;
    padding: 15px;
  }

  .modal-content h2 {
    font-size: 1.3rem;
  }

  .modal-content p {
    font-size: 0.9rem;
  }

  .modal-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
  .video-container {
    height: -webkit-fill-available;
  }
}

/* === HERO/INTRO SECTION === */
/* Edit for video and intro message */
#container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 48px 0 40px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  min-height: 920px;
  position: relative;
  overflow: hidden;
}

#container1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000, #333);
}

.video-container {
  position: relative;
  width: 1020px;
  height: 920px;
  margin: 0 30px 0 0;
  border-radius: 24px;
  border-color: #56585c;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  background: #000;
  border: 3px solid #222;
  padding: 20px;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: #000;
  transition: transform 0.3s ease;
}

.video-container:hover video {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg,rgba(0,0,0,0.8) 0%,rgba(0,0,0,0.4) 50%,rgba(0,0,0,0.1) 100%);
  color: #fff;
  padding: 24px 24px 20px 24px;
  border-radius: 0 0 16px 16px;
}

.video-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  margin: 0 0 6px 0;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-description {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
  opacity: 0.9;
}

.video-controls {
  display: flex;
  gap: 12px;
}

.video-control-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.video-control-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#introMessage {
  max-width: 420px;
  margin: 0;
  padding: 40px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border: 2px solid #222;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#introMessage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007dd1, #005fa3);
}

#introMessage:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.16);
  transform: translateY(-6px);
}

#introMessage h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #111;
  text-align: center;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  line-height: 1.2;
}

#introMessage > p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
  text-align: center;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
  flex: 1;
  overflow-y: auto;
  padding-right: 12px;
}

.feature-item {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #007dd1, #005fa3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border-color: #007dd1;
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-item i {
  font-size: 32px;
  color: #007dd1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0,125,209,0.15);
}

.feature-item:hover i {
  background: linear-gradient(135deg, #007dd1 0%, #005fa3 100%);
  color: #fff;
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0,125,209,0.3);
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 12px 0;
  font-family: 'Roboto Slab', serif;
}

.feature-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1500px) {
  #container1 {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .video-container {
    margin: 0 0 30px 0;
    width: 90%;
    height: auto;
    aspect-ratio: 16/9;
  }

  #introMessage {
    width: 90%;
    max-width: 800px;
    margin: 0;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* === COLLECTIONS SECTION === */
#container2 {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 32px;
  padding: 56px 0 48px 0;
  margin: 0 0 56px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#container2:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

#container2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000, #333);
  transition: all 0.4s ease;
}

#container2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 125, 209, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 125, 209, 0.03) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#container2:hover::after {
  opacity: 1;
}

#container2 h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 46px;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#container2:hover h2 {
  transform: scale(1.02);
  color: #000;
}

#container2 h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #000, #333);
  border-radius: 2px;
  transition: all 0.4s ease;
}

#container2:hover h2::after {
  background: linear-gradient(90deg, #007bff, #0056b3);
  width: 120px;
}

#container2 p {
  font-size: 19px;
  margin-bottom: 48px;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 500;
  transition: all 0.4s ease;
}

#container2:hover p {
  color: #333;
  transform: translateY(-2px);
}

#productGrid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 140px 150px 140px 100px;
  justify-content: start;
  align-items: stretch;
}

.collection-card {
  max-width: 300px;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border: 2px solid #000;
  padding: 80px 56px;
  margin: 0;
  text-decoration: none;
  color: #000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
}

.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.08), rgba(0,0,0,0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.collection-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000, #333);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  border-color: #007bff;
}

.collection-card:active {
  transform: translateY(-8px) scale(0.98);
  transition: all 0.1s ease;
}

.collection-card:hover::before {
  opacity: 1;
}

.collection-card:hover::after {
  transform: scaleX(1);
}

.collection-image {
  display: block;
  margin: 0 0 36px 0;
  width: 100%;
  max-width: 380px;
  height: 300px;
  object-fit: contain;
  border-radius: 20px;
}

.collection-card:hover .collection-image {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.collection-content {
  width: 100%;
  text-align: left;
  padding: 0 20px;
}

.collection-title {
  font-size: 26px;
  font-family: 'Roboto Slab', serif;
  margin: 0 0 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-weight: 700;
}

.collection-title i {
  font-size: 20px;
  color: #000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-title i {
  transform: translateX(6px) scale(1.1);
}

.collection-description {
  font-size: 17px;
  margin-bottom: 28px;
  color: #444;
  line-height: 1.7;
  padding: 0 12px;
  font-weight: 500;
}

.collection-price {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.collection-price i {
  font-size: 18px;
}



/* Responsive Adjustments */
@media (max-width: 1400px) {
  #productGrid2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 90px;
    max-width: 1400px;
    padding: 120px 120px 120px 80px;
  }
}

@media (max-width: 1200px) {
  #productGrid2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 900px;
    padding: 100px 100px 100px 70px;
  }
}

@media (max-width: 768px) {
  #productGrid2 {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 350px;
    padding: 60px 70px 60px 50px;
  }
}

/* === PRODUCTS SECTION === */
#container3 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 32px;
  padding: 28px 0;
  margin: 0 0 0 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#container3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000, #333);
}

#container3 h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 46px;
  color: #222;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  font-weight: 700;
}

#container3 h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #000, #333);
  border-radius: 2px;
}

#container3 p {
  font-size: 19px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 500;
}

/* Enhanced Category Buttons */
#categoryButtons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.category-btn {
  background: linear-gradient(135deg, #000 0%, #222 100%);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.6px;
}

.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #222 0%, #000 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* --- ENHANCED PRODUCT CAROUSEL: ONE LINE --- */
.carousel-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  white-space: nowrap;
  position: relative;
  padding-bottom: 16px;
}

#productGrid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px; /* Increase gap if you want more space */
  justify-content: center; /* fallback for centering */
  width: auto;
  min-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  box-sizing: border-box;
  margin: 0;
  padding: 40px 0 24px 0;
  scrollbar-width: none; /* Firefox */
}
#productGrid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  #productGrid {
    gap: 18px;
    padding: 24px 0 12px 0;
  }
  .carousel-container {
    padding-bottom: 8px;
  }
}

@media (max-width: 480px) {
  #productGrid {
    gap: 10px;
    padding: 12px 0 6px 0;
  }
  .carousel-container {
    padding-bottom: 4px;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.carousel-btn:hover i {
  transform: scale(1.2);
}

.carousel-prev {
  left: 0;
  position: absolute;
}

.carousel-next {
  right: 0;
  position: absolute;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.8);
}

.carousel-btn:disabled:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Enhanced Product Grid */
#productGrid.centered {
  justify-content: center !important;
}

/* Enhanced Product Cards */
.card {
  background-color: #f9fafb;
  color: #111827;
  padding: 2.5rem 2rem 2.5rem 2rem; /* Increased padding */
  border-radius: 1.5rem;
  border: 1.5px solid #d1d5db;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  width: 400px; /* Increased width */
  min-width: 400px;
  min-height: 600px;
}

.card:hover {
  border-color: #000000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  z-index: 10;
}

.card img {
  width: 200px;
  height: 300px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease;
  border: none;
  display: block;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.08), rgba(0,0,0,0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000000, #333333);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  border-color: #000000;
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  transform: scaleX(1);
}

.card-link {
  color: #000000 !important;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px 0;
  text-align: center;
  font-family: 'Roboto Slab', serif;
  line-height: 1.3;
}

.card-price {
  background: transparent;
  color: #ff0000;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 0px 0;
  text-align: center;
  display: block;
  border-radius: 24px;
  z-index: 3;
  transition: none;
  letter-spacing: 0.6px;
  box-shadow: none;
  position: static;
}

.card .details-btn {
  position: static;
  margin: 32px auto 0 auto;
  display: block;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  z-index: 10;
  letter-spacing: 0.6px;
  min-width: 120px;
  text-align: center;
  pointer-events: auto;
}

.card .details-btn:hover {
  background: #333;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card .details-btn:active {
  transform: scale(0.95);
}

.card .reserve-btn {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 16px;
  position: absolute;
  bottom: 8px;
  left: 65%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #000000, #333333);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  z-index: 10;
  font-weight: 700;
  min-width: 90px;
  text-align: center;
  letter-spacing: 0.6px;
  pointer-events: auto;
}

.card .reserve-btn:hover {
  background: linear-gradient(135deg, #333333, #555555);
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card .reserve-btn:active {
  transform: translateX(-50%) scale(0.95);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  #container3 {
    padding: 32px 0;
  }

  #container3 h2 {
    font-size: 32px;
  }

  #container3 p {
    font-size: 16px;
    padding: 0 20px;
  }

  #categoryButtons {
    gap: 12px;
    margin-bottom: 32px;
  }

  .category-btn {
    padding: 12px 28px;
    font-size: 15px;
  }

  .carousel-container {
    padding: 0;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 16px;
  }



  .card {
    padding: 32px 24px 140px 24px;
    width: 320px;
    min-width: 320px;
  }

  .card img {
    height: 280px;
    margin-bottom: 32px;
    padding: 24px;
  }

  .card h3.card-link {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 0 12px;
    color: #000000 !important;
  }

  .card p {
    margin-bottom: 28px;
    padding: 0 12px;
  }

  .card-price {
    font-size: 22px;
    padding: 10px 28px;
  }
}

@media (max-width: 480px) {
  #container3 {
    padding: 24px 0;
  }

  #container3 h2 {
    font-size: 28px;
  }

  #categoryButtons {
    gap: 8px;
    margin-bottom: 24px;
  }

  .category-btn {
    padding: 10px 24px;
    font-size: 14px;
  }

  .carousel-container {
    padding: 0;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn i {
    font-size: 14px;
  }



  .card {
    padding: 24px 20px 120px 20px;
    width: 280px;
    min-width: 280px;
  }

  .card img {
    height: 240px;
    margin-bottom: 24px;
    padding: 20px;
  }

  .card h3.card-link {
    font-size: 18px;
    margin-bottom: 16px;
    padding: 0 8px;
    color: #000000 !important;
  }

  .card p {
    margin-bottom: 24px;
    padding: 0 8px;
  }

  .card-price {
    font-size: 20px;
    padding: 8px 24px;
  }

  .card-badge {
    top: 24px;
    right: 24px;
  }
}

/* === MODAL STYLES === */
.modal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: linear-gradient(120deg, rgba(0,125,209,0.15) 0%, rgba(0,0,0,0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px) saturate(120%);
  animation: modalFadeIn 0.5s;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal.show {
  opacity: 1;
}

.modal-content,
.care-modal .modal-content {
  margin: 32px auto;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: rgba(255,255,255,0.92);
  padding: 40px 32px 32px 32px;
  border-radius: 28px;
  width: 92%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,125,209,0.13), 0 2px 8px rgba(0,0,0,0.08);
  border: 1.5px solid #e0e7ef;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  animation: modalPopIn 0.5s;
  transform: none;
  scrollbar-width: thin;
  scrollbar-color: #cccccc #f4f4f4;
}

@keyframes modalPopIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95);}
  to   { opacity: 1; transform: translateY(0) scale(1);}
}

/* Call Us Modal Specific Styles */
#callModal .modal-content {
  max-width: 400px;
  padding: 40px 36px;
  border-radius: 24px;
  text-align: center;
}

#callModal .modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #007dd1;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
}

#callModal .modal-content p {
  font-size: 1.2rem;
  margin: 12px 0;
  color: #333;
  font-weight: 500;
}

/* Adjust close button for callModal */
#callModal .close {
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: #007dd1;
  background: rgba(0,125,209,0.1);
  border: 1px solid #007dd1;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

#callModal .close:hover {
  background: #007dd1;
  color: #fff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 4px 12px rgba(0,125,209,0.3);
}

.modal.show .modal-content {
  opacity: 1;
}

.modal .close:hover {
  color: #fff;
  background: #111;
  transform: rotate(90deg);
}

/* Enhanced Modal Design, Style, and UX */
.modal,
.care-modal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: linear-gradient(120deg, rgba(0,125,209,0.10) 0%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(8px) saturate(120%);
  animation: modalFadeIn 0.5s;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal.show,
.care-modal.show {
  display: block;
  opacity: 1;
}

/* Modal Close Button: modern, larger, hover effect */
.modal .close,
.care-modal .care-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  font-weight: bold;
  color: #007dd1;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,125,209,0.07);
  border: 1.5px solid #e0e7ef;
  box-shadow: 0 2px 8px rgba(0,125,209,0.07);
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  z-index: 10;
}

.modal .close:hover,
.care-modal .care-modal-close:hover {
  background: #007dd1;
  color: #fff;
  transform: scale(1.12) rotate(90deg);
  box-shadow: 0 4px 16px rgba(0,125,209,0.18);
}

/* Modal Headings */
.modal-content h2,
.care-modal .modal-content h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem;
  color: #007dd1;
  margin-top: 0;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,125,209,0.07);
}

/* Modal Paragraphs */
.modal-content p,
.care-modal .modal-content p {
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.7;
}

/* Modal Form Groups */
.modal .form-group label {
  color: #007dd1;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

.modal .form-group input,
.modal .form-group textarea {
  border: 2px solid #e0e7ef;
  background: #f8fbff;
  border-radius: 12px;
  font-size: 1rem;
  padding: 12px 16px;
  margin-bottom: 8px;
  transition: border 0.3s, box-shadow 0.3s;
}

.modal .form-group input:focus,
.modal .form-group textarea:focus {
  border-color: #007dd1;
  box-shadow: 0 0 0 3px rgba(0,125,209,0.12);
  background: #fff;
}

/* Modal Buttons: bolder, full-width on mobile, animated */
.modal-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.modal-btn {
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: linear-gradient(90deg, #007dd1 0%, #005fa3 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,125,209,0.13);
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.modal-btn.cancel-btn {
  background: #f8f9fa;
  color: #007dd1;
  border: 2px solid #e0e7ef;
}

.modal-btn.confirm-btn {
  background: linear-gradient(90deg, #007dd1 0%, #005fa3 100%);
  color: #fff;
}

.modal-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(0,125,209,0.18);
  filter: brightness(1.08);
}

.modal-btn.cancel-btn:hover {
  background: #e9ecef;
  color: #005fa3;
  border-color: #007dd1;
}

.modal-btn.confirm-btn:hover {
  background: linear-gradient(90deg, #005fa3 0%, #007dd1 100%);
  color: #fff;
}

/* Modal List Styles (Care Modal) */
.care-modal ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.care-modal ul li {
  padding: 10px 0 10px 28px;
  color: #444;
  font-size: 1rem;
  position: relative;
}

.care-modal ul li:before {
  content: "✔";
  color: #007dd1;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
}

/* Modal Responsive Enhancements */
@media (max-width: 600px) {
  .modal-content,
  .care-modal .modal-content {
    padding: 18px 6vw 18px 6vw;
    border-radius: 16px;
    width: 98vw;
    max-width: 99vw;
  }
  .modal .close,
  .care-modal .care-modal-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .modal-content h2,
  .care-modal .modal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .modal-btn,
  .modal-btn.cancel-btn,
  .modal-btn.confirm-btn {
    width: 100%;
    padding: 13px 0;
    font-size: 1rem;
  }
  .modal-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Modal Scrollbar Styling */
.modal-content,
.care-modal .modal-content {
  scrollbar-width: thin;
  scrollbar-color: #cccccc #f4f4f4;
}

.modal-content::-webkit-scrollbar,
.care-modal .modal-content::-webkit-scrollbar {
  width: 7px;
}

.modal-content::-webkit-scrollbar-thumb,
.care-modal .modal-content::-webkit-scrollbar-thumb {
  background: #cccccc;
  border-radius: 8px;
}

.modal-content::-webkit-scrollbar-track,
.care-modal .modal-content::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 8px;
}

/* Center the product image in the reserve modal */
#reserveModal .modal-product-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  max-width: 80%;
  height: auto;
}

.admin-btn {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.admin-btn:hover {
  color: #007dd1;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.admin-btn i {
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.admin-btn:hover i {
  color: #007dd1;
  transform: scale(1.2);
  animation: iconPulse 1s infinite;
}

.details-modal-content {
  width: 700px;
  max-width: 98vw;
  min-width: 320px;
  margin: 32px auto;
  overflow-y: visible !important;
  max-height: none !important;
}

@media (max-width: 800px) {
  .details-modal-content {
    width: 98vw;
    min-width: unset;
  }
}



.proceed-btn {
  background: #111 !important;
  color: #fff !important;
}
.proceed-btn:hover {
  background: #007dd1 !important;
  color: #fff !important;
}

/* --- ENHANCED CUSTOMER CARE MODAL STYLES --- */
.care-modal .care-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px 12px 32px;
  border-bottom: 1px solid #f0f0f0;
  background: transparent;
}
.care-modal .care-modal-icon {
  font-size: 2.2rem;
  color: #007dd1;
  margin-right: 16px;
  display: flex;
  align-items: center;
}
.care-modal .care-modal-title {
  flex: 1;
  font-size: 1.5rem;
  color: #222;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  margin: 0;
}
.care-modal .care-modal-close {
  background: #fff;
  color: #222;
  border: 1.5px solid #e0e0e0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  margin-left: 16px;
  outline: none;
}
.care-modal .care-modal-close:hover, .care-modal .care-modal-close:focus {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: scale(1.08) rotate(90deg);
}
.care-modal-content {
  max-width: 420px;
  width: 95%;
  margin: 48px auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 48px rgba(0,125,209,0.13), 0 2px 8px rgba(0,0,0,0.08);
  padding: 0 0 32px 0;
  animation: modalPopIn 0.5s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.care-modal .care-modal-body {
  padding: 24px 32px 0 32px;
  color: #333;
  font-size: 1.08rem;
  line-height: 1.7;
}
.care-modal .care-modal-body ul {
  margin: 12px 0 0 18px;
  padding: 0;
}
.care-modal .care-modal-body li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.care-modal .contact-info p,
.care-modal .order-steps p,
.care-modal .returns-info p,
.care-modal .warranty-info p {
  margin-bottom: 10px;
  font-size: 1.08rem;
}
@media (max-width: 600px) {
  .care-modal-content {
    max-width: 98vw;
    padding: 0 0 16px 0;
  }
  .care-modal .care-modal-header,
  .care-modal .care-modal-body {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.care-modal {
  animation: fadeInModalBg 0.4s;
}
@keyframes fadeInModalBg {
  from { background: rgba(0,0,0,0); }
  to   { background: linear-gradient(120deg, rgba(0,125,209,0.15) 0%, rgba(0,0,0,0.6) 100%); }
}

.carousel-hidden { display: none !important; }

.card {
  max-width: 350px;
  width: 100%;
}

/* Make .card bigger for dropdown/carousel context */
.card {
  width: 440px;
  min-width: 440px;
  min-height: 620px;
}

@media (max-width: 768px) {
  .card {
    width: 340px;
    min-width: 340px;
    min-height: 480px;
  }
}

@media (max-width: 480px) {
  .card {
    width: 95vw;
    min-width: unset;
    min-height: 340px;
  }
}

/* Dropdown Products Grid: 4x4 Layout */
.dropdown-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .dropdown-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .dropdown-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 0;
  }
}

/* --- RESPONSIVE ENHANCEMENTS FOR MOBILE DEVICES --- */

/* Make the main container and form padding smaller on mobile */
@media (max-width: 768px) {
  .reservations-container {
    padding: 10px 4px;
    max-width: 100vw;
  }
  .reservation-form {
    padding: 0;
    margin-bottom: 24px;
  }
  .form-section {
    padding: 18px 6px;
    margin-bottom: 18px;
  }
  .page-header {
    padding: 18px 6px;
    border-radius: 12px;
  }
  .page-header h1 {
    font-size: 24px;
    padding-bottom: 8px;
  }
  .page-header p {
    font-size: 14px;
  }
}

/* Product grid: single column on mobile */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .product-card {
    padding: 12px 6px;
    border-radius: 12px;
    min-width: 0;
  }
  .product-card .product-image img {
    width: 100px;
    height: 100px;
    padding: 8px;
  }
}

/* Category buttons: wrap and fill width */
@media (max-width: 768px) {
  .category-buttons-container {
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .category-heading {
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 10px;
    min-width: 80px;
    flex: 1 1 40%;
    margin-bottom: 4px;
  }
}

/* Form fields and buttons: full width on mobile */
@media (max-width: 768px) {
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100% !important;
    font-size: 15px;
    padding: 10px 8px;
    border-radius: 8px;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .next-btn,
  .prev-btn,
  .submit-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    justify-content: center;
  }
}

/* Selection counter: stack vertically */
@media (max-width: 768px) {
  #selectionCounter {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 8px;
    gap: 6px;
    border-radius: 10px;
  }
}

/* Modals: full width, scrollable, touch-friendly */
@media (max-width: 768px) {
  .modal-content {
    width: 98vw !important;
    max-width: 98vw !important;
    min-width: 0 !important;
    padding: 10px 4px !important;
    border-radius: 10px !important;
    font-size: 15px;
    overflow-y: auto;
    max-height: 90vh;
  }
  .modal-header h2, .modal-header h3 {
    font-size: 18px !important;
  }
  .modal-footer button {
    width: 100%;
    font-size: 15px;
    border-radius: 8px;
    margin-bottom: 6px;
  }
}

/* Make image previews smaller on mobile */
@media (max-width: 768px) {
  #imagePreview img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 8px;
  }
}

/* Reduce padding for confirmation list */
@media (max-width: 768px) {
  #confirmationList li {
    gap: 10px;
    padding: 10px 6px;
    border-radius: 8px;
    font-size: 14px;
  }
  #confirmationList img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
  }
}

/* Make sure modals are always on top and scrollable */
.modal {
  z-index: 9999 !important;
  overflow-y: auto;
}

/* Ensure all text is readable on small screens */
@media (max-width: 480px) {
  body, input, textarea, select, button {
    font-size: 14px !important;
  }
  .page-header h1 {
    font-size: 18px !important;
  }
  .category-heading {
    font-size: 10px !important;
    padding: 4px 6px !important;
  }
}

/* Hide mobile nav and hamburger by default */
.mobile-nav, .mobile-nav-toggle {
  display: none;
}

/* Show hamburger and mobile nav on mobile */
@media (max-width: 768px) {
  .menu-wrapper, .menu-bar ul {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin: 10px 10px 0 auto;
    z-index: 10001;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .mobile-nav-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #000;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    top: 0; right: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s;
    z-index: 10000;
    padding: 40px 20px 20px 20px;
  }
  .mobile-nav.open {
    transform: translateX(0);
  }
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-nav ul li {
    margin-bottom: 24px;
  }
  .mobile-nav ul li a {
    color: #000;
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  /* Overlay for menu */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.3);
    z-index: 9999;
  }
  .mobile-nav.open ~ .mobile-nav-overlay {
    display: block;
  }
  /* Hide desktop nav on mobile */
  .menu-wrapper, .menu-bar ul {
    display: none !important;
  }
}

/* --- COLLECTION CARDS: MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  #productGrid2 {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 32px 0 32px 0 !important;
    max-width: 98vw !important;
  }
  .collection-card {
    max-width: 98vw !important;
    min-width: 0 !important;
    min-height: 340px !important;
    padding: 32px 12px !important;
    margin: 0 auto 0 auto !important;
  }
  .collection-image {
    max-width: 90vw !important;
    height: 180px !important;
    object-fit: contain !important;
    margin-bottom: 18px !important;
  }
  .collection-title {
    font-size: 1.2rem !important;
  }
  .collection-description {
    font-size: 1rem !important;
  }
  .collection-price {
    font-size: 1.1rem !important;
    padding: 10px !important;
  }
}
@media (max-width: 480px) {
  .collection-card {
    padding: 18px 4px !important;
  }
  .collection-image {
    height: 120px !important;
  }
}

/* --- PRODUCT CARDS: MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  .card {
    width: 98vw !important;
    min-width: 0 !important;
    min-height: 340px !important;
    padding: 18px 4px 100px 4px !important;
    margin: 0 auto 0 auto !important;
  }
  .card img {
    width: 90vw !important;
    height: 180px !important;
    margin-bottom: 12px !important;
    padding: 0 !important;
  }
  .card-link {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }
  .card-price {
    font-size: 1rem !important;
    padding: 6px 10px !important;
  }
  .card .details-btn, .card .reserve-btn {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 1rem !important;
    padding: 10px 0 !important;
    margin: 10px 0 0 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: static !important;
  }
}
@media (max-width: 480px) {
  .card {
    padding: 10px 2px 60px 2px !important;
  }
  .card img {
    height: 120px !important;
  }
}

/* --- NAVIGATION MODAL FOR MOBILE --- */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin: 10px 10px 0 auto;
    z-index: 10001;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .menu-bar, .menu-wrapper, .menu-bar ul {
    display: none !important;
  }
  .nav-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, rgba(0,125,209,0.10) 0%, rgba(0,0,0,0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(8px) saturate(120%);
    animation: modalFadeIn 0.5s;
    justify-content: center;
    align-items: center;
  }
  .nav-modal.show {
    display: flex !important;
    opacity: 1 !important;
  }
  .nav-modal-content {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0,125,209,0.13), 0 2px 8px rgba(0,0,0,0.08);
    padding: 32px 18px 24px 18px;
    width: 92vw;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalPopIn 0.5s;
  }
  .nav-modal-content .close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 32px;
    font-weight: bold;
    color: #007dd1;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,125,209,0.07);
    border: 1.5px solid #e0e7ef;
    box-shadow: 0 2px 8px rgba(0,125,209,0.07);
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    z-index: 10;
  }
  .nav-modal-content .close:hover {
    background: #007dd1;
    color: #fff;
    transform: scale(1.12) rotate(90deg);
    box-shadow: 0 4px 16px rgba(0,125,209,0.18);
  }
  .mobile-nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .mobile-nav-links > ul > li {
    margin-bottom: 18px;
    text-align: center;
  }
  .mobile-nav-links a {
    color: #007dd1;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
    background: rgba(0,125,209,0.05);
    margin-bottom: 6px;
  }
  .mobile-nav-links a:hover {
    background: #007dd1;
    color: #fff;
  }
  .nav-modal-section-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 18px 0 8px 0;
    text-align: center;
  }
  .mobile-nav-links ul ul {
    margin-bottom: 10px;
  }
  .mobile-nav-links ul ul li {
    margin-bottom: 0;
  }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
  .mobile-nav-toggle {
    display: none !important;
  }
  .nav-modal {
    display: none !important;
  }
}

.card {
  width: 95vw;
  min-width: unset;
  min-height: 340px;
  /* ...mobile styles... */
}
@media (min-width: 481px) {
  .card {
    width: 340px;
    min-width: 340px;
    min-height: 480px;
  }
}
@media (min-width: 769px) {
  .card {
    width: 440px;
    min-width: 440px;
    min-height: 620px;
  }
}

/* --- MODAL ALWAYS ON TOP OF HEADER/NAVIGATION --- */
.modal, .modal.show, .care-modal, .care-modal.show {
  z-index: 100010 !important;
  position: fixed !important;
}



