.cmm-widget {
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  display: flex;
  overflow: hidden;
      font-family: Archivo, sans-serif;
}

/* categories column */
.cmm-categories {
  list-style: none;
  margin: 0;
    width: 300px;
    background: #f0f4f8;
    color: #0067AD;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-right: 2px solid rgb(255, 215, 18, 0.3);
}
.cmm-categories li {
  padding: 12px 24px;
  cursor: pointer;
  color: #000;
  transition: background .15s,color .15s;
      font-family: Archivo, sans-serif;
  
  
}
.cmm-categories li.active,
.cmm-categories li:hover {
  color: rgb(0 103 173);
  border-left: 4px solid rgb(0 103 173);
}

/* main content area */
.cmm-contents {
  flex: 1;
  display: block;
  min-height: 220px;
  box-sizing: border-box;
}
.cmm-content {
  display: none;
  gap: 20px;
  align-items: flex-start;
}
.cmm-content.active {
  display: flex;
}

/* left: products */
.cmm-products {
  flex: 0 0 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
      padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
}
.cmm-product {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform .15s, box-shadow .15s;
}
.cmm-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,103,173,0.08);
}
.cmm-product-img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

/* right: banner */
.cmm-banner {
background-color: rgb(0 103 173);
  padding: 30px;
  margin-right: 10px;
}
.cmm-banner-link {
  display: block;
  width: 100%;
  background: #0067AD;
  color: #fff;
  padding: 16px;
  border-radius: 0px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,103,173,0.12);
}
.cmm-banner-img img {
  width: 100%;

  border-radius: 8px;
}
.cmm-banner-img img, .cmm-banner-img{
    height:250px !important;
      object-fit: cover;
        border-radius: 8px;
}

.cmm-banner-text{
    margin-top: 20px;
}


.cmm-banner-text h3 {
  margin: 0 0 6px 0;
  text-align:center;
  color:#fff;
  font-size: 20px;
  
}
.cmm-banner-text p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
    color:#fff;
    margin-bottom: 22px;
    text-align:center;
}
a.cmm-banner-link{
        padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.04em;
    background: rgb(255, 215, 18);
    color: #0067AD;
    width: auto;
}

.cmm-banner-text{text-align:center;}

/* responsive */
@media (max-width: 900px) {
  .cmm-widget { flex-direction: column; }
  .cmm-categories { width: 100%; display: flex; gap: 8px; overflow-x: auto; padding: 8px; }
  .cmm-categories li { white-space: nowrap; margin-bottom: 0; }
  .cmm-content { flex-direction: column; }
  .cmm-products { grid-template-columns: repeat(2, 1fr); margin-bottom: 12px; }
  .cmm-banner { padding-left: 0; }
}
