/* Vins Page Styles */

.vins-page {
  background-color: var(--color-background);
}

.vins-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 450px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}

.vins-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vins-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.vins-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--spacing-md);
  max-width: 900px;
}

.vins-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--color-white);
  /* text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4); */
  line-height: 1.2;
  margin: 0 0 var(--spacing-sm) 0;
}

.vins-hero-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-white);
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
  margin: 0;
  line-height: 1.5;
}

.vins-intro {
  background-color: var(--color-background);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content .lead {
  font-size: 2rem;
  line-height: 1.8;
  color: var(--color-text);
  font-weight: 300;
}

.vin-section {
  position: relative;
}

.vin-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.vin-bottle{
 display:flex;
 align-items:center;
 justify-content:center;
 padding:var(--spacing-md) 0;
 min-width:0;
}

.bottle-wrapper{
 position:relative;
 width:100%;
 max-width:350px;
 aspect-ratio:3/4;
 overflow:hidden;
 border-radius:var(--radius-md);
 box-shadow:var(--shadow-lg);
 background-color:var(--color-white);
}

.bottle-wrapper img{
 display:block;
 width:100%;
 height:100%;
 object-fit:contain;
 padding:2em;
 box-sizing:border-box;
 margin:0 auto;
 transition:transform var(--transition-slow);
}

/* .bottle-wrapper img { */
    /* max-width: 100%; */
    /* max-height: 100%; */
    /* width: auto; */
    /* height: auto; */
    /* text-align: center; */
    /* transition: transform var(--transition-slow); */
    /* margin: 0 auto; */
    /* padding: 2em; */
    /* object-fit: contain; */
/* } */

.vin-content:hover .bottle-wrapper img {
  transform: scale(1.05);
}

.vin-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-md) 0;
}

.vin-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.vin-description {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.vin-description p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

.vins-cta {
  background-color: var(--color-background);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.8rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--color-text);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.cuvees-parcellaires {
  background-color: var(--color-cream);
}

.cuvees-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  line-height: 1.3;
}

.cuvees-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.cuvees-slider {
  overflow: hidden;
  padding: 0 60px;
}

.cuvees-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: var(--spacing-lg);
}

.cuvee-item {
  flex: 0 0 auto;
  width: 280px;
  text-align: center;
  padding: var(--spacing-md);
  transition: transform var(--transition-base);
}

.cuvee-item:hover {
  transform: translateY(-8px);
}

.cuvee-bottle {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--transition-base);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cuvee-item:hover .cuvee-bottle {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cuvee-bottle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.cuvee-item:hover .cuvee-bottle img {
  transform: scale(1.05);
}

.cuvee-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.4;
}

.cuvees-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-base);
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cuvees-nav:hover {
  background-color: var(--color-text);
  color: var(--color-white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cuvees-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.cuvees-nav:disabled:hover {
  background-color: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cuvees-nav-prev {
  left: 0;
}

.cuvees-nav-next {
  right: 0;
}

@media (max-width: 767px) {
  .cuvees-title {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-lg);
  }

  .cuvees-slider {
    padding: 0 50px;
  }

  .cuvee-item {
    width: 220px;
  }

  .cuvee-bottle {
    height: 300px;
    padding: var(--spacing-md);
  }

  .cuvee-name {
    font-size: 1.7rem;
  }

  .cuvees-nav {
    width: 40px;
    height: 40px;
  }

  .cuvees-nav svg {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 768px) {
  .vins-hero {
    height: 70vh;
    min-height: 550px;
  }

  .vins-hero-title {
    font-size: 6rem;
  }

  .vins-hero-subtitle {
    font-size: 2rem;
  }

  .intro-content .lead {
    font-size: 2.2rem;
  }

  .vin-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
  }

  .vin-content-right {
    direction: rtl;
  }

  .vin-content-right > * {
    direction: ltr;
  }

  .bottle-wrapper {
    max-width: 400px;
  }

  .vin-text h2 {
    font-size: 4rem;
  }

  .vin-description p {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .vins-hero-title {
    font-size: 7rem;
  }

  .vins-hero-subtitle {
    font-size: 2.2rem;
  }

  .intro-content .lead {
    font-size: 2.4rem;
    line-height: 1.9;
  }

  .vin-content {
    gap: 5rem;
  }

  .bottle-wrapper {
    max-width: 450px;
  }

  .vin-text {
    padding: var(--spacing-lg) 0;
  }

  .vin-text h2 {
    font-size: 4.5rem;
  }

  .vin-description {
    gap: var(--spacing-lg);
  }

  .vin-description p {
    font-size: 1.9rem;
    line-height: 1.9;
  }

  .cta-content h2 {
    font-size: 4rem;
  }

  .cta-content p {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .cuvees-title {
    font-size: 4.5rem;
  }

  .cuvee-item {
    width: 300px;
  }

  .cuvee-bottle {
    height: 400px;
  }

  .cuvee-name {
    font-size: 2.2rem;
  }
}

@media (min-width: 1280px) {
  .vin-content {
    gap: 6rem;
  }

  .bottle-wrapper {
    max-width: 500px;
  }

  .cuvee-item {
    width: 320px;
  }
}

.container2{max-width:100%}