
/* ============================================
   VINO SHOWCASE SECTION — Redesigned Slider
   ============================================ */

.vino-showcase-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(180deg, #08080a 0%, #130a0a 50%, #08080a 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vino-showcase-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(110, 20, 30, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 40%, rgba(140, 90, 20, 0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.vino-slides-container {
  position: relative;
  flex: 1;
  z-index: 1;
  overflow: hidden;
  min-height: 0;
}

.vino-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.vino-slide.active {
  opacity: 1;
  pointer-events: all;
  position: absolute;
}

.vino-slide-image-panel {
  position: relative;
  overflow: hidden;
  background: #0d0608;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.vino-slide-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 100%);
  z-index: 1;
}

.vino-slide-image-gradient {
  position: absolute;
  top: 0;
  right: -1px;
  width: 180px;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #130a0a 100%);
  z-index: 2;
  pointer-events: none;
}

.vino-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.vino-slide.active .vino-slide-img {
  transform: scale(1);
}

.vino-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.vino-no-image svg {
  width: 80px;
  height: 160px;
}

.vino-slide-info-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 50px 40px 60px;
  background: linear-gradient(135deg, #130a0a 0%, #0d0608 100%);
  overflow-y: auto;
}

.vino-slide-info-inner {
  width: 100%;
  max-width: 520px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1) 0.12s, opacity 0.65s ease 0.12s;
}

.vino-slide.active .vino-slide-info-inner {
  transform: translateY(0);
  opacity: 1;
}

.vino-slide-header {
  margin-bottom: 28px;
}

.vino-section-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #f4f4f4;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-top: 6px;
}

.vino-vrsta-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vino-vrsta-crno {
  background: rgba(90, 10, 20, 0.4);
  border: 1px solid rgba(160, 40, 50, 0.5);
  color: #e8827a;
}

.vino-vrsta-bijelo {
  background: rgba(180, 150, 20, 0.2);
  border: 1px solid rgba(200, 170, 50, 0.4);
  color: #d4b86a;
}

.vino-vrsta-rose {
  background: rgba(180, 80, 100, 0.2);
  border: 1px solid rgba(210, 100, 130, 0.4);
  color: #e8a0b0;
}

.vino-naziv {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: #f4f4f4;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.vino-etiketa {
  color: rgba(244, 244, 244, 0.5);
  font-size: 15px;
  font-style: italic;
  margin-bottom: 28px;
}

.vino-detalji-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin: 22px 0 30px;
}

.vino-detalj {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.vino-detalj-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(200, 160, 80, 0.7);
}

.vino-detalj-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.4);
  margin-bottom: 2px;
}

.vino-detalj-val {
  display: block;
  font-size: 14px;
  color: rgba(244, 244, 244, 0.85);
  font-weight: 400;
}

.vino-cijene {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.vino-cijena-boca,
.vino-cijena-casa {
  display: flex;
  flex-direction: column;
}

.vino-cijena-iznos {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: #c8a050;
  line-height: 1;
}

.vino-cijena-iznos.small {
  font-size: 26px;
}

.vino-cijena-jed {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.4);
  margin-top: 4px;
}

.vino-cijena-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
}

.vino-akcije {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.vino-btn-naruci {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #8b1a2a 0%, #6b1020 100%);
  color: #f4f4f4;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 1px solid rgba(200, 60, 80, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(100, 10, 20, 0.35);
}

.vino-btn-naruci:hover {
  background: linear-gradient(135deg, #a02030 0%, #801828 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(100, 10, 20, 0.5);
  color: #f4f4f4;
}

.vino-btn-naruci svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.vino-btn-naruci:hover svg {
  transform: translateX(4px);
}

.vino-btn-karta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: rgba(244, 244, 244, 0.75);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 1px solid rgba(244, 244, 244, 0.2);
  transition: all 0.3s ease;
}

.vino-btn-karta:hover {
  border-color: rgba(244, 244, 244, 0.45);
  color: #f4f4f4;
  background: rgba(255, 255, 255, 0.05);
}

.vino-progress-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.vino-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8b1a2a, #c8a050);
  border-radius: 2px;
}

.vino-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(20, 8, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(244, 244, 244, 0.8);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.vino-arrow:hover {
  background: rgba(139, 26, 42, 0.7);
  border-color: rgba(200, 60, 80, 0.4);
  color: #f4f4f4;
  transform: translateY(-50%) scale(1.05);
}

.vino-arrow svg {
  width: 20px;
  height: 20px;
}

.vino-arrow-prev { left: 24px; }
.vino-arrow-next { right: 24px; }

.vino-dots {
  position: absolute;
  bottom: 28px;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  z-index: 10;
  max-width: calc(50% - 60px);
  overflow: hidden;
}

.vino-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.vino-dot.active {
  background: #c8a050;
  width: 24px;
  border-radius: 4px;
}

.vino-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1100px) {
  .vino-slide-info-panel {
    padding: 60px 40px 60px 50px;
  }
}

@media (max-width: 860px) {
  .vino-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh 1fr;
  }

  .vino-slide-image-panel {
    min-height: 50vh;
  }

  .vino-slide-image-gradient {
    top: auto;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, #130a0a 100%);
  }

  .vino-slide-info-panel {
    padding: 36px 28px 80px;
    min-height: unset;
  }

  .vino-slide-info-inner {
    max-width: 100%;
  }

  .vino-dots {
    left: 50%;
    bottom: 20px;
    max-width: calc(100% - 120px);
  }

  .vino-arrow-prev { left: 12px; }
  .vino-arrow-next { right: 12px; }

  .vino-arrow {
    width: 40px;
    height: 40px;
    top: 25%;
  }
}

@media (max-width: 480px) {
  .vino-detalji-grid {
    grid-template-columns: 1fr;
  }

  .vino-akcije {
    flex-direction: column;
  }

  .vino-btn-naruci,
  .vino-btn-karta {
    width: 100%;
    justify-content: center;
  }
}
