@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

/* Reset */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Header - fixed top */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  padding: 25px 60px;
  z-index: 100;
}

.menu-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

.menu-btn, 
.search-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 0;
}

.search-btn:hover {
  text-decoration: underline;
}

/* Dropdown menu - hidden by default */
.nav-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: #111;
  width: 220px;
  padding: 15px 0;
  margin: 0;
  z-index: 100;
}

.nav-menu.active {
  display: block;
}

.nav-menu li a {
  display: block;
  padding: 12px 25px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.nav-menu li a:hover {
  color: #fff;
  background: #222;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  text-align: center;
  background: #000;
  padding-top: 140px;
}
.hero h2 { 
  font-size: 80px; 
  letter-spacing: 8px; 
  font-weight: 300; 
}
.hero p { 
  color: #aaa; 
  margin: 20px 0 40px; 
  font-size: 16px; 
  letter-spacing: 2px; 
}
.btn {
  border: 1px solid #fff; 
  padding: 14px 40px; 
  text-decoration: none; 
  color: #fff;
  letter-spacing: 2px; 
  font-size: 12px; 
  transition: all 0.3s;
}
.btn:hover { 
  background: #fff; 
  color: #000; 
}

/* Sections */
section { 
  padding: 100px 60px; 
}
section h2 { 
  font-size: 32px; 
  font-weight: 300; 
  letter-spacing: 3px; 
  text-align: center; 
  margin-bottom: 60px; 
}

/* Grid for product boxes */
.grid {
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
}
.box { 
  text-align: center; 
}
.box h3 { 
  margin-top: 15px; 
  font-size: 14px; 
  font-weight: 300; 
  letter-spacing: 1px; 
  color: #ccc; 
}

.img-box {
  width: 100%; 
  height: 450px;
  background-size: cover; 
  background-position: top;
}

/* Limited Drop images */
.limited0 { background-image: url('limited.jpg'); }
.limited1 { background-image: url('limited1.jpg'); }
.limited2 { background-image: url('limited2.jpg'); }
.limited3 { background-image: url('limited3.jpg'); }

/* Signature Piece */
.signature-box {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center;
  max-width: 1200px; 
  margin: 0 auto;
}
.signature-box .text h3 { 
  font-size: 28px; 
  font-weight: 300; 
  margin-bottom: 20px; 
}
.signature-box .text p { 
  color: #aaa; 
  margin-bottom: 30px; 
}
.btn-dark {
  border: 1px solid #fff; 
  padding: 12px 30px; 
  text-decoration: none; 
  color: #fff;
  font-size: 12px; 
  letter-spacing: 1px; 
  display: inline-block;
}
.btn-dark:hover { 
  background: #fff; 
  color: #000; 
}

/* Footer */
footer { 
  background: #0a0a0a;
  text-align: center; 
  padding: 80px 60px 40px; 
  color: #555; 
  font-size: 12px; 
  border-top: 1px solid #222;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
  text-align: left;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}

.footer-col a {
  display: block;
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.newsletter-container {
  max-width: 420px;
  text-align: left;
  padding: 0 0 30px 0;
  margin-top: -30px;
}

.newsletter-heading {
  text-transform: uppercase;
  font-size: 12px !important;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.2;
}

.newsletter {
  border: none !important;
  display: flex;
  gap: 0;
  max-width: 400px;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 10px 0;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  font-family: "Montserrat", sans-serif;
}

.newsletter input::placeholder {
  color: #666;
}

.newsletter button {
  background: transparent;
  border: none;
  border-bottom: 1px solid #C9A961;
  color: #C9A961;
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter button:hover {
  border-bottom-color: #fff;
}

.newsletter-desc {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 10px;
  line-height: 1.2;
  white-space: normal;
}

.newsletter-desc .underline {
  text-decoration: underline;
  color: #C9A961;
}

#newsletter-success {
  opacity: 0;
  visibility: hidden;
  transform: translateY(3px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #C9A961;
  letter-spacing: 0.3px;
  font-weight: 400;
}
#newsletter-success.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #222;
}

.footer-bottom p {
  color: #555;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Contact Page */
.dark-bg { background: #000; color: #fff; }
.contact-section {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: left;
}
.contact-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.contact-sub {
  color: #888;
  margin-bottom: 30px;
}
.contact-info {
  margin-bottom: 40px;
  color: #ccc;
  line-height: 1.8;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.contact-form button {
  padding: 12px 24px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
.contact-form button:hover {
  background: #ccc;
}

/* Limited Gallery */
.limited-gallery {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.limited-gallery img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .signature-box { grid-template-columns: 1fr; }
  .hero h2 { font-size: 50px; }
  .site-header { padding: 20px 30px; }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  footer {
    padding: 60px 30px 30px;
  }
}.search-wrap {
  position: relative;
}

#searchInput {
  position: absolute;
  top: 45px;
  left: 0;
  background: #222;
  border: 1px solid #444;
  color: #fff;
  padding: 10px 15px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  width: 250px;
  outline: none;
}.has-mega { position: relative; }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 700px;
  background: #111;
  border: 1px solid #333;
  padding: 30px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  z-index: 1000;
}

.has-mega:hover .mega-menu,
.has-mega.active .mega-menu { display: grid; }

.mega-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  color: #c9a961;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-col a {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
  text-decoration: none;
}

.mega-col a:hover { color: #c9a961; }

.mega-img { border-left: 1px solid #333; padding-left: 30px; }

@media (max-width: 768px) {
  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .mega-img { border-left: none; padding-left: 0; }
}.box.placeholder {
  background: #f0f0f0;
  border: 2px dashed #ccc;
  min-height: 300px; /* match your other images height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.box.placeholder::after {
  content: "Image coming soon";
  color: #999;
  font-size: 14px;
}.box.placeholder {
  background: #f0f0f0;
  border: 2px dashed #ccc;
  min-height: 300px; /* match your other images height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.box.placeholder::after {
  content: "Image coming soon";
  color: #999;
  font-size: 14px;
}.box img {
  width: 100%;
  height: 300px; /* match this to your other images */
  object-fit: cover;
  display: block;
}.box h3 {
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}.box {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.box img {
  width: 100%;
  height: 450px; /* pick a height you like */
  object-fit: contain;
  display: block;
}

.box h3 {
  margin-top: 12px;
  font-size: 16px;
}.size-selector {
  margin: 25px 0;
}

.size-selector p {
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.size-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-buttons button {
  padding: 10px 18px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.size-buttons button:hover {
  border-color: #000;
}

.size-buttons button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}.main-view img {
  width: 100%;
  height: 400px; /* was 500px */
  object-fit: contain; /* shows full image instead of cropping */
  border: 1px solid #ddd;
  background: #f5f5f5; /* adds gray bars if image doesn’t fill space */
}@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

.product-page {
  background: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  padding: 60px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.back-link {
  text-decoration: none;
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-container {
  display: flex;
  gap: 80px;
  margin-top: 50px;
}

.product-gallery {
  flex: 1.2;
}

.main-view img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #f8f8f8;
}

.thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #e0e0e0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.thumbnails img:hover {
  opacity: 1;
  border-color: #000;
}

.product-info {
  flex: 0.8;
  padding-top: 20px;
}

.product-info h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.price {
  font-size: 24px;
  font-weight: 400;
  margin: 30px 0;
}

.size-selector p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 15px;
}

.size-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.size-buttons button {
  padding: 12px 20px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}

.size-buttons button:hover {
  border-color: #000;
}

.size-buttons button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.add-to-cart {
  width: 100%;
  padding: 16px;
  background: #7a7a7a;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
  font-family: "Montserrat", sans-serif;
}

.add-to-cart:hover {
  background: #5a5a5a;
}.thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: cover; /* crops to fill the square */
  cursor: pointer;
  border: 1px solid #e0e0e0;
  opacity: 0.7;
}.thumbnails img {
  width: 70px;
  height: 70px;
  object-fit: contain; /* shows full image */
  background: #f8f8f8; /* fills empty space */
  cursor: pointer;
  border: 1px solid #e0e0e0;
  opacity: 0.7;
}.product-gallery {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f8f8f8;
}.product-container {
  display: flex;
  gap: 80px;
  margin-top: 50px;
  align-items: flex-start; /* keeps info at top */
}

.product-gallery {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f8f8f8;
}

.product-info {
  flex: 0.8;
  position: sticky; /* makes it stick while you scroll images */
  top: 60px;
}@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.product-page {
  background: #fff;
  color: #000;
  font-family: "Montserrat", sans-serif;
  padding: 40px 80px;
}

.back-link {
  text-decoration: none;
  color: #666;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-container {
  display: flex;
  gap: 80px;
  margin-top: 40px;
  align-items: flex-start;
}

/* Left side - stacked big images */
.product-gallery {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-gallery img {
  width: 100%;
  height: auto;
  display: block;
  background: #f8f8f8;
}

/* Right side - sticky info */
.product-info {
  flex: 0.8;
  position: sticky;
  top: 40px;
}

.product-info h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.description {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.price {
  font-size: 24px;
  font-weight: 400;
  margin: 30px 0;
}

.size-selector p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 15px;
}

.size-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.size-buttons button {
  padding: 12px 20px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s;
}

.size-buttons button:hover {
  border-color: #000;
}

.size-buttons button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.add-to-cart {
  width: 100%;
  padding: 16px;
  background: #7a7a7a;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  transition: background 0.2s;
}

.add-to-cart:hover {
  background: #5a5a5a;
}

/* Mobile: stack everything */
@media (max-width: 900px) {
  .product-container {
    flex-direction: column;
    gap: 40px;
  }
  .product-info {
    position: static;
  }
  .product-page {
    padding: 20px;
  }
}.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #000;
  color: #fff;
  padding: 14px 24px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 999;
}
.toast.show { opacity: 1; }
.limited-drop .grid .box {
  text-decoration: none;
  color: #c9a961;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: block;
  text-align: center;
}
.limited-drop .grid .box:hover {
  transform: translateY(-5px);
  border-color: #c9a961;
}
.limited-drop .grid .box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.limited-drop .grid .box h3 {
  margin: 15px 0 5px;
  font-size: 16px;
}
.limited-drop .grid .box .price {
  color: #fff;
  font-weight: 700;
  padding-bottom: 15px;
}
.mens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px); /* Luxury hover lift */
}

.product-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05); /* Zoom effect */
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #d4af37; /* Gold price */
  margin-bottom: 15px;
}

.size-select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  background: #222;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
}

