:root {
  --primary-color: #2e2e2e;
  --accent-color: #f0f4f8;
  --highlight-color: #000;

  --font-serif: 'EB Garamond', serif;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
}

/* ============================= */
/*         NAVIGATION BAR       */
/* ============================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;

  padding: 0 2rem;
  height: 100px;
  position: relative;
  z-index: 1000;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
  padding-right: 2rem;
  height: 100%;
  width:230px;
}

.logo-img {
  height: 110px;
  width: auto;
  padding-left:2rem;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-grow: 1;
  justify-content: flex-end;
}

.navbar-content {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  right: 0;
  background-color: var(--highlight-color);
  transition: width 0.3s ease-in-out;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: #000;
}



.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a,
.logo-text {
  font-size: 1rem; /* Slight increase from 1rem */
  line-height: 1.6;
  letter-spacing: 0.3px;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
}
.navbar {
  height: 130px; /* add 30px for breathing space */
}

.logo-img {
  height: 90px;
}

.nav-links a {
  line-height: 1.6;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
/* ============================= */
/*       DROPDOWN STYLING       */
/* ============================= */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 0.5rem 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1100;
}

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

.dropdown-content li {
  padding: 0.5rem 1rem;
}

.dropdown-content a {
  color: #000;
}



.products-hero {
  position: relative;
  background: url('../assets/products-bg.jpg') center center / cover no-repeat;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust opacity here */
  z-index: 1;
}

.products-hero-content {
  position: relative;
  z-index: 2;
}

.products-hero-content {
  max-width: 820px;
  z-index: 2;
}

.products-hero h1 {
  font-family: 'Unica One', serif;
  font-size: 5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.products-hero h2 {
  font-family: 'Unica One', serif;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.products-hero p {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: #e6e6e6;
}

.products-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 600px; /* this controls how high the slope reaches */
  z-index: 1;
  pointer-events: none;
}
.products-hero::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}
.alt-section {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #fff;
  color: #111;
  border-bottom: 1px solid #eee;
}

.alt-section:nth-child(even) {
  background: #f7f7f7;
}

.alt-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.alt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
  transition: transform 0.3s ease;
}

.alt-image a:hover img {
  transform: scale(1.03);
}

.label-text {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #000;
  color: #fff;
  font-family: 'Unica One', serif;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.alt-content {
  flex: 1;
  padding: 0.5rem;
  font-family: 'EB Garamond', serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alt-content h2 {
  font-family: 'Unica One', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.alt-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.products-grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 6rem 3rem;
  background: #0a0a0a;
}

.product-card {
  background: #0f0f0f;
  border: 1px solid #222;
  box-shadow: 0 0 0 1px #1a1a1a;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.9);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.card-cta {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: #fff;
  color: #000;
  font-family: 'Unica One', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 1rem;
  transition: background 0.2s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.card-cta:hover {
  background: #e2e2e2;
}

.products-grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  padding: 6rem 3rem;
  background: #0a0a0a;
}

.product-card {
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  box-shadow: 0 0 0 1px #1a1a1a;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00ffc3, #007cf0);
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.product-card:hover::before {
  opacity: 0.15;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.9);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}

.card-cta-glass {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  color: #fff;
  font-family: 'Unica One', serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: background 0.3s ease;
  z-index: 2;
  text-decoration: none;
}

.card-cta-glass:hover {
  background: rgba(255, 255, 255, 0.25);
}

.product-info {
  flex: 1;
  padding: 2rem 1.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: 'EB Garamond', serif;
  color: #f2f2f2;
}

.product-info h2 {
  font-family: 'Unica One', serif;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
}

.product-info h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin-top: 0.6rem;
}

.product-meta {
  font-size: 0.95rem;
  font-style: italic;
  color: #aaa;
  margin-bottom: 1.2rem;
}

.product-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d5d5d5;
}
.slider-section {
  padding: 6rem 2rem;
  background: #0a0a0a;
}

.swiper {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 320px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: #111;
  border: 1px solid #222;
  color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-height: 320px;
  box-sizing: border-box;
}
.slide-inner {
  max-width: 600px;
  width: 100%;
}
.swiper-slide h3 {
  font-family: 'Unica One', serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 0.4rem;
  letter-spacing: 1px;
}

.swiper-slide p {
  font-size: 1.07rem;
  color: #ccc;
  line-height: 1.75;
}

/* Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff!important;
  width: 40px;
  height: 40px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
}

.slide h3 {
  font-family: 'Unica One', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.slide p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ccc;
}
.swiper-pagination {
  margin-top: 2rem;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #fff!Important;
  opacity: 0.4;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: #fff!Important;
  opacity: 1;
}
.slider-fallback {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #0a0a0a;
}

.slide-fallback {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #111;
  padding: 2rem;
  color: #fff;
  font-family: 'EB Garamond', serif;
  border: 1px solid #1f1f1f;
}
.swiper-slide {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

.swiper-slide-active {
  opacity: 1;
  position: relative;
  z-index: 2;
}



footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--accent-color);
  color: #000;
  font-size: 0.9rem;
  border-top: 1px solid #ccc;
}
.footer-extra {
  margin-top: 0.5rem;
  font-size: 0.85rem;
    position: relative;
  z-index: 2;
}

@media (max-width: 768px) {

  .products-hero {
    padding: 4rem 1.2rem 2rem;
    min-height: auto;
  }

  .products-hero-content {
    top: 0; /* remove any upward nudge */
    padding: 0 0.5rem;
  }

  .products-hero h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .products-hero h2 {
    font-size: 1.4rem;
    margin-top: 1rem;
  }

  .products-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .products-hero-overlay {
    height: 100px; /* shorter cut for smaller screens */
  }
  .products-grid-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.2rem;
    gap: 2rem;
  }

  .product-card {
    flex-direction: column;
    height: auto;
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 1.5rem 1rem;
  }

  .product-info h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .product-info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .slider-section {
    padding: 3rem 1rem;
    position: relative;
  }

  .slider-track {
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding-bottom: 3rem; /* space for dots */
  }

  .slide {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
    padding: 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }

  .swiper-button-next,
  .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    color: #fff !important;
    font-size: 14px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 14px;
    color: white;
  }

  .swiper-pagination {
    bottom: 1rem !important;
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.6;
    margin: 0 6px !important;
  }

  .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
}





/* Body text stays as Garamond */
body, p, li, span {
  font-family: 'EB Garamond', serif;
}

/* Headings use Playfair Display */
h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
}
/* === NAVBAR OVERRIDE FOR DESKTOP & MOBILE (UNIFIED STYLE) === */

.navbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #fff !important;
  padding: 0 2rem !important;
  height: 130px !important;
  position: relative !important;
  z-index: 1000 !important;
}

.navbar-left {
  display: flex !important;
  align-items: center !important;
}

.navbar-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-right: 1px solid #ccc !important;
  padding-right: 2rem !important;
  height: 100% !important;
  width: 230px !important;
}

.logo-img {
  height: 90px !important;
  width: auto !important;
  padding-left: 2rem !important;
}

.logo-text {
  font-size: 1rem !important;
  font-family: 'EB Garamond', serif !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  letter-spacing: 0.3px !important;
}

.nav-links {
  display: flex !important;
  list-style: none !important;
  letter-spacing: 0.3px !important;
  position: relative !important;
}

.nav-links li {
  margin-left: 1.5rem !important;
  position: relative !important;
}

.nav-links a {
  position: relative !important;
  text-decoration: none !important;
  color: #000 !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  padding: 0.25rem 0 !important;
  font-family: 'EB Garamond', serif !important;
  font-weight: 400 !important;
}

.nav-links a::after {
  content: '' !important;
  position: absolute !important;
  width: 0 !important;
  height: 2px !important;
  bottom: -4px !important;
  right: 0 !important;
  background-color: var(--highlight-color) !important;
  transition: width 0.3s ease-in-out !important;
}

.nav-links a:hover::after {
  width: 100% !important;
}

.dropdown-content {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  background-color: #fff !important;
  padding: 0.5rem 0 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  z-index: 1100 !important;
}


/* === MOBILE MENU === */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap !important;
    padding: 1rem 1.2rem !important;
    height: auto !important;
    z-index: 9999 !important;
  }

  .logo-img {
    height: 42px !important;
    padding-left: 0 !important;
  }

   .burger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 24px !important;
    height: 18px !important;
    cursor: pointer !important;
    z-index: 10001 !important;
    margin-left: auto !important;
  }

  .burger div {
    width: 100% !important;
    height: 2px !important;
    background: #000 !important;
  }

.nav-links {
  display: none !important;
  flex-direction: column !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 100vw !important;
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1) !important;
  z-index: 9999 !important;
}

  .nav-links.open {
    display: flex !important;
  }

  .nav-links a {
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid #eee !important;
    font-size: 1rem !important;
    display: block !important;
    text-align: left !important;
  }

  .dropdown-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    background: #fff !important;
    position: relative !important;
    box-shadow: none !important;
    border-top: 1px solid #eee !important;
    border-bottom: 1px solid #eee !important;
    z-index: 9998 !important;
  }


  .dropdown.open .dropdown-content {
    display: flex !important;
  }

  .dropdown-content a {
    display: block !important;
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    color: #000 !important;
    text-align: left !important;
    border-bottom: 1px solid #eee !important;
    background: #fff !important;
    text-decoration: none !important;
  }

  .dropdown-toggle::after {
    content: "▼" !important;
    display: inline-block !important;
    margin-left: 0.5rem !important;
    font-size: 0.7rem !important;
    vertical-align: middle !important;
    color: #000 !important;
    font-weight: bold !important;
  }

  .dropdown.open .dropdown-toggle::after {
    content: "▲" !important;
  }
 

 .dropdown-content li {
    width: 100% !important;
    list-style: none !important;
  }



}
/* === DESKTOP DROPDOWN FIX === */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block !important;
  }

  .dropdown-content {
    width: max-content !important;
    min-width: 220px;
  }

  .dropdown-content a {
    white-space: nowrap;
  }
}
