:root {
  --gold: #D4AF37;
  --gold-light: #F4E5C3;
  --gold-dark: #B8941F;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --shadow: rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.html{
  overflow-x: hidden;
}
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 200;
}

h2 {
  font-size: 2.5rem;
  font-weight: 300;
}

h3 {
  font-size: 1.5rem;
}

/* Navigation */
nav {
  background-color: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gold-light);
  position: relative;
  z-index: 3000; /* ensures nav is above hero */
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 3rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

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

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

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 8px 24px var(--shadow);
  padding: 1rem 0;
  margin-top: 0;
  padding-top: 1rem; /* creates visual space without breaking hover */
  z-index: 1000;
  border-top: 2px solid var(--gold);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  text-align: center;
}

.dropdown-content a::after {
  display: none;
}

.dropdown-content a:hover {
  background-color: var(--gold-light);
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 4000;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background-color: var(--black);
  transition: all 0.3s ease;
}

/* X Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 200;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background-color: var(--gold);
  color: var(--black);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Brand Ribbon */
.brand-ribbon {
  background-color: var(--black);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.ribbon-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.ribbon-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.brand-item {
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 4rem;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Collections Section */
.collections-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4rem;
  color: var(--black);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 450px;
  background-color: var(--gray);
  border: 1px solid var(--gold-light);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 2.5rem 2rem;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(212,175,55,0.95), rgba(212,175,55,0.7));
}

.collection-overlay h3 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Full Width Banner */
.delivery-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 4rem 0;
}

.delivery-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.delivery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.delivery-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
}

.delivery-content h2 {
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Latest Collection Scroll */
.latest-collection {
  padding: 6rem 0;
  background-color: var(--gray);
}

.scroll-container {
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
}

.scroll-track {
  display: flex;
  animation: scrollProducts 40s linear infinite;
  width: fit-content;
}

.scroll-content {
  display: flex;
  gap: 2rem;
}

.product-scroll-item {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--gold-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-scroll-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px var(--shadow);
}

.product-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-scroll-item:hover img {
  transform: scale(1.1);
}

@keyframes scrollProducts {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Browse Page */
.browse-page {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 60vh;
}

.page-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4rem;
  color: var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3rem;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--gold-light);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow);
  border-color: var(--gold);
}

.product-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: var(--gray);
}

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

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

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-dark);
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
  fill: var(--gold);
}

.cart-icon:hover {
  transform: scale(1.15);
}

.cart-counter {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  min-width: 20px;
  text-align: center;
}

.delete-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  fill: var(--black);
  opacity: 0.6;
}

.delete-icon:hover {
  transform: scale(1.15);
  opacity: 1;
}

/* About Page */
.about-page {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  margin-bottom: 4rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  text-align: justify;
  margin-bottom: 2rem;
}

.map-container {
  width: 100%;
  height: 500px;
  margin: 4rem 0;
  border: 2px solid var(--gold-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.newsletter-section {
  background-color: var(--gray);
  padding: 4rem 3rem;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  margin: 4rem 0;
}

.newsletter-section h3 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.newsletter-section p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gold-light);
  background-color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-button {
  padding: 1rem 2.5rem;
  background-color: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.newsletter-button:hover {
  background-color: transparent;
  color: var(--gold);
}

/* Footer */
footer {
  background-color: var(--black);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hamburger {
  display: flex;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 3500; /* above hero */
  }

  .nav-menu.active {
    right: 0;
  }

  body.no-scroll {
    overflow: hidden;
  }

  .dropdown-content {
    position: static;
    transform: none;
    box-shadow: none;
    margin-top: 0.5rem;
    border-top: none;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .brand-item {
    font-size: 1.2rem;
    margin: 0 2rem;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .delivery-content h2 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
