/*
Theme Name: Hello Biz Child
Template: hello-biz
Description: Child theme of Hello Biz
Version: 1.0
*/

/* Siromi – load fast, swap in */
@font-face{
  font-family:"TBJ Siromi Lite";
  src:
    url("/wp-content/uploads/2025/07/tbj_siromi_lite-webfont.woff2") format("woff2"),
    url("/wp-content/uploads/2025/07/tbj_siromi_lite-webfont.woff") format("woff");
  font-weight:300;
  font-style:normal;
  font-display:swap;
}

/* Element Pack icon font */
@font-face{
  font-family:"element-pack";
  src: url("/wp-content/plugins/bdthemes-element-pack/assets/fonts/element-pack.woff2") format("woff2");
  font-weight:normal;
  font-style:normal;
  font-display:swap;
}


/* Custom WooCommerce Product Gallery Layout */
.custom-product-gallery-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.custom-product-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100px;
}

.custom-product-thumbnails .woocommerce-product-gallery__image {
  margin-bottom: 0;
}

.gallery-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .custom-product-gallery-flex {
    flex-direction: column;
    gap: 1rem;
  }
  .custom-product-thumbnails {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
}

