
   .description{
   line-height: 37px;
   text-align: justify;
   }


   @keyframes blink {
   0% { opacity: 1; }
   50% { opacity: 0; }
   100% { opacity: 1; }
   }
   .blink {
   animation: blink 1s infinite;
   }
   .timer {
      font-size: 16px;
      font-weight: bold;
      color: red;
   }
   .offer-flag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 10;
}
#pname{

    font-size: 20px;
    margin-top: 30px;
}
.offer-flag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6f61;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 8px;
    z-index: 2;
}

.card-product-wrapper {
    position: relative;
}

.card-product-info {
    padding: 15px;
    text-align: center;
}

.custom-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.custom-title:hover {
    color: #ff6f61;
}

.custom-stock-status {
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

.custom-description {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.price-info {
    margin: 10px 0;
}

.custom-original {
    font-size: 16px;
    text-decoration: line-through;
    color: #888;
    margin-right: 8px;
}

.custom-discounted {
    font-size: 20px;
    font-weight: bold;
    color: #e63946;
}

.timer {
    margin-top: 15px;
    font-size: 14px;
    color: #4caf50;
    font-weight: bold;
}

.custom-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.custom-btn-group .box-icon {
    background-color: #f1f1f1;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn-group .box-icon:hover {
    background-color: #ff6f61;
    transform: scale(1.1);
}

.custom-btn-group .box-icon .icon {
    font-size: 18px;
    color: #333;
}

.custom-btn-group .box-icon:hover .icon {
    color: #fff;
}

.tooltip {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 4px;
    font-size: 12px;
    visibility: hidden;
}

.box-icon:hover .tooltip {
    visibility: visible;
}

@media (max-width: 768px) {
    .wrapper-shop {
        gap: 20px;
        justify-content: center;
    }
    .card-product {
        max-width: 100%;
    }
}

