.rc-product-card {
    max-width: 1000px;
    margin: 10px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.rc-header {
    background: linear-gradient(135deg, #f9f9f9 0%, #f9f9f9 100%);
    padding: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.rc-rank-badge {
    background: #6366f1;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

h3.rc-product-title {
    color: #1f4d8d;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

.rc-product-image {
    text-align: center;
    padding: 5px 20px;
    background: white;
}

.rc-vacuum-img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

.rc-buttons-container {
    padding: 0 20px 20px;
    display: flex;
    justify-content: center;
}

.rc-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.rc-btn-chewy {
    background: linear-gradient(135deg, #ff4081, #e91e63);
    color: white;
}

.rc-btn-chewy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.rc-btn-amazon {
    background: linear-gradient(135deg, #6b40ff, #b50323);
    color: white;
    width: 50%;
    margin: 0 auto;
}

.rc-btn-amazon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.rc-specs-table {
    margin: 0 20px 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.rc-spec-row {
    display: flex;
}

.rc-spec-row:nth-child(odd) {
    background: #e8e4ff;
}

.rc-spec-row:nth-child(even) {
    background: #f8fafc;
}

.rc-spec-label {
    flex: 1;
    padding: 12px 16px;
    font-weight: 600;
    color: #374151;
    border-right: 1px solid #e5e7eb;
}

.rc-spec-value {
    flex: 1.5;
    padding: 12px 16px;
    color: #6366f1;
    font-weight: 500;
}

.rc-description {
    padding: 0 20px 20px;
    color: #374151;
    line-height: 1.6;
}

.rc-description p {
    margin-bottom: 15px;
}

.rc-description a {
    color: #6366f1;
    text-decoration: none;
}

.rc-description a:hover {
    text-decoration: underline;
}

.rc-pros-cons {
    display: flex;
    gap: 15px;
    padding: 0 20px 20px;
}

.rc-pros, .rc-cons {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.rc-pros-header {
    background: #16a34a;
    color: white;
    padding: 8px 16px;
    font-weight: 700;
    text-align: center;
}

.rc-cons-header {
    background: #dc2626;
    color: white;
    padding: 12px 16px;
    font-weight: 700;
    text-align: center;
}

.rc-pros-content, .rc-cons-content {
    background: white;
    border: 2px solid;
    border-top: none;
}

.rc-pros-content {
    border-color: #16a34a;
}

.rc-cons-content {
    border-color: #dc2626;
}

.rc-pros-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rc-pros-cons li {
    padding: 3px 16px 0px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f3f4f6;
}

.rc-pros-cons li:last-child {
    border-bottom: none;
}

.rc-pros li::before {
    content: "✓";
    color: #16a34a;
    font-weight: bold;
    font-size: 16px;
}

.rc-cons li::before {
    content: "✗";
    color: #dc2626;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 640px) {
    .rc-buttons-container {
        flex-direction: column;
    }
    
    .rc-pros-cons {
        flex-direction: column;
    }
    
    .rc-header {
        flex-direction: column;
        text-align: center;
    }
}
