/*
Theme Name: Funori Child
Template: funori
Version: 1.0
Text Domain: funori-child
*/

/* Container holding all brand items */
.brand-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 100%;
  margin: 0 auto;
}

/* Each brand row */
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

/* Content blocks inside each brand row */
.brand-text,
.brand-image {
  width: 100%;
  max-width: 600px;
  padding: 1rem;
}

/* Image styling */
.brand-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Button styling */
/* .read-more {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #e91e63;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.read-more:hover {
  background-color: #c2185b;
} */

/* On tablet and up: side-by-side rows */
@media (min-width: 768px) {
  .brand-item {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* Reverse layout for even items */
  .brand-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .brand-text,
  .brand-image {
    width: 48%;
    max-width: none;
    padding: 2rem;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	font-size: 20px;
	text-align: center;
  }
}

/* updates the brand images*/
.brand-single-image,
.brand-single-image > img{
    width: 80%;
    height: auto;
	display: block;
  	margin: auto;
}

/* removes the product filterss*/
.bwp-breadcrumb > .current > .breadcrumb-title{
    display: none;
}

/* removes the sidebar brands*/
.woocommerce_layered_nav-4,
.filter_by_brand-4 {
    display: none !important;
}

/* updates the product images*/
.contents-detail 
.images 
.woocommerce-main-image img {
    display: block;
    width: 80%; !important;
    height: auto;
    box-shadow: none;
}

/* updates the blog images*/
.content-image-single 
.single-thumb img {
    width: 60%;
    height: auto;
    display: block;
    margin: auto;
}
