/* ------------------------------------------------- */
/* ========== TAB-SPECIFIC SPAREPARTS STYLES ========== */
/* ------------------------------------------------- */

.part-item.ruparupa-item {
  height: auto;  
  display: block;
  background: blanchedalmond;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
  position: relative; 
  margin: 0px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ========== SPAREPARTS OVERLAY STYLES ========== */
.brand-page[data-brand="ruparupa"] .part-item.ruparupa-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, 
    	rgba(255, 0, 0, 0.8) 0%,   /* Merah */
    	rgba(255, 255, 0, 0.6) 30%, /* Kuning */
    	rgba(0, 255, 0, 0.4) 60%,   /* Hijau */
    	rgba(0, 0, 255, 0.2) 80%,   /* Biru */
    	rgba(0, 255, 0, 255) 100%);     /* Transparan */

    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

/* ========== SPAREPART STYLES ========== */

.text-wrapper .ruparupa-kodeproduk { 
   font-weight: 900;
   color:  blue;
}
.text-wrapper .ruparupa-namaproduk { 
   font-style: italic; 
   color: tomato;
}
.text-wrapper .ruparupa-desc,
.text-wrapper .ruparupa-kodeproduk,
.text-wrapper .ruparupa-namaproduk,
.text-wrapper .ruparupa-desc {
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin: 2px 0;
    line-height: 1.3;
}
.part-item.ruparupa-item .image-container {
    position: relative;
    background: blanchedalmond;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    align-items: center;
    justify-content: center;
}

.part-item .image-container img {
  width: 100%;
  height: auto;
  display: block;  /* penting! */
  position: relative;  /* BUKAN absolute */
}


.part-item.ruparupa-item .part-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 4;
}

.part-item.ruparupa-item .image-container.no-image-bg {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.part-item.ruparupa-item .no-image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
}

.part-item.ruparupa-item:active {
    transform: scale(0.98);
    transition: transform 0.2s;
}