.add-cart-btn {
  width: 100%;
  padding: 14px;
  background: #d4af37;
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.add-cart-btn:hover {
  background: #fff;
}
header h1 {
  color: #d4af37; /* Republeek gold */
  letter-spacing: 3px;
}
header h1 {
  background: linear-gradient(90deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}
header p {
  color: #d4af37;
  opacity: 0.8;
  font-size: 14px;
  letter-spacing: 1px;
}
.back-home-btn {
  position: absolute;
  left: 40px;
  top: 30px;
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid #d4af37;
  border-radius: 6px;
  transition: 0.3s;
}

.back-home-btn:hover {
  background: #d4af37;
  color: #000;
  transform: translateX(-5px); /* Slides left on hover */
}
@media (max-width: 768px) {
  .back-home-btn {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
  }
  header {
    text-align: center;
  }
}
/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #d4af37;
  padding: 16px 24px;
  border-radius: 10px;
  border: 1px solid #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
/* FIX: Cart + Login side by side */
.menu-wrap {
  display: flex;
  align-items: center;
}

.quick-access {
  position: static !important; /* kill the absolute positioning */
  order: 2; /* puts it before login icon */
  margin-left: 15px; /* space from menu */
}

#authIcon.account-btn {
  order: 3; /* login icon comes after cart */
  margin-left: 15px; /* space between cart + login */
}

/* Make cart icon same size as login */
.quick-icon svg {
  width: 20px !important;
  height: 15px !important;
  vertical-align: middle;
}
/* PUSH CART + LOGIN TO FAR RIGHT */
.quick-access {
  position: static !important;
  margin-left: auto !important; /* this pushes everything after it to the right */
  order: unset !important;
}

#authIcon.account-btn {
  margin-left: 15px !important; /* space between cart + login */
  order: unset !important;
}

