.feature-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  font-size: 20px;
  color: #333;
}

.feature-item h6 {
  margin: 0;
  font-weight: 600;
}

.feature-item p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.feature-divider {
  width: 1px;
  height: 35px;
  background: #c9a1a7;
}

.feature-box i {
  font-size: 22px;
  color: #65081f;
  margin-bottom: 10px;
  display: block;
}

.feature-box h6 {
  font-weight: 600;
  margin-top: 6px;
}

.feature-box p {
  font-size: 14px;
  color: #666;
}

/* HERO */

.hero-image {
  background: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  height: 350px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: 50px;
  color: white;
}

.hero-content h1 {
  font-size: 42px;
}

.hero-content p {
  max-width: 400px;
}

/* SECTION TITLES */

.section-title {
  color: #65081f;
  font-weight: 600;
}

/* PROMO */

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.promo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.promo-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

/* WINE PAGE LAYOUT */

.wine-title {
  font-size: 44px;
  color: #65081f;
  margin-bottom: 10px;
}

.wine-desc {
  max-width: 100%;
  color: #555;
  line-height: 1.6;
}

/* SIDEBAR */

div#sidebarfeatured {
  transition: none;
}

div#sidebarfeatured:hover {
  transform: none;
}

.wine-sidebar {
  padding-right: 30px;
}

.sidebar-group {
  margin-bottom: 35px;
}

.sidebar-group h5 {
  font-size: 18px;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.sidebar-group h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #65081f;
}

.sidebar-group ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.sidebar-group li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-group li:hover {
  color: #65081f;
}

/* WINE GRID */

.wine-cat {
  margin-top: 10px;
  font-size: 15px;
}

/* WINE CATEGORY HOVER */

.wine-page .col-md-3 img {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 6px;
  cursor: pointer;
}

.wine-page .col-md-3:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.wine-page .col-md-3 {
  transition: transform 0.3s ease;
}

.wine-page .col-md-3:hover {
  transform: translateY(-5px);
}

/* EXPLORE CARDS HOVER */

.promo-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

.promo-card img {
  transition: transform 0.6s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.promo-card:hover img {
  transform: scale(1.06);
}

/* EXPLORE BUTTON HOVER */

.promo-text strong {
  display: inline-block;
  margin-top: 10px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid white;
  border-radius: 3px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.promo-text strong:hover {
  background: white;
  color: #65081f;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.promo-card:hover .promo-text strong {
  border-bottom: 1px solid white;
  letter-spacing: 0.3px;
  border-color: white;
}

/* PRODUCT GRID */
.product-card {
  background: #f3f3f3;
  padding: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;

  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

/* IMAGE CONTAINER */

.product-image {
  background: #f0f0f0;
  border-radius: 6px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* BOTTLE IMAGE */

.product-image img {
  height: 100%;
  object-fit: contain;
}

/* TITLE + PRICE */

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
  gap: 10px;
}

.product-header h6 {
  font-size: 17px;
  margin: 0;
  line-height: 1.3;
  max-width: 75%;
  min-height: 44px; /* prevents uneven titles */
}

.product-header span {
  font-weight: 600;
  font-size: 16px;
}

/* DESCRIPTION */

.product-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  min-height: 40px; /* keeps alignment consistent */
}

/* BUTTON */

.product-btn {
  background: white;
  border: 1px solid #222;
  border-left: 3px solid #65081f;
  padding: 10px 26px;
  font-size: 15px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

/* MAIN HOVER EFFECT */
.product-btn:hover {
  background: #65081f;
  color: white;
  border-color: #65081f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* SUBTLE FILL ANIMATION */
.product-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #65081f;
  z-index: -1;
  transition: width 0.3s ease;
}

.product-btn:hover::before {
  width: 100%;
}

/* TEXT TRANSITION */
.product-btn {
  color: #222;
}

.product-btn:hover {
  color: white;
}

/* FILTER BAR */

.filter-bar {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 6px;
}

.filter-bar input,
.filter-bar select {
  padding: 10px;
  border: 1px solid #ddd;
  background: white;
}

/* PRODUCT LIST STYLE (LIST MODE) */

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #eee;
  gap: 20px;
  flex-wrap: wrap;
}

.product-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.product-left img {
  height: 120px;
  object-fit: contain;
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info h5 {
  margin: 0;
  font-size: 18px;
}

.product-meta {
  font-size: 13px;
  color: #777;
  margin-top: 5px;
}

.product-price {
  font-size: 18px;
  font-weight: 600;
}

.product-action button {
  background: white;
  border: 1px solid #222;
  border-left: 3px solid #65081f;
  padding: 8px 20px;
}

/* FILTER BAR */

.producer-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.producer-search {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
}

.producer-filters select {
  padding: 12px;
  border: 1px solid #ddd;
  background: white;
}

/* LETTER FILTER */

.letter-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #777;
}

.letter-filter span {
  cursor: pointer;
  transition: 0.2s;
}

.letter-filter span:hover {
  color: #65081f;
}

/* BLOCK */

.producer-block {
  border-top: 1px solid #eee;
  padding-top: 25px;
  margin-top: 25px;
}

.producer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.producer-header h3 {
  font-size: 28px;
}

/* GRID */

.producer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.producer-item h6 {
  margin: 0;
  font-size: 16px;
}

.producer-item p {
  font-size: 13px;
  color: #777;
}

/* PRODUCER CARD */

.producer-item {
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
}

.producer-item:hover {
  background: #f3f3f3;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* ACTIVE LETTER */

.letter-filter span {
  margin-right: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: 0.2s;
}

.letter-filter span:hover {
  color: #65081f;
}

.letter-filter span.active {
  color: #65081f;
  font-weight: 600;
  border-bottom: 2px solid #65081f;
}

/* PRODUCER PAGE */

.producer-title {
  font-size: 42px;
  color: #65081f;
  margin-bottom: 15px;
}

.producer-desc {
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 15px;
}

.producer-image {
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
