/* Inglot Category Extended PLP attributes block.
   Designed to match the brand layout: 2-column with right-aligned label
   on the left, value on the left, hairline separators between rows, dotted
   rating with hollow / full / half circles. */

.icex-product-attrs{
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid #E5E5E5;
    font-size:12px;
    line-height:1.45;
    color:#000;
}

.icex-attr{
    display:flex;
    align-items:flex-start;
    column-gap:14px;
    padding:6px 0;
}

.icex-attr--long{
    padding-bottom:12px;
}

.icex-attr__label{
    font-weight:400;
    text-align:right;
    flex:0 0 40%;
    max-width:40%;
    white-space:normal;
    overflow-wrap:break-word;
    word-break:break-word;
}

.icex-attr__value{
    font-weight:500;
    flex:1 1 auto;
    min-width:0;
    overflow-wrap:break-word;
    word-break:break-word;
}

.icex-attr__icon{
    width:12px;
    height:12px;
    display:inline-block;
    vertical-align:middle;
    margin-right:5px;
}

/* Rating dots ---------------------------------------------------------- */
.icex-dots{
    display:inline-flex;
    align-items:center;
    gap:6px;
    line-height:1;
}
.icex-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    display:inline-block;
    border:1.5px solid #111;
    box-sizing:border-box;
}
.icex-dot--full{background:#111}
.icex-dot--empty{background:transparent}
.icex-dot--half{background:linear-gradient(90deg,#111 50%,transparent 50%)}

/* Responsive ----------------------------------------------------------- */
@media (max-width:480px){
    .icex-attr{column-gap:8px}
    .icex-attr__label{flex-basis:38%;max-width:38%}
}
