/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

 .color-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.color-variants .input-container {
  width: 120px;
  height: auto;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.color-variants .input-container label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}


.color-variants .input-container input {
  position: absolute;
  opacity: 0;
}

.color-variants .color.texture {
  display: block;
  width: 100%;
  height: 100px;
  background-size: cover;
  background-position: center;
}

.color-variants .attribute-label {
  display: block;
  font-size: 14px;
  margin-top: 6px;
  color: #707070;
}

.product-variants .input-color:checked+span {
  border-color: #707070;
}

.product-combinations-viewlist ,.product-combinations-list {
  display: flex;
  flex-wrap: wrap;  
  gap: 8px;          
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.product-combinations-viewlist .combination-item,.product-combinations-list .combination-item {
  flex: 0 0 auto;    
}

.product-combinations-list .combination-img {
  width: 60px;       
  height: 50px;
  object-fit: cover;
  border: 1px solid #ddd;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-combinations-viewlist .combination-img {
  width: 100px;       
  height: 90px;
  object-fit: cover;
  border: 1px solid #ddd;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-combinations-viewlist .combination-img:hover,.product-combinations-list .combination-img:hover {
  transform: scale(1.1);
  border-color: #707070;
}



.mdgift-item .cart_quantity::before,
.mdgift-item .product-line-grid-right .qty::before {
    width: 35px;
    height: 35px;
    content: '';
    float: left;
    display: block;
    background-color: #dc0871;
    border-radius: 50%;
    background-size: 22px;
    margin: 0 auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/gift-icon.svg);
}
.mdblockcart-gift::after {
    width: 25px;
    height: 25px;
    content: '';
    display: block;
    background-color: #dc0871;
    background-size: 18px;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../img/gift-icon.svg);
}

.mdgift-label {
    background-color: #dc0871;
    color: #FFF;
}