/**
 * Frontend styles for Homepage Products block
 */

.wp-block-berio-homepage-products {
  margin: 2rem auto;
  max-width: 1400px;
}

.wp-block-berio-homepage-products .header {
  text-align: center;
  margin-bottom: 40px;
}

.wp-block-berio-homepage-products .header h1 {
  font-size: 48px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.wp-block-berio-homepage-products .header p {
  font-size: 18px;
  color: #7f8c8d;
  font-style: italic;
}

.wp-block-berio-homepage-products .gallery-container {
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: flex;
  gap: 0px;
  height: 600px;
  /*max-height: 520px;*/
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wp-block-berio-homepage-products .category-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  overflow: hidden;
  flex: 1;
  min-width: 120px;
}

.wp-block-berio-homepage-products .category-panel.expanded {
  flex: 3;
}

.wp-block-berio-homepage-products .category-panel[data-category="oils"] {
 background-color: var(--dark-green);
  background-image:
    url('http://filippotfg.wpenginepowered.com/wp-content/uploads/2025/10/product-header-pattern.png');
  background-blend-mode: hard-light;
  background-size: 300%;
}

.wp-block-berio-homepage-products .category-panel[data-category="sauces"] {
  background-color: var(--sauce-red);
   background-image: 
    url('http://filippotfg.wpenginepowered.com/wp-content/uploads/2025/10/product-header-pattern.png');
  background-blend-mode: hard-light;
  background-size: 300%;
}

.wp-block-berio-homepage-products .category-panel[data-category="vinegars"] {
  background-color:var(--vinegar-purple);
  background-image: 
     url('http://filippotfg.wpenginepowered.com/wp-content/uploads/2025/10/product-header-pattern.png');
  background-blend-mode: hard-light;
  background-size: 300%;
}

.wp-block-berio-homepage-products .panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: rgba(0, 0, 0, 0.35);*/
  transition: all 0.6s ease;
}

.wp-block-berio-homepage-products .category-panel.expanded .panel-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.wp-block-berio-homepage-products .bottle-cover {
  position: absolute;
  left: 50%;
  bottom: 20px; /* anchor the image to the bottom of the panel */
  transform: translateX(-50%);
  max-width: 170px;
  height: auto;
  z-index: 2;
  transition: all 0.6s ease;
}

.wp-block-berio-homepage-products .category-panel.expanded .bottle-cover {
  display: none;
}

.wp-block-berio-homepage-products .category-title {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0;
  z-index: -1;
}

.wp-block-berio-homepage-products .category-toggle {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  font-family: inherit;
  font-family: var(--headline-font);
text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.3s ease;
}

.wp-block-berio-homepage-products .category-toggle__icon {
  display: none;
}

.wp-block-berio-homepage-products .category-panel.expanded .category-toggle {
  transform: translateX(-50%) translateY(20px);
}


@media (min-width: 768px) {
  .wp-block-berio-homepage-products .category-toggle {
    pointer-events: none;
    cursor: default;
  }

  .wp-block-berio-homepage-products .category-panel.expanded .category-toggle {
    top: 30px;
    left: 30px;
    transform: none;
    font-size: 32px;
  }
}


.wp-block-berio-homepage-products .products-grid {
  position: absolute;
  top: 80px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease 0.2s;
  display: flex;
  gap: 15px;
  overflow-x: auto;
  overflow-y: hidden;
  z-index: 1;
  padding-bottom: 10px;
}

.wp-block-berio-homepage-products .category-panel.expanded .products-grid {
  opacity: 1;
  transform: translateX(0);
}

.wp-block-berio-homepage-products .product-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 200px;
  max-width: 280px;
  min-height: 200px; /* Added minimum height to accommodate taller bottles */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 450px;
}

.wp-block-berio-homepage-products .product-item:hover {
  /*transform: translateY(-5px);*/
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.wp-block-berio-homepage-products .product-bottle {
  width: auto;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
  max-height: 500px;
  height: 260px;
  padding: 10px;
}

@media (min-width: 768px) {
.wp-block-berio-homepage-products .product-bottle {
  height: 360px;
}
}

.wp-block-berio-homepage-products .product-item:hover .product-bottle {
  transform: scale(1.1);
}

.wp-block-berio-homepage-products .product-name {
  font-size: 1.1rem;
  font-family: var(--accent-font);
  color: #333;
  line-height: 1.4rem;

  margin: auto;
}

.wp-block-berio-homepage-products .product-item a {
  text-decoration: none;
}

.wp-block-berio-homepage-products .product-item a:hover {
  text-decoration: none;
}

.wp-block-berio-homepage-products .product-price {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.wp-block-berio-homepage-products .no-products {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

@media (max-width: 768px) {
  .wp-block-berio-homepage-products .gallery-container {
    flex-direction: column;
    gap: 16px;
    height: auto;
    max-height: none;
  }

  .wp-block-berio-homepage-products .category-panel {
    height: auto;
    min-width: unset;
    flex: unset;
    cursor: default;
    border-radius: 16px;
    overflow: hidden;
  }

  .wp-block-berio-homepage-products .panel-overlay,
  .wp-block-berio-homepage-products .bottle-cover {
    display: none;
  }

  .wp-block-berio-homepage-products .category-toggle {
    position: static;
    transform: none;
    width: 100%;
    justify-content: space-between;
    /*background: rgba(0, 0, 0, 0.75);*/
    padding: 16px 20px;
    font-size: 1.3rem;
    text-shadow: none;
    border-radius: 16px 16px 0 0;
    pointer-events: auto;
    font-weight: 600;
  }

  .wp-block-berio-homepage-products .category-panel.expanded .category-toggle {
    transform: none;
    font-size: 1.3rem;
  }

  .wp-block-berio-homepage-products .category-toggle__label {
    font-family: var(--accent-font);
    letter-spacing: 0.5px;
  }

  .wp-block-berio-homepage-products .category-toggle__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .wp-block-berio-homepage-products .category-panel.expanded .category-toggle__icon {
    transform: rotate(-135deg);
  }

  .wp-block-berio-homepage-products .category-title {
    display: none;
  }

  .wp-block-berio-homepage-products .products-grid {
    position: static;
    opacity: 1;
    transform: none;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    padding: 20px 20px 32px;
    margin: 0 12px 12px;
    overflow-x: auto;
  }

  .wp-block-berio-homepage-products .category-panel.expanded .products-grid {
    display: flex;
  }

  .wp-block-berio-homepage-products .header h1 {
    font-size: 32px;
  }

  .wp-block-berio-homepage-products .panel-close {
    display: none !important;
  }
}

/* Custom scrollbar for horizontal scroll */
.wp-block-berio-homepage-products .products-grid::-webkit-scrollbar {
  height: 20px;
  width: 20px;
}

.wp-block-berio-homepage-products .products-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.wp-block-berio-homepage-products .products-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wp-block-berio-homepage-products .products-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.6);
}
