/* Single Deal Post Styles */
.wp-deals-single-post {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px 20px; */
}

.wp-deals-single-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ROW 1: Breadcrumb */
.wp-deals-breadcrumb-row {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wp-deals-breadcrumb {
    font-size: 14px;
    color: #666;
}

.wp-deals-breadcrumb a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wp-deals-breadcrumb a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.wp-deals-breadcrumb .separator {
    margin: 0 8px;
    color: #999;
}

.wp-deals-breadcrumb .current {
    color: #333;
    font-weight: 600;
}

/* ROW 2: Image + Details */
.wp-deals-main-row {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.wp-deals-image-col {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-deals-image-col img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.wp-deals-no-image {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    background: #f8f9fa;
    border-radius: 10px;
}

.wp-deals-no-image .deal-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
}

.wp-deals-details-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wp-deals-deal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.wp-deals-price-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.wp-deals-price-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.wp-deals-price-left {
    flex: 1;
}

.wp-deals-price-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.wp-deals-price-label {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.wp-deals-offer-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 5px;
}

.wp-deals-mrp-line {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.wp-deals-mrp-value {
    text-decoration: line-through;
    color: #999;
    font-size: 15px;
}

.wp-deals-discount-line {
    font-size: 16px;
    color: #dc2626;
    font-weight: 600;
}

.wp-deals-badge-store-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wp-deals-price-store-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.wp-deals-store-logo {
    max-width: 100px;
    height: auto;
}

.wp-deals-discount-badge-box {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.wp-deals-cta {
    margin: 10px 0;
}

.wp-deals-shop-btn {
    display: inline-block;
    background: #1f1f1f;
    color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 280px;
}

.wp-deals-shop-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: #fff;
    text-decoration: none;
}

/* Single Page Specific Shop Now Button */
.wp-deals-single-shop-btn {
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
    padding: 14px 20px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    display: inline-block !important;
    text-align: center !important;
}

.wp-deals-disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    font-size: 13px;
    color: #856404;
    line-height: 1.6;
}

.wp-deals-disclaimer p {
    margin: 0;
}

/* ROW 3: Social Buttons (Right Aligned) */
.wp-deals-social-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

.wp-deals-social-label {
    font-weight: 600;
    color: #666;
    font-size: 25px;
}

.wp-deals-social-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wp-deals-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 42px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.wp-deals-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.wp-deals-social-btn .social-name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    /* text-transform: uppercase; */
}

/* ROW 4: Pricing Details (Text) */
.wp-deals-pricing-details-row {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wp-deals-pricing-details-row h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #007bff;
}

.wp-deals-pricing-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.wp-deals-pricing-text a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.wp-deals-pricing-text a:hover {
    text-decoration: underline;
}

/* ROW 5: Deal Post Detail */
.wp-deals-detail-row {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wp-deals-detail-row h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #007bff;
}

.wp-deals-content-block {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.wp-deals-taxonomies-block {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.wp-deals-taxonomy-section {
    /* margin-bottom: 20px; */
}

.wp-deals-taxonomy-section strong {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.wp-deals-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wp-deals-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.category-badge {
    background: #e3f2fd;
    color: #1976d2;
}

.category-badge:hover {
    background: #1976d2;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.tag-badge {
    background: #fff3e0;
    color: #f57c00;
}

.tag-badge:hover {
    background: #f57c00;
    color: #fff;
    transform: translateY(-1px);
    text-decoration: none;
}

.label-badge {
    color: #fff;
}

.label-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    text-decoration: none;
}

.wp-deals-coupon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f9ff;
    border: 2px dashed #007bff;
    border-radius: 10px;
    padding: 15px;
}

.wp-deals-coupon-code {
    background: #007bff;
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    font-family: monospace;
    font-weight: 700;
    font-size: 16px;
}

.wp-deals-copy-btn {
    background: #10b981;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.wp-deals-copy-btn:hover {
    background: #059669;
}

/* ROW 6: Related Deals */
.wp-deals-related-row {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wp-deals-related-row h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #007bff;
}

/* RESPONSIVE: Mobile (≤768px) */
@media (max-width: 768px) {
    .wp-deals-single-post {
        padding: 20px 15px;
    }
    
    .wp-deals-main-row {
        flex-direction: column;
        padding: 20px;
    }
    
    .wp-deals-image-col {
        flex: 1;
    }
    
    .wp-deals-price-content {
        flex-direction: column;
    }
    
    .wp-deals-price-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .wp-deals-shop-btn {
        width: 100%;
    }
    
    .wp-deals-deal-title {
        font-size: 1.5rem;
    }
    
    .wp-deals-offer-price {
        font-size: 2rem;
    }
    
    .wp-deals-social-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wp-deals-social-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .wp-deals-pricing-details-row,
    .wp-deals-detail-row,
    .wp-deals-related-row {
        padding: 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .wp-deals-single-post {
        padding: 20px 15px;
    }
    
    .wp-deals-single-title {
        font-size: 1.8rem;
    }
    
    .wp-deals-single-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wp-deals-single-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .wp-deals-price-card {
        position: static;
    }
}