/*
Theme Name:     Custom Divi Child Theme
Description:    A custom child theme by 212 Creative
Author:         212 Creative, LLC
Template:       Divi

(optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
*/

/* Custom Row animations */
.et_pb_row.ttc-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 0.8s ease-in-out;
  will-change: opacity, transform;
}

.et_pb_row.ttc-animate.ttc-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .et_pb_row.ttc-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.product_card {
  overflow: hidden;
}

.product_card img {
  transition: transform 1s ease;
  transform: scale(1);
}

.product_card:hover img {
  transform: scale(1.25);
}

/* Base state */
.product_card {
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease!important;
  transform: scale(1);
  box-shadow: 0 6px 18px rgba(0,0,0,0);
  will-change: transform, box-shadow;
}

/* Hover state */
.product_card:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.store-child-cats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gvid-19abf8a489);
  align-items: center;
}

.store-child-cats__item {
  display: inline-flex;
}

.store-child-cats__link {
  text-decoration: none;
}