/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f7f7f7;
  color: #111;
  overflow-x: hidden;
}

/* Top Announcement / Info Bar */
.top-info-bar {
  background-color: #000000;
  color: #cccccc;
  font-size: 0.75rem;
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.5px;
}

.top-info-bar a {
  color: #ffffff;
  text-decoration: none;
}

.top-info-left,
.top-info-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Site Header */
.site-header {
  background-color: #0d0d0d;
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: #fff;
}

.brand-logo {
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.2s ease;
}

.header-actions a:hover {
  opacity: 0.7;
}

.bag-text {
  font-size: 0.85rem;
  margin-left: 4px;
  letter-spacing: 1px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 12px 20px;
  background-color: #0d0d0d;
  flex-wrap: wrap;
}

.nav-link {
  color: #d1d1d1;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.search-link {
  margin-left: 15px;
}

/* Hero Banner Section */
.hero-section {
  position: relative;
  width: 100vw;
  height: calc(100vh - 140px);
  overflow: hidden;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-title {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 6px;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: rgba(13, 13, 13, 0.85);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #ffffff;
  color: #0d0d0d;
}

/* Collection Header & Product Grid Layouts */
.collection-header {
  text-align: center;
  padding: 50px 20px 30px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
}

.collection-header h1 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.collection-header p {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 1px;
}

.catalog-container {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-image-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.04);
}

.product-info {
  padding: 18px 15px;
  text-align: center;
}

.product-info h3 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: #111;
}

/* Location Section */
.location-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-top: 1px solid #eee;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-details h2 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.location-details p {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-details p i {
  font-size: 1.2rem;
  color: #111;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background-color: #0d0d0d;
  color: #888;
  text-align: center;
  padding: 25px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sales Notification (Bottom-Left Card) */
.sales-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 2000;
  max-width: 320px;
}

.pop-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 2px;
}

.pop-info {
  display: flex;
  flex-direction: column;
}

.pop-tagline {
  font-size: 0.7rem;
  color: #666;
}

.pop-product {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 2px 0;
}

.pop-time {
  font-size: 0.65rem;
  color: #888;
}

.close-pop {
  position: absolute;
  top: 4px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #999;
  cursor: pointer;
}

/* Mobile Hero Banner Optimization */
@media (max-width: 768px) {
  .hero-section {
    min-height: 50vh; /* Reduces cover height so content below is visible */
    padding: 60px 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}
/* Mobile Optimization Fixes */
@media (max-width: 768px) {
  /* 1. Fix Huge Header */
  header.site-header {
    position: relative; /* Unsticks header on mobile so it doesn't block scrolling */
    padding: 10px 15px;
  }

  .main-nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto; /* Horizontal scrollable menu bar */
    white-space: nowrap;
    gap: 15px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav ul::-webkit-scrollbar {
    display: none; /* Hide scrollbar for clean look */
  }

  /* 2. Fix Cropped Images */
  .product-card img,
  .hero-bg {
    height: 280px;
    object-fit: contain; /* Prevents cropping, shows full item */
    background-color: #f9f9f9; /* Subtle backdrop for transparent/padded images */
  }
}
/* Mobile Optimization & Responsive Fixes */
@media (max-width: 768px) {
  /* Prevent Header from Blocking Mobile Screen */
  header.site-header {
    position: relative;
    padding: 10px 15px;
  }

  .main-nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    gap: 15px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav ul::-webkit-scrollbar {
    display: none;
  }

  /* Compact Product Grid & Image Containment for Phones */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .product-card img {
    height: 180px;
    width: 100%;
    object-fit: contain;
    background-color: #f9f9f9;
    border-radius: 4px;
  }

  .product-info h3 {
    font-size: 0.9rem;
    margin: 6px 0 2px;
  }
}
/* Card & Image Container Fix */
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}

.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover; /* Keeps aspect ratio clean without stretching */
  display: block;
}

/* Ensure Grid Doesn't Overflow */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  width: 100%;
}
