* {
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #fff; 
  color: #000;
  font-weight: 400;
  letter-spacing: 0.2px;
}
header {
  display: flex;
  justify-content: space-between; /* pushes logo left, nav right */
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO ON LEFT */
.logo {
  cursor: pointer;
}

.logo img {
  height: 55px; /* adjust size here. Try 45px - 70px */
  width: auto;
  display: block;
}

.main-nav {
  display: flex; 
  gap: 20px; 
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.main-nav a, .main-nav span {
  cursor: pointer; 
  font-size: 13px; 
  font-weight: 600; 
  letter-spacing: 1px;
  color: #000;
}

.main-nav a:hover {text-decoration: underline;}
header h1 {font-size: 16px; font-weight: 600; letter-spacing: 1px; text-align: center;}
header .icons {display: flex; gap: 15px; font-size: 20px; cursor: pointer;}

.search {padding: 12px 20px;}
.search input {width: 100%; padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; outline: none;}
.hero {position: relative; background: #000; color: #fff;}
.hero img {width: 100%; height: 60vh; object-fit: cover; filter: brightness(0.7);}
.hero-content {position: absolute; bottom: 30px; left: 20px; right: 20px; text-align: left;}
.hero-content h2 {font-size: 32px; font-weight: 800; margin: 8px 0;}
.hero-content .btn {display: inline-block; margin-top: 12px; padding: 10px 18px; background: #fff; color: #000; border-radius: 6px; text-decoration: none; font-weight: 600;}
.shipped {text-align:center; padding:15px; font-size:12px;}
.catalog {padding: 30px 20px;}
.filters {display: flex; gap: 8px; overflow-x: auto; margin-bottom: 20px;}
.filters button {padding: 8px 14px; border: 1px solid #ddd; background: #fff; border-radius: 20px; font-size: 13px; cursor: pointer; white-space: nowrap;}
.filters button.active {background: #000; color: #fff; border-color: #000;}
.products {display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px;}
.product {cursor: pointer;}
.product-card {
            background-color: var(--card-bg);
            border: 1px solid #f0eeeb;
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;}
.product img {width: 100%; aspect-ratio: 3/4; object-fit: cover; background: #f5f5f5;}
.product .price {font-weight: 600; font-size: 14px;}
.cart {position: fixed; top: 0; right: -100%; width: 90%; max-width: 400px; height: 100%; background: #fff; box-shadow: -2px 0 10px rgba(0,0,0,0.1); transition: 0.3s; z-index: 2000; padding: 20px;}
.cart.show {right: 0;}
.cart .btn {width: 100%; padding: 12px; background: #000; color: #fff; border: none; font-weight: 600; cursor: pointer;}
.modal {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #fff; display: none; z-index: 3000; overflow-y: auto; padding: 20px;}
.modal.show {display: block;}
@media(min-width: 768px){ .products {grid-template-columns: repeat(4, 1fr);} }
#adminModal input, #adminModal select, #adminModal textarea {
  width: 100%; padding: 10px; margin: 8px 0; border: 1px solid #ddd; border-radius: 6px;
}
#adminProductList.admin-item {
  border: 1px solid #eee; padding: 10px; margin: 8px 0; display: flex; justify-content: space-between; align-items: center;
}
#adminProductList button {padding: 5px 10px; margin-left: 5px; cursor: pointer;}
.ticker {
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 1px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
}

.ticker-track span {
  display: inline-block;
  padding: 0 2rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Animation */
@keyframes scroll-left {
 0% {
    transform: translateX(0);
  }
 100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* LUXURY STORY BUTTON */
.btn-story {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect - fills with white */
.btn-story:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  transform: translateY(-2px);
}

/* Optional: thin underline animation */
.btn-story::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 0px;
  background: #000;
  transition: width 0.3s ease;
}

.btn-story:hover::after {
  width: 100%;
}

/* Mobile */
@media(max-width: 768px){
  .btn-story {
    width: 100%;
    padding: 12px 0;
  }
}
/* LUXURY FOOTER */
footer {
  background: #000;
  color: #fff;
  padding: 50px 30px 20px;
  font-family: 'Montserrat', sans-serif;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  color: #aaa;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  font-size: 13px;
  margin-bottom: 10px;
  color: #aaa;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.contact-list li {
  display: flex;
  gap: 8px;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  gap: 15px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.socials a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.socials a:hover {
  background: #fff;
  border-color: #fff;
}

.socials a:hover svg {
  fill: #000;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding-top: 20px;
  font-size: 12px;
  color: #666;
  letter-spacing: 1px;
}

/* MOBILE */
@media(max-width: 900px){
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .socials {justify-content: center;}
}
.cellar {
            font-family: var(--font-serif);
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;}
                    :root {
            --bg-color: #fcfbf9; /* Cream */
            --text-main: #1a1a1a; /* Charcoal Black */
            --text-muted: #707070;
            --whatsapp-green: #075E54; /* Premium dark emerald/whatsapp hybrid */
            --card-bg: #ffffff;
            --font-serif: 'Cormorant Garamond', serif;
            --font-sans: 'Inter', sans-serif;}
            /* FOOTER MAP */
.footer-map {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding-top: 20px;
  border-top: 1px solid #222;
}

.footer-map h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: center;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.map-container iframe {
  display: block;
  filter: grayscale(20%) contrast(1.1); /* gives it a luxury dark look */
}
/* ACCORDION FOOTER FOR MOBILE */
.footer-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-toggle span {
  font-size: 20px;
  transition: transform 0.3s;
}

.footer-content {
  transition: max-height 0.4s ease;
}

/* Desktop: always show */
@media(min-width: 901px){
  .footer-toggle span {display: none;}
}

/* Mobile: hide content by default */
@media(max-width: 900px){
  .footer-content {
    max-height: 0;
    overflow: hidden;
  }
  .footer-col.active .footer-content {
    max-height: 500px; /* big enough to fit content */
    margin-top: 10px;
  }
  .footer-col.active .footer-toggle span {
    transform: rotate(45deg); /* + turns to x */
  }
}