/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme/
Template: dji
Author: Muffin group
Author URI: https://muffingroup.com/
Description: The biggest WordPress Theme ever
Version: 28.1.3.1755156451
Updated: 2025-08-14 07:27:31

*/

/* 产品展示模块 - BeTheme 风格 */
.betheme-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  padding: 0;
  list-style: none;
 margin: 0 25px 15px 25px !important;
}

.betheme-products li.mfn-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}

.betheme-products li.mfn-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

/* 图片 */
.betheme-products li.mfn-item img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #f2f2f2;
}

/* 标题 */
.betheme-products li.mfn-item h4 {
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin: 12px 10px 6px;
  color: #212121;
  transition: color 0.2s ease;
}

.betheme-products li.mfn-item:hover h4 {
  color: #000; /* BeTheme 主色调，可改 */
}

.betheme-products li.mfn-item .secondary-category {
    display: block;
    font-size: 12px;
    color: #212121;
    margin-top: 5px;
}



/* 价格 */
.betheme-products li.mfn-item .price {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 12px;
}

.betheme-products li.mfn-item .price ins {
  color: #e74c3c; /* 特价高亮 */
  font-weight: 600;
  text-decoration: none;
}

/* 按钮风格（可选） */
.betheme-products li.mfn-item a {
  text-decoration: none;
  display: block;
}


@media screen and (max-width: 768px) {
    .betheme-products {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
        margin: 0 !important;
    }

    .betheme-products li.mfn-item h4 {
        font-size: 14px;
        margin: 10px 8px 4px;
    }

    .betheme-products li.mfn-item .price {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .betheme-products li.mfn-item .secondary-category {
        font-size: 12px;
        margin-top: 3px;
    }
}

@media screen and (max-width: 480px) {
    .betheme-products {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
        margin: 0 !important;
    }

    .betheme-products li.mfn-item h4 {
        font-size: 13px;
        margin: 8px 6px 3px;
    }

    .betheme-products li.mfn-item .price {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .betheme-products li.mfn-item .secondary-category {
        font-size: 11px;
        margin-top: 2px;
    }
}