.bulb-slider {
    width: 100%;
}
.bulb-product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}
.bulb-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #27ae60;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}
.bulb-product-image {
    width: 100%;
    height: auto;
}
.bulb-product-title_small {    
	font-size: 12px;
    font-weight: 500;
    margin: 3px 0; 
    text-align: left;
    color: #000;
	
}
.bulb-product-title {
    font-size: 16px;
    font-weight: 500;
    margin: 2px 0;
    text-align: left;
}
.bulb-price {
    font-size: 20px;
    font-weight: 500;
    color: #fb6320;
    text-align: left;
}
.bulb-delivery-time {
    font-size: 14px;
    color: gray;
    text-align: left;
    margin-bottom: 10px;
}
.bulb-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.bulb-info-section {
    text-align: left;
    margin-top: 10px;
    font-size: 14px;
}
.bulb-info-section a {
    color: #27ae60;
    text-decoration: none;
}
.bulb-cart-btn.tocart {
    background-color: #fb6320;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    font-weight: 500;
    font-size: 15px;
}
.bulb-cart-btn.tocart:hover {
    background-color: #000;
}
.bulb-cart-btn.tocart.added {
    background-color: #28b865;
}
.added i {font-size:16px}
.bulb-cart-btn.tocart i.material-symbols-outlined {
    font-size: 16px;
    color: white;
	font-weight: 200;
}
.alt-button {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #000;
  padding: 4px 8px;
}

.alt-button .arrow-icon {
  font-weight: normal;
  font-size: 20px;
}

.product-image-combo {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 5px;
}

.product-image-combo img {
  max-width: 140px;
  height: auto;
}

.product-image-combo .plus-sign {
  font-weight: bold;
  font-size: 20px;
}



.downloads__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding:7px 7px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.dl-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.dl-card img {
  width: 58px;
  height: 58px;
  /* border: 1px solid #ccc; Icon border */
  border-radius: 8px;
  object-fit: contain;
}

.dl-card span {
  font-size: 16px;
  line-height: 1.3;
  color: #111827;
}

