/*
 Theme Name:   jmb Child
 Theme URI:    https://perceptionsystem.com/
 Description:  A child theme of jmb WordPress theme.
 Author:       Perception System
 Author URI:   https://perceptionsystem.com/
 Template:     jmb
 Version:      1.0.0
*/

@import url("../jmb/style.css");

/* ===== CATEGORY TOP SECTION (FULL WIDTH FIX) ===== */
.category-top-content{
  width:100vw;
  max-width:100vw;
  margin-left:calc(-50vw + 50%);
  margin-right:calc(-50vw + 50%);
  padding:40px 20px;
  box-sizing:border-box;
  background:#fff;
}

/* Center inner content */
.category-top-content > *{
  max-width:1400px;
  margin-left:auto;
  margin-right:auto;
}

/* ===== TITLE ===== */
.category-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:12px;
  line-height:1.3;
}

/* ===== DESCRIPTION (BR / P ISSUE FIX) ===== */
.category-description{
  color:#555;
  font-size:16px;
  line-height:1.7;
}

/* Proper paragraph spacing */
.category-description p{
  margin:0 0 14px;
}

/* Extra <br> spacing remove */
.category-description br{
  display:none;
}

/* ===== BUTTON ===== */
.category-button-wrap{
  margin-top:22px;
}

.category-btn{
  display:inline-block;
  padding:14px 30px;
  background:#e61b23;
  color:#fff;
  font-weight:600;
  border-radius:10px;
  text-decoration:none;
  transition:0.3s ease;
}

.category-btn:hover{
  background:#c4161d;
  color:#fff;
}

.wp-block-image img {
  width: 120px;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width:768px){
  .category-title{
    font-size:26px;
  }
  .category-top-content{
    padding:30px 16px;
  }
  .category-button-wrap {
    text-align: center;
  }
}


/* Text wrapper */
.woocommerce-page .category-text-wrap{
  margin-bottom:20px;
}

/* Title */
.woocommerce-page .category-title{
  font-size:32px;
  font-weight:700;
  color:#111;
  margin-bottom:10px;
}

/* Description */
.woocommerce-page .category-description{
  font-size:15px;
  line-height:1.7;
  color:#555;
  max-width:420px;
}

/* Button wrapper */
.woocommerce-page .category-button-wrap{
  margin-top:18px;
}

/* Button */
.woocommerce-page .category-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 32px;
  background:#e61b23;
  color:#fff;
  font-size:15px;
  font-weight:600;
  border-radius:30px;
  text-decoration:none;
  box-shadow:0 6px 15px rgba(230,27,35,0.35);
  transition:all 0.3s ease;
}

.woocommerce-page .category-btn:hover{
  background:#c4161d;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(230,27,35,0.45);
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .woocommerce-page .category-top-content{
    max-width:100%;
    padding:26px 22px;
  }

  .woocommerce-page .category-title{
    font-size:26px;
  }

  .woocommerce-page .category-button-wrap{
    text-align:left;
  }
}