/* Keep icons same size */
.quick-icon svg {
  width: 20px !important;
  height: 20px !important;
  vertical-align: middle;
}
/* MOBILE MENU POLISH */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%; /* hidden off screen */
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 25px;
    transition: left 0.4s cubic-bezier(0.77,0,0.175,1);
    z-index: 10000;
    box-shadow: 2px 0 20px rgba(0,0,0,0.5);
  }
  
  .nav-menu.active {
    left: 0; /* slide in */
  }
  
  .nav-menu li a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #222;
    display: block;
  }
  
  /* Overlay when menu open */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9999;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Close button inside menu */
  .close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #c9a961;
    background: none;
    border: none;
    cursor: pointer;
  }
}
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
  pointer-events: none; /* ADD THIS - lets clicks pass through when hidden */
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all; /* ADD THIS - blocks clicks only when active */
}
.product-card {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #c9a961;
  box-shadow: 0 12px 30px rgba(201, 161, 97, 0.25);
}

.product-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 161, 97, 0.2), transparent);
  transition: left 0.6s;
}

.product-card:hover::after {
  left: 100%;
}
/* REPUBLEEK BLACK & GOLD BOXES */
#collection .grid a.box {
  background: #000 !important;           
  border: 1px solid #333 !important;     
  border-radius: 12px !important;        
  padding: 15px !important;
  text-align: center !important;
  text-decoration: none !important;      
  color: #fff !important;                
  display: block !important;             
  transition: all 0.3s ease !important;  
}

#collection .grid a.box h3 {
  color: #fff !important;
  font-size: 1rem !important;
  margin: 12px 0 8px 0 !important;
  font-weight: 400 !important;
}

#collection .grid a.box .price {
  color: #c9a961 !important;             /* GOLD */
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

#collection .grid a.box img,
#collection .grid a.box .img-box {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;          
  border-radius: 8px !important;
  background: #111 !important;
}

#collection .grid a.box:hover {
  transform: translateY(-8px) !important;     
  border-color: #c9a961 !important;           
  box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3) !important;
}
/* NAVBAR STYLING - REPUBLEEK LUXURY NAV */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  border-bottom: 1px solid #222;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  color: #c9a961;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #c9a961;
}

.cart {
  color: #c9a961;
  font-weight: 700;
  cursor: pointer;
}

/* Push page content down so nav doesn't cover it */
body {
  padding-top: 80px;
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}
/* BACK TO HOME BAR FOR PRODUCT PAGES */
.back-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  border-bottom: 1px solid #222;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.back-bar a {
  color: #c9a961;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
}

.back-bar a:hover {
  color: #fff;
  transform: translateX(-5px);
}

.cart {
  color: #c9a961;
  font-weight: 700;
}

/* Keep body padding so content doesn't hide under bar */
body {
  padding-top: 80px;
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}