/* Daily Deals Widget Styles */
.daily-deals-widget {
    background: #000;
    border: 2px solid #d3bd9a;
    border-radius: 8px;
    padding: 1.5rem;
    color: #fff;
}

.daily-deals-widget .deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(211, 189, 154, 0.3);
}

.daily-deals-widget .deal-header strong {
    font-size: 1.5rem;
    color: #d3bd9a;
    font-weight: 700;
}

.daily-deals-widget .deal-header span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Brand list styles */
.daily-deals-widget .deal-brands {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.daily-deals-widget .deal-brands li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-deals-widget .deal-brands li:last-child {
    border-bottom: none;
}

.daily-deals-widget .deal-brands a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.daily-deals-widget .deal-brands a:hover {
    color: #d3bd9a;
}

/* Custom description styles */
.daily-deals-widget .deal-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.daily-deals-widget .deal-description p {
    margin-bottom: 0.75rem;
}

.daily-deals-widget .deal-description p:last-child {
    margin-bottom: 0;
}

.daily-deals-widget .deal-description strong {
    color: #d3bd9a;
}

.daily-deals-widget .deal-description a {
    color: #d3bd9a;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.daily-deals-widget .deal-description a:hover {
    opacity: 0.8;
}

.daily-deals-widget .deal-description ul,
.daily-deals-widget .deal-description ol {
    margin: 0.5rem 0 0.5rem 1.5rem;
}

/* Button styles */
.daily-deals-widget .btn-deals {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #d3bd9a 0%, #F9F295 30%, #FAF398 70%, #B88A44 100%);
    color: #000;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.daily-deals-widget .btn-deals:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 189, 154, 0.4);
    color: #000;
}

/* Compact version for smaller sidebars */
.sidebar-compact .daily-deals-widget {
    padding: 1rem;
}

.sidebar-compact .daily-deals-widget .deal-header strong {
    font-size: 1.25rem;
}

.sidebar-compact .daily-deals-widget .deal-brands li {
    padding: 0.375rem 0;
    font-size: 0.9rem;
}

.sidebar-compact .daily-deals-widget .deal-description {
    font-size: 0.9rem;
}