/* --- Styl Horyzontalny (Kolorystyka Zoologic v2) --- */

.hot-deal-widget.horizontal-style {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    display: flex;
    max-width: 650px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06); 
    overflow: hidden; 
    border: 1px solid #f0f0f0;
}

.hot-deal-widget * {
    box-sizing: border-box;
}

/* Kolumna Obrazka */
.hd-col-image {
    flex-basis: 40%;
    min-width: 40%;
    position: relative;
    background: #fdfdfd; 
}

.hd-col-image a {
    display: block;
    height: 100%;
}

.hd-product-image {
    width: auto !important;
    height: 330px !important;
	margin-right: auto !important;
	margin-left: auto !important;
	margin-top: 20px;
	vertical-align: center !important;
	display: block !important;
    object-fit: contain; 
    padding: 20px;
    transition: transform 0.3s ease;
}

.hd-col-image:hover .hd-product-image {
    transform: scale(1.05);
}

.hd-deal-badge {
    position: absolute;
    top: 15px;
    left: -1px;
    background: #F09151; /* NOWY ODCIEŃ: #F09151 */
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kolumna Treści */
.hd-col-content {
    flex-basis: 60%;
    min-width: 60%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hd-product-name {
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

.hd-product-name a {
    color: #333; 
    text-decoration: none;
}
.hd-product-name a:hover {
    color: #F09151; /* NOWY ODCIEŃ: #F09151 */
}

/* Cena */
.hd-price-wrapper {
    margin-bottom: 15px;
    text-align: left;
}
.hd-promo-price {
    font-size: 28px;
    font-weight: 700;
    color: #F09151; /* NOWY ODCIEŃ: #F09151 */
    margin-right: 10px;
}
.hd-regular-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    vertical-align: middle;
}

/* Licznik */
.hd-timer-wrapper {
    margin-bottom: 15px;
}
.hd-timer-label {
    font-size: 14px;
    color: #555; 
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.hd-countdown-timer {
    display: flex;
    align-items: center;
    text-align: left;
}
.hd-timer-box {
    background: none;
    padding: 0;
    min-width: auto;
    line-height: 1;
    text-align: left;
}
.hd-timer-box span {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-right: 3px;
}
.hd-timer-sep {
    font-size: 18px;
    font-weight: 600;
    color: #aaa; 
    padding: 0 5px;
}

/* Pasek stanu */
.hd-stock-info {
    margin-bottom: 20px;
}
.hd-stock-bar {
    width: 100%;
    height: 8px; 
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
}
.hd-stock-progress {
    height: 100%;
    background: #F09151; /* NOWY ODCIEŃ: #F09151 */
    border-radius: 10px;
    transition: width 0.5s ease;
}
.hd-stock-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    font-weight: 600;
}
.hd-stock-labels strong {
    color: #333;
}

/* Przycisk */
.hd-add-to-cart-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #F09151 !important; /* NOWY ODCIEŃ: #F09151 */
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700;
    padding: 12px !important;
    border-radius: 8px !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.hd-add-to-cart-btn:hover {
    background-color: #d87c41 !important; /* NOWY ODCIEŃ: Ciemniejszy #F09151 */
    color: #fff !important;
}

/* Style dla zakończonej oferty (pasujące szarości) */
.hd-ended-message {
    text-align: left;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.hd-ended-message .hd-product-name {
    opacity: 0.6;
}
.hd-ended-message h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}
.hd-ended-message p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}
.hd-back-btn {
    display: inline-block;
    width: auto;
    background-color: #555 !important; 
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 600;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.hd-back-btn:hover {
    background-color: #333 !important;
    color: #fff !important;
}
.deal-ended .hd-stock-progress {
    background-color: #aaa;
    width: 100% !important;
}
.deal-ended .hd-stock-labels {
    color: #aaa;
}
.deal-ended .hd-col-image .hd-product-image {
    opacity: 0.5;
}
.deal-ended .hd-col-image .hd-deal-badge {
    background: #555; 
}