:root {
    --dokan-deals-primary: #ff3e3e;
    --dokan-deals-secondary: #00d084;
    --dokan-deals-bg: #ffffff;
    --dokan-deals-text: #1a1a1a;
    --dokan-deals-muted: #888;
    --dokan-deals-shadow: 0 10px 40px rgba(0,0,0,0.06);
    --dokan-deals-radius: 16px;
}

.dokan-deals-container {
    padding: 2rem 0;
    font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
}

/* Global Timer Header */
.dokan-deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.2rem 2rem;
    background: var(--dokan-deals-bg);
    border-radius: var(--dokan-deals-radius);
    box-shadow: var(--dokan-deals-shadow);
}

.timer-badge {
    background: var(--dokan-deals-primary);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 62, 62, 0.3);
}

/* Single Product Layout */
.dokan-deals-single-product .dokan-deal-card {
    box-shadow: none;
    border: 1px solid #eee;
    padding: 0;
    max-width: 450px;
}

.single-product-deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.deal-label {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--dokan-deals-muted);
}

.discount-label {
    background: var(--dokan-deals-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Premium Circular Timer */
.premium-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    background: transparent !important;
    padding: 0 !important;
}

.timer-segment.circle {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timer-segment.circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    transform: rotate(-90deg);
}

.timer-segment.circle circle {
    fill: none;
    stroke: #eee;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.timer-segment.circle .timer-num {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dokan-deals-text);
    line-height: 1;
}

.timer-segment.circle label {
    position: absolute;
    bottom: -18px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--dokan-deals-muted);
    text-transform: uppercase;
}

/* Grid & Card Refinements */
.dokan-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.dokan-deal-card {
    background: var(--dokan-deals-bg);
    border-radius: var(--dokan-deals-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--dokan-deals-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dokan-deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.dokan-deal-image img {
    height: 280px;
}

.dokan-deal-content {
    padding: 2rem;
}

.dokan-deal-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.sale-price {
    font-size: 1.6rem;
}

.dokan-deal-button {
    margin-top: 1.5rem;
    background: var(--dokan-deals-text);
    padding: 14px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
